ID:178664
![]() Apr 19 2002, 1:22 pm
|
|
I was wondering how can you make it with the click proc where u have to be touching the thing your going to click or it wont work?
|
Copyright © 2025 BYOND Software.
All rights reserved.
<code>mob/Click() if(get_dist(usr,src) > 5) return // do normal stuff</code>
That will let you click on things within a range of five, but anything outside that will do nothing.