ID:173665
 
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
I dont think that checks for holding down shift are possible, but you could make it so when you press shift once, it enables the secondary click mode, then when you press shift agian, it changes back to normal click mode.

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