Jump to content

Catindog

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Catindog

  1. What program have you created that you believe is worth selling?
  2. like this i haven't coded in awhile and am a little bored, it will send aaaa then bbbb then cccc, cuz once again and still noobs do not specify exactly what they want. How do you want it to increase. Like aaab, aaac, be specific. forgot my snippet of code For $i = 97 To 122 Send(Chr($i)Chr($i)Chr($i)Chr($i)) Next
  3. ummm dude it can't open .txt because you save the texts and crap in the file, i don't see whats wrong with just having it check if it's a .txt and if it is then opening it up and not allowing it to have fonts and stuff....
  4. or #include <GUIConstants.au3> #include <Misc.au3> Global $a[5] $GUI = GuiCreate("") $a[0] = GuiCtrlCreateButton("", 10, 10, 100, 100) $a[1] = GuiCtrlCreateButton("", 110, 10, 100, 100) $a[2] = GuiCtrlCreateButton("", 210, 10, 100, 100) $a[3] = GuiCtrlCreateButton("", 10, 110, 100, 100) $a[4] = GuiCtrlCreateButton("", 110, 110, 100, 100) GuiSetState() While 1 $msg = GuiGetMsg() If BitAND(_IsPressed("11"),_ISpressed("4E")) Then If GUICtrlGetState($a[0]) = 80 Then For $i = 0 to 4 GuiCtrlSetState($a[$i],$GUI_DISABLE) Next Sleep(100) Elseif GUICtrlGetState($a[0]) = 144 Then For $i = 0 to 4 GuiCtrlSetState($a[$i],$GUI_ENABLE) Next Sleep(100) EndIf EndIf If $msg = $GUI_EVENT_CLOSE Then Exit WEnd
  5. id say an easy way is make everything an array HAHAH took me awhile cuz $i was only supposed to go to 4 not 5 xD #include <GUIConstants.au3> #include <Misc.au3> Global $a[5] $GUI = GuiCreate("") $a[0] = GuiCtrlCreateButton("", 10, 10, 100, 100) $a[1] = GuiCtrlCreateButton("", 110, 10, 100, 100) $a[2] = GuiCtrlCreateButton("", 210, 10, 100, 100) $a[3] = GuiCtrlCreateButton("", 10, 110, 100, 100) $a[4] = GuiCtrlCreateButton("", 110, 110, 100, 100) GuiSetState() Do $msg = GuiGetMsg() If BitAND(_IsPressed("11"),_ISpressed("4E")) Then For $i = 0 to 4 GuiCtrlSetState($a[$i],$GUI_DISABLE) Next Endif Until $msg = $GUI_EVENT_CLOSE
  6. i would suggest the check to save info b4 the login but for a noob pretty good
  7. i have a question about TCP functions and how i could go about doing this. The object is to make to connect to local host, on a port and the game and then do tcpsend to send the data being sent on the port through the proxy to the game. And also TCPRecv to recieve the data being sent to me. The problem is multiple connections arent aloud in autoit so i heard so my goal was to make use stdinwrite and stdoutread to talk to eachother on seperate programs but so far ive been kinda lost on such a thing any pointers on how possibly i could get this to work woudl be great $LoginIP = "64.147.162.103" $ServerIP = "64.147.162.99" $CharIP = "64.147.162.100" $LoginPort = 23000 $ServerPort = 28000 $CharPort = 15400 TCPStartup() $Socket = TCPListen("127.0.0.1",$LoginPort,100) Dim $ConnectedSocket = -1 Do $ConnectedSocket = TCPAccept($MainSocket) Until $ConnectedSocket <> -1 $run = Run("\send.exe",@DesktopDir,$STDIN_CHILD + $STDOUT_CHILD) $recv = TCPRecv($ConnectedSocket,10000) Stdinwrite($run,$recv) the send is the same except it connects to $LoginIP instead of local host
×
×
  • Create New...