ID:157286
 
I can't really explain this too well but I will try. Say during a proc, src is me, the player, while M is the enemy. How can I use the variables of myself and the enemy in a different proc? Like:
mob/proc
someproc()
src<<"[src] is you and [M] is the enemy."
anotherproc()
src<<"[src] is still you and [M] is still the enemy."

I can't figure out how to explain it better.
By passing the values to the other proc using arguments.
In response to Nadrew
I got it. Thanks.