Jump to content

acer20006

Active Members
  • Posts

    70
  • Joined

  • Last visited

About acer20006

  • Birthday 11/08/1989

acer20006's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. hii all . laterly i start proxy project , purpos of it is to accept messanger connecion (yahoo .hotmail..)and redirect it so my problem had 2 part part 1 > The proxy _my code just accept the incoming connections (work as a server ) but it didn't work as a client part 2 > messanger tcp's proxy always keep changing i can't set port on my connection code 'i cant make link of both connection , proxy' so my question is there any way to make proxy listen and send data through it to another remote connection?? and if there is any way to pretend the messanger port or force it to specific port ? thx
  2. hii all _ my problem is related to memory function... here's what happened i using CE to find pacific address stored in my memory _ but i cant get the green one(static address) so i used CE auto_assemble script and it works well ( except that i have to frozen every time) so my Question is autoit can support CE's auto_assemble ? and if does how to make it work ? [enable] registersymbol(YM) alloc(newmem,2048) //2kb should be enough alloc(YM,4) label(returnhere) label(originalcode) label(exit) 0099AFF0: jmp newmem nop returnhere: newmem: //this is allocated memory, you have read,write,execute access //place your code here mov [YM],ecx originalcode: mov eax,[ecx+00000468] exit: jmp returnhere [disable] unregistersymbol(YM) dealloc(newmem) dealloc(YM) 0099AFF0: mov eax,[ecx+00000468]
  3. i dont care about bots _ i just wann to know is my code wrong _ or i have problem at my pc _ or what ___ and about bot's at game ( it's allowed)
  4. hii all my script idea is depend on tcp connection with mmo server ,my idea is to make script inject packets to allowed my character to buy drug's potion , my script work very well with no error but that's before i compile script to EXE file , after that when i use the EXE file i get Crash msg ( Disconnect from server ) that's my code $Drugs_open = "0x0400457401106E060000" $Drugs_open1 = "0x04000C7701106E0600000500F27401006E06000001" $Drugs_open2 = "0x0900CF73010008000001206E060000" $Drugs_Close = "0x04000C7701206E060000" TCPStartUp() $socket = TCPConnect( $g_IP, 22580 ) If $socket = -1 Then MsgBox (0,"Ops","Be Smart And Run Nuconnector First") Sleep (1000) TCPSend($socket,$Drugs_open) ; open first windows Sleep (2000) TCPSend($socket,$Drugs_open1) ; start chating Sleep (2000) TCPSend($socket,$Drugs_open2) ; buy potion Sleep (10000) TCPSend($socket,$Drugs_Close) ; close shop i get disconnect between the third packets ((TCPSend($socket,$Drugs_open2) ; buy potion)) and the fours so __ what i have to do ????!
  5. it's work _ ty but what about If (StringInStr($Packet, "0x180074B60200")) and (StringInStr($Packet, "45822")) Then ; specific packets $data = StringMid($Packet, 15, 8) GUICtrlCreateListViewItem($data, $Status) EndIfmy purpose to search for Specific packets started with "0x180074B60200" and included "45822" is that possable _ and thx again for help _ i really appreciate your help
  6. i know that u didnt try to make fun of anything , but i'm newbie _ and dont know any where alse to ask for help _ i keep tyring to slove my own problem but when it become hopeless you know ...
  7. winlist > Solved sry i forget to tell that but now i have new Obstacle wih listviewitem ( it's keep adding the same packets from TCPRecv ) i wann to delete the repeated data and about StringInStr i cant make it work right _ script ignoring it
  8. i forced to make multiple threads _at the first link you will see that i put all of my question at it (stringInStr , listview , tcp ) >> 41 Views and only one give me answer(( ok , i willn't make multiple threads again _sry ))
  9. this's apart of code > how to Refreshing winlist & delete the repeating data??? #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <ListViewConstants.au3> #include <ProgressConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $Form1_1 = GUICreate("Test", 195, 300, 335, 133) $Status = GUICtrlCreateListView("", 8, 8, 177, 105 ,BitOR($LVS_LIST,$LVS_SINGLESEL,$LVS_SHOWSELALWAYS,$LVS_SORTDESCENDING)) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### TCPStartUp() ;~ ; Connect to "SOCKET" : ;========================= $socket = TCPConnect( $g_IP, 22580 ) If $socket = -1 Then MsgBox (0,"TCP Services","Can't make connection") While 1 $Packet = TCPRecv($socket, 10000) If (StringInStr($Packet, "0x180074B60200")) and (StringInStr($Packet, "45822")) Then ; specific packets $data = StringMid($Packet, 15, 8) GUICtrlCreateListViewItem($data, $Status) EndIf $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd i used _GUICtrlListView_DeleteAllItems before but it doesn't help __ and also i have problem with If (StringInStr($Packet, "0x180074B60200")) and (StringInStr($Packet, "45822")) Then ; specific packets $data = StringMid($Packet, 15, 8) GUICtrlCreateListViewItem($data, $Status) EndIf it doesn't work at well BTW sry if i was nerves with u
  10. There are solutions to that but you can't expect any help with it if you don't do as Jos so very politely asked.i asked Twice before about (ListView) _ and politely thay ignoring to answer http://www.autoitscript.com/forum/index.php?showtopic=109883&st=0&p=772335&#entry772335 http://www.autoitscript.com/forum/index.php?showtopic=109933&st=0&p=772651&#entry772651 and plz read my reply i said( ty jos _ up) what i should do more than that ??
  11. hii all i have script which included winlist _ my problem appeared when i add data to my winlist . winlist keep the the same data even if i add it again . all i wann to to make winlist get ride of the repeating data ( auto refresh it ) so is that possable ?????????!!!
  12. i just wondering if TCPRecv can ignore some text or packet which i didn't need it , i use String... function _ but i cant make it work
×
×
  • Create New...