I was wondering if you could Do like a double macro for byond games. like if you hold shift and then click it does something differnet from when you just click.
If it's possible, Please tell me or explain how.
Thanks to all replys
ID:173665
Dec 2 2003, 2:32 am
|
|
You'd need something like this in your click
Click()//this is just example, code probably wont work
if(specialshift == 1)
do something
return
else
do something else
return