Advertisement
Guest User

Untitled

a guest
Dec 12th, 2012
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function onPlayerJoin( pPlayer )
  2. {
  3. Message( pPlayer.Name + " has joined lolmortuary!:D", Colour( 255, 255, 0 ) );
  4. return 0;
  5. }
  6. function onPlayerPart( pPlayer, reason )
  7. {
  8. if ( reason == PARTREASON_DISCONNECTED ) Message( pPlayer.Name + " has left lolmortuary!:D (Reason: Disconnected)", Colour( 255, 255, 0 ) );
  9. else if ( reason == PARTREASON_BANNED ) Message( pPlayer.Name + " has left lolmortuary!:D (Reason: Banned)", Colour( 255, 255, 0 ) );
  10. else if ( reason == PARTREASON_KICKED ) Message( pPlayer.Name + " has left lolmortuary!:D (Reason: Kicked)", Colour( 255, 255, 0 ) );
  11. else Message( pPlayer.Name + " has left lolmortuary!:D (Reason: Crashed)", Colour( 255, 255, 0 ) );
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement