X3guard 0 Posted April 29, 2011 Good evening.I need help with my AutoIt script.I have made on koda input.I dont know how to add adress and how to write them.It's for a game so please what can i do? Share this post Link to post Share on other sites
hannes08 39 Posted April 29, 2011 Hello X3guard, what you're asking is very vague. What do you mean by "I dont know how to add adress"? Do you want to creat an IP address input field or a postal address input field? Mostly setting data to fields can be done over GUICtrlSetData() ... Please specify your question more or provide more information about what you want to achieve. Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Share this post Link to post Share on other sites
jchd 1,514 Posted April 29, 2011 Since it's for a game, a good start would be to read this. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Share this post Link to post Share on other sites
X3guard 0 Posted April 29, 2011 #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <NomadMemory.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 190, 201, 619, 239) $Cam = GUICtrlCreateInput("Cam", 32, 40, 105, 21) $Button1 = GUICtrlCreateButton("Change", 32, 80, 73, 33) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Hack() EndSwitch WEnd Func Hack() GUISETSTATE(@SW_HIDE) ToolTip ("Start S4Leaugue now!!!!", 0, 0) $PID=PROCESSWAIT("S4Client.exe") Sleep(800) $OPEN=_MEMORYOPEN($PID) Sleep(700) I want change cam for a game but i dont know what i will write after sleep(700).I have adress to change because it's need.So help? Share this post Link to post Share on other sites
MrMitchell 16 Posted April 29, 2011 Good evening.I need help with my AutoIt script.I have made on koda input.I dont know how to add adress and how to write them.It's for a game so please what can i do?You are now 2/2 in topics regarding games...not off to a very good start with this forum! Share this post Link to post Share on other sites
hannes08 39 Posted April 29, 2011 I want change cam for a game but i dont know what i will write after sleep(700).I have adress to change because it's need.So help?Like jchd said before: read this.you will bot get any help here for modifying games. Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Share this post Link to post Share on other sites