mob/verb/test()
del src
some_loop_proc_i_made_earlier()
Now, I know that the loop will never run but consider this: I pet the delete src after the proc then the proc should run. But even THEN the proc wont run because src don't exist no more! How can I get the proc to run after src is dead (Note: the proc does not effect src in anyway, just the world which will not be deleted)?
Otherwise I don't know why it wouldn't work like this