ID:156689
 
If you have multiple instances of a proc throughout your code that use ..() to continue them, for example Move(), is there a way to change the order in which they're executed without moving them around?
It is based on the tree in which they're programmed under. But, the parent procedure will only be called once you use the "..()" operator.

obj
proc
Plap()
src<<"Rawr!"
items
Plap()
src<<"w00t!"
..() //this will now display "Rawr" after "w00t"