ID:179722
 
How would i make it so you can only click ona monster when the are next to them
i have tired alot of things but nothing has worked
So i guess no one knows how
In response to Gouku
i dont remember if it is here or Pgamers, but i think double posting is counted as spam or bumping or somthing like that, what EXACTLY are you try to do?
In response to Pillsverry
How would i make so when i use the Click()
i can only .click things that are nxt to me
In response to Gouku
mob
Click()
if(get_dist(src, usr)<=1)
//do stuff here....

or try

mob
Click()
if(get_dist(src.loc, usr.loc)<=1)
//do stuff here....

Have Fun!
FIREking