ID:138424
 
I've never used call() but I found a use for it in my code (assuming it actually does what I think it does), and attempted to use it... with few results.

Okay, suppose I have a couple mobs with /mob/var/myproc
One has myproc = /mob/proc/proc1
and the other is set to /mob/proc/proc2

I should be able to call them with call(src.myproc)() right? Or at least something like that.. I've tried call(src,src.myproc)() and I've tried changing the variables into the text names of procs (ie. "proc1")

None of these seem to work.. I'm probably doing something wrong, I know.. but I can't figure out what.

-AbyssDragon