maarten
12-26-2004, 07:18 PM
This is a simple ON ENTRY Message script. On entering, the user triggers a message that can be:
- seen by the user only (LOCALMSG)
- seen by everyone in the room (ROOMMSG)
- seen by the user only as a flashing text below the chat window (STATUSMSG)
- said via the user (SAY)
ON ENTER {
"This is your message." LOCALMSG
;You can replace LOCALMSG with any of the commands listed above
}
To say the message at a certain place, add the coordinates of the spot where you want your text to appear.
ON ENTER {
"@x,y This is your message." LOCALMSG
;replace x and y with the corresponding coordinates
}
- seen by the user only (LOCALMSG)
- seen by everyone in the room (ROOMMSG)
- seen by the user only as a flashing text below the chat window (STATUSMSG)
- said via the user (SAY)
ON ENTER {
"This is your message." LOCALMSG
;You can replace LOCALMSG with any of the commands listed above
}
To say the message at a certain place, add the coordinates of the spot where you want your text to appear.
ON ENTER {
"@x,y This is your message." LOCALMSG
;replace x and y with the corresponding coordinates
}