Hello,
I have some scripts i use for dekaron. they are pretty basic as i have very little knowledge in this area. They all stopped working after one of the updates and i am not sure why. heres an example of the script:
MsgBox(0,"Spammer, By ","Press F10 to pause, press F9 to quit")
HotKeySet("{F10}", "TogglePause")
HotKeySet("{F9}", "Terminate")
Global $Paused
While 1
WinWaitActive ("Dekaron")
send ("1")
Sleep(1)
Send ("2")
sleep(1)
send ("3")
sleep(1)
send ("4")
sleep(1)
send ("5")
sleep(1)
send ("6")
sleep(1)
WEnd
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',150,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
ToolTip("Thankyou and Goodbye",150,0)
Sleep(2000)
Exit 0
EndFunc
i know they still work as they will write numbers in a text file. And i know autoit can still be used in Dekaron but i dont know what to change. I am assuming the anti cheat software is picking something up. but i dont know what. any advice or help would be great. Thanks






