ID:156688
 
Okay , now im wanting to add a custom message to my DBZ game when someone logs in , it says

The Ground Shakes Massively.(Sleep) - 40

Lord Diobora Has Arrived.

Something like that ?

someone help wiff code.
As this is a very, very trivial (read basic knowledge) problem, it hints at the fact that you never really got yourself started with the language fundamentals. If you do not want to learn programming, that is fine, you can always hire some programmers, but in such a case, the Developers How-To forum might not be the desired resource for you.

As for your problem, you'd use the event hook for a player connecting to your game (client.New()) and take the appropriate action.
mob
Login()
if(key=="Diobora")
world << "The Ground Shakes Massively."
sleep(40)
world << "Lord Diobora Has Arrived."
else
world << "[usr] has logged in."
..()
In response to Raimo
now Raimo , would that

else

world << "[usr] has logged in"
..()

would be for me or the other users?
In response to Diobora
other users.