i like it thnx
Sure, it's really easy actually. Click the link in my signature = "Read the guide on how to survive elitepvpers" - that'll give you some good beginning scripting knowlage.Quote:
can i learn how to make thats tools pleas i want to learn thats
Yes, if you actually read the first page, you'd know that there will be falsepositives because it was made with AutoIt. If you don't trust me, don't use it. Also, this has been up quite a while so if it was really a virus a mod would've closed this by now...Quote:
its not clean, i scan with avire, there have virus :S
Yes it can. If you want, put ND in any of the F boxes - for example F4. Then, in the autotalker put {F4}. It will keep hitting the F4 key as long as Conquer is maximized, and if you get an exp skill, when it hits F4, your char will do ND.Quote:
Ok, I want to make sure...this can be used to train an XP skill or no? If so, what do I put in to make F4 work for a skill? I have night devil on one of my characters and want to train it overnight.
Credits: Core Programming by Hok- Special thanks to Hiyoal and UPSman2
MAIN()
Func MAIN()
$RUNNER = 0
#region ### START Koda GUI section ### Form=
Global $FORM1 = GUICreate("Hok's Autotalker for E*PVP", 594, 122, 197, 224)
GUISetBkColor(128)
Global $INPUT = GUICtrlCreateInput("Input your text here.", 8, 48, 425, 21)
Global $INPUT1 = GUICtrlCreateInput("Input the time between each message. (Milliseconds)", 8, 72, 425, 21)
$START = GUICtrlCreateButton("Start", 448, 24, 137, 57, 0)
$CREDITS = GUICtrlCreateLabel("Credits: Core Programming by Hok- Special thanks to Hiyoal and UPSman2", 8, 8, 357, 17)
GUICtrlSetBkColor(-1, 16711680)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
TrayTip("Hok's AutoTalker for E*PVP", "Type what you would like to say in the box, then press start. Pressing Ctrl + Alt + x will stop the macro. Enjoy.", 10)
While 1
$NMSG = GUIGetMsg()
Switch $NMSG
Case $GUI_EVENT_CLOSE
Exit
Case $START
GUISetState(@SW_HIDE)
ExitLoop
EndSwitch
WEnd
EndFunc
START()
Func STOP()
$RUNNER = 1
GUIDelete($FORM1)
MAIN()
EndFunc
Func START()
While $RUNNER = 0
HotKeySet("^!x", "Stop")
$TEXT = GUICtrlRead($INPUT)
$TIME = GUICtrlRead($INPUT1)
Sleep(800)
Send($TEXT)
Send("{ENTER}")
Sleep($TIME)
WEnd
EndFunc
Quote:
thats hard....
sry but i cant understand why the hell?
thats the source!?! ok where did u need help o0Code:Credits: Core Programming by Hok- Special thanks to Hiyoal and UPSman2
Code:MAIN() Func MAIN() $RUNNER = 0 #region ### START Koda GUI section ### Form= Global $FORM1 = GUICreate("Hok's Autotalker for E*PVP", 594, 122, 197, 224) GUISetBkColor(128) Global $INPUT = GUICtrlCreateInput("Input your text here.", 8, 48, 425, 21) Global $INPUT1 = GUICtrlCreateInput("Input the time between each message. (Milliseconds)", 8, 72, 425, 21) $START = GUICtrlCreateButton("Start", 448, 24, 137, 57, 0) $CREDITS = GUICtrlCreateLabel("Credits: Core Programming by Hok- Special thanks to Hiyoal and UPSman2", 8, 8, 357, 17) GUICtrlSetBkColor(-1, 16711680) GUISetState(@SW_SHOW) #endregion ### END Koda GUI section ### TrayTip("Hok's AutoTalker for E*PVP", "Type what you would like to say in the box, then press start. Pressing Ctrl + Alt + x will stop the macro. Enjoy.", 10) While 1 $NMSG = GUIGetMsg() Switch $NMSG Case $GUI_EVENT_CLOSE Exit Case $START GUISetState(@SW_HIDE) ExitLoop EndSwitch WEnd EndFunc START() Func STOP() $RUNNER = 1 GUIDelete($FORM1) MAIN() EndFunc Func START() While $RUNNER = 0 HotKeySet("^!x", "Stop") $TEXT = GUICtrlRead($INPUT) $TIME = GUICtrlRead($INPUT1) Sleep(800) Send($TEXT) Send("{ENTER}") Sleep($TIME) WEnd EndFunc