Jump to content

can anyone please help me?


ElijaH
 Share

Recommended Posts

I'm playing a game and I've developed a script using autoit to automatically send keystrokes of numbers one to zero.

The problem is it doesn't work on the game because the game has gameguard. but as I search here in the forum there is a way to round around a gameguard they say that gamegaurd doesn't block dll and c++ commands/functoins/scripts. I can't understand what there trying to say can someone help me translate them for me because I'm really a new be in this kind of stuffs and I need reliable tutorials so that I can develop as well thanks in advance and more power

Is there a way to convert my current script to a dllcall type command?

here is my script corrections and ideas are very much welcome!!!!

_____________________________________________________________________

Global $UnPaused

HotKeySet("1", "TogglePause")

HotKeySet("{ESC}", "Terminate")

While 1

ToolTip("Script is Paused",0,0)

WEnd

Func TogglePause()

$UnPaused = NOT $UnPaused

While $UnPaused

Send ("2")

Sleep("1000")

Send ("3")

Sleep("1000")

Send ("4")

Sleep("1000")

Send ("5")

Sleep("1000")

Send ("6")

Sleep("1000")

Send ("7")

Sleep("1000")

Send ("8")

Sleep("1000")

Send ("9")

Sleep("1000")

Send ("0")

Sleep("1000")

WEnd

EndFunc

Func Terminate()

Exit 0

EndFunc

______________________________________________________

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...