ID:158765
 
how would i make this work
turf/DblClick()
usr.Move(src)
into a verb named shunpo without getting the duplicate defination eror with the built in proc
1. Name it something else, or
2. Turn shunpo into a proc and then call it for both the verb and DblClick()
In response to Demon_F0rce
can u show me an example plz
In response to Goggeeta
mob
var/tmp/abouttowhistle = 0
verb/whistle()
abouttowhistle = 1
usr << "Whistle at what?"

client
DblClick(object)
if(mob.abouttowhistle && (object in oview(mob)))
view(mob) << "[mob] whistles at [object]!"
mob.abouttowhistle = 0