Jump to content

Recommended Posts

Posted

Ok. This is a super simple script. All it does is repeatidly click the left mouse button. I'm using this in a game, but i have to play the game in window mode to get this script to work. Is there anyway i can edit this script so that I can use it in Fullscreen mode. Sorry for the noobScript question.

Here is the script i'm using...

Global $Paused

HotKeySet("{END}", "TogglePause")

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

While 1

Sleep(100)

WEnd

Func TogglePause()

$Paused = NOT $Paused

While $Paused

sleep(100)

MouseClick("Left")

WEnd

EndFunc

Func Terminate()

Exit 0

EndFunc

Posted

it should work full screen so idk why it doenst sry , what game is it?

It's Diablo 2 Lod. It's like it's out of it's commands boundary or something. Also on a side note, if anyone could give me advice on making, or give me a script that creates lag/ High Ping, i'd be VERY grateful and in your debt.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...