SaySource

by Kristof
A thorough explaination on how to create the following commands with a few ustomizations.. Say, Mute, UnMute, fontcolor, namecolor, boot, Nick, AFK, Back, me, and a GM Login() proc check.. [More]
To download this demo for your Linux/Mac installation, enter this on your command line:

DreamDownload byond://Kristof.SaySource##version=0

Emulator users, in the BYOND pager go to File | Open Location and enter this URL:

byond://Kristof.SaySource##version=0

755 downloads
Latest Version
Date added: May 4 2005
Last updated: Jul 29 2009
2 fans
This contains a a how-to (thouroughly explained) on:
*Say verb
*mute verb
*unmute verb
*fontcolor verb
*namecolor verb
*boot verb
*The GM check on Login() proc
*nick verb
*AFK Command
*Back Command
*Me Command

Be prepared and get ready to jump in.. You ...SHOULD... learn ALOT here if you're an extremely new egg.. like frsh from the chicken's butt. Well.. It helps even a few intermediate people, also.

Comments

Spunky_Girl: (Aug 16 2010, 8:00 am)
One mistake that makes the Say verb work not as intended.
mob/var/mute
mob/verb/Say(J as text)
if(usr.mute == 0)
//blah
else
//blah

Will default to the else statement since 'mute' has a value of null, not 0.