ID:149612
 
How do i make my game say something special to the world if a particular person logs in.

Example:
If DarkFireball(me) logs into my game, how would I make it say
"The great DarkFireball has joined us!" or sumthing like that .... All help is appreciated!!


--DarkFireball
Perhaps something like this is what you want:

mob/Login()
..()
if(src.key == "DarkFireball")
world << "The great and wonderous DarkFireball is now among us..."
else
world << "[usr] has joined!"
Then, if you log in as "DarkFireball", everyone'll see the special login message, instead of the usual one.