ID:670046
 
(See the best response by .screw.)
The Question

This is quick question about byond because i still don't know the entire syntax. Is their a goto to command and if their is how do you use it.


There is a goto command.

It is in the reference.

However, you shouldn't use it. There are much more efficient ways to do things than goto.
Best response
As Albro stated, goto is never recommended. There are better ways of achieving a similar and more efficient outcome and goto makes your code more difficult to read.

Nonetheless, here is an example:
mob
proc
warp()
// the node
start

world << "WARP"

// jumps back to the node, thus creating a loop
spawn(10) goto start


[I'm sorry for re-posting this, I accidentally deleted it]