ID:157504
 
How would I go about accessing a verb in something ive already created. I want to access what is in the verb like ..() does, but what I want to do is make it sleep then delete the objects created by the verb. Example:

obj
wfront
icon = 'water.dmi'
icon_state = "leader"
New()
..(/mob/verb/Giant_Suiton_Shockwave)//I dont want this to just end. I want to be able to put in sleep and delete it after a certain amount of time)

mob
verb
Water_Attack()
var/obj/wfront/Wa = new(null, src)
Wa.loc = locate(src.x + 1, src.y, src.z)

Thanks for any help.
I figured it out, I just spawned and deleted it. Thanks!