here is the one I use it is part of my gate scripting but could be done on its own
Quote:
Originally Posted by
ON SIGNON {
; return (rapid exit and return to same room, available in all rooms)
returnToRm GLOBAL returnRm GLOBAL
{
{ roomID returnRm = 1002 GoToRoom } ChatStr "return" == IF
;change the 1002 to the room number of your return room
} returnToRm Def
}
this part being in the room globals
Quote:
Originally Posted by
ON OUTCHAT {
returnToRm GLOBAL returnRm GLOBAL returnToRm EXEC
}