29.04.2014, 13:27
If you want a message when someone joins simply add this code between the curly braces of OnPlayerConnect.
Please rep if this helped you. 
Raaf
Код:
SetTimer("message", 10000, false); //set the timer, message is the name of our class, 10000 our time in miliseconds and false to set no repeating. public message() { SendClientMessageToAll("-1", "Your message."); }

Raaf