AutoIt input help

04/30/2011 00:44 ~>Jάson<~#1
Hey.Can someone help me?I tried to make a hack for a game with input hack for cam on s4league.So i made on Koda a input with name but on script what i must write?Where i put adress and how can i make it take the numder of write in koda?Hope understand.
04/30/2011 02:03 Ludder231#2
i didnt understand you...if you mean how to read out a koda inputbox you have to write: guictrlread($inputboxname)
04/30/2011 10:24 Ludder231#3
Please post your sourcecode...
04/30/2011 12:41 ~>Jάson<~#4
I dont know autoit with input.I have adress for a game but how can i write them with input.I know how with checkbox.
04/30/2011 14:14 Ludder231#5
1.what do you want to "change"?
2. what for an adress?

Example, how to use guictrlread and inputboxes:

PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 GUICreate("Form1"349172185156)
$Input2=GUICtrlCreateInput(""565612121)
$Button1 GUICtrlCreateButton("change"569612949)
$input1=GUICtrlCreateInput(""562412121)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit
        
    case 
$button1
        msgbox
(0"""Your Text/Numbers in the Inputbox was: "&guictrlread($input1))
        
msgbox(0"""Your Text/Numbers in the Inputbox was: "&guictrlread($input2))
        
change()
    EndSwitch
WEnd

func change
() ;after this you can start "changing"
;winwaitactive("S4league") ????
;......
what do you want to change?
    
EndFunc