Jump to content

acer20006

Active Members
  • Posts

    70
  • Joined

  • Last visited

Everything posted by acer20006

  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
  13. up up i need help plz
  14. hii again i have problem at reading data from winlist to send it Through tcp connection my purpose is to select the first row at winlist(change every 5 sce) and send it with tcp func my problem is :: i cant read data at winlist Through tcp have a look to code ((part)) HotKeySet ("{f6}" , "bb") GUICreate("tcp", 633, 447, 192, 124) $Status = GUICtrlCreateListView("", 8, 8, 609, 377, BitOR($LVS_SORTDESCENDING, $LVS_LIST, $LVS_SHOWSELALWAYS)) GUISetState(@SW_SHOW) While if $iFlag Then bb() EndIf $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func bb() $IP = "187.526.527.26" $Hex = ("0x0850456801470"&GUICtrlRead(GUICtrlRead($Status))) TCPStartUp() TCPConnect($IP, 15547) _GUICtrlListView_SetItemSelected($Status, 0) TCPSend($socket1,$Hex) TCPShutdown () EndFunc
  15. $data = StringMid(....)ty now i can pick a specific packets and import it at my winlist but about select the data from winlst ( select the first / Randomly select ) is this possible ?
  16. hii all im trying to make a connection with some server and receive packets and sniff it to pick a specific packets and import it at my winlist but i had problem at import this data at winlist _ and i wonder to how to read the data which saved at winlist ( select the first / Randomly select ) >>> plz have a look at the code #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #Include <GuiEdit.au3> #include <WindowsConstants.au3> #Include <GuiListView.au3> GUICreate("tcp", 633, 447, 192, 124) $Status = GUICtrlCreateListView("", 8, 8, 609, 377, BitOR($LVS_SORTDESCENDING, $LVS_LIST, $LVS_SHOWSELALWAYS)) GUISetState(@SW_SHOW) $IP = "157.255.256.12" TCPStartUp() $socket = TCPConnect($IP, 15592) While 1 $Packet = TCPRecv($socket, 10000) If $Packet <> "" Then ;recvied data Status("incoming >> : " & $Packet) If (StringInStr($Packet, "195864")) Then ; i wann to take a specific packets StringMid($Packet, 3, 5) ; take a part from the data which i specific it at line 17 MsgBox (0,"",""&$Packet) ; this line not important EndIf EndIf $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func Status($text) GUICtrlCreateListViewItem($Packet, $Status) EndFunc >> my problem is how to get a part of code which i picked it from stringInStr and put i at winlist _ and how to export the data at winlist to use it after that >>>idk if i was clear at my explain _ i hope anyone help me
  17. thx all _ i will find another way
  18. i have question about hotkeyset and how to combine it with while at script that had already a while _ >> make it simply look at the code HotKeySet("{end}", "msg2") HotKeySet("{ESC}", "Terminate") ;;;; Body of program would go here ;;;; While 1 MsgBox (0,"msg box","1st while") WEnd ;;;;;;;; Func msg2() While 2 MsgBox (0,"msg box","2nd while") WEnd EndFunc Func Terminate() Exit EndFunc my script already have a while 1 but when i push end (hotkey) while 2 start working and while 1 stoped >>>>>> so how to make script run the both whiles
  19. StringInStr _ that's was easy ty Manadar i will try it
  20. $IP = "127.0.0.1" TCPStartUp() $socket = TCPConnect($IP, 22580) While 1 $Packet = TCPRecv($socket, 10000) If $Packet <> "" Then pkt("incoming >> : " & $Packet) EndIf $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd this is the connection's code part
  21. mmmmmm , forget this part i can handle packets & my net work connection . let's return to the main question how to catch specific packet at packets list ( my idea is like the search function_ is it possible ?? / or i have to find another way ?) BTW ty for help
  22. ty i will try it
×
×
  • Create New...