Advertisement
KingOfVC

a

Mar 24th, 2016
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function DeathMessage( id )
  2. {
  3. switch( id )
  4. {
  5. case 70: return "commited suicide.";
  6. case 39: return "died in a car crash.";
  7. case 31: return "burned to death.";
  8. case 14: return "choked to death.";
  9. case 43: return "drowned.";
  10. case 41: return "exploded.";
  11. case 51: return "exploded.";
  12. case 44: return "fell to death.";
  13. default: return "died.";
  14. }
  15. }
  16.  
  17. function aPartReason( iReason )
  18. {
  19. switch( iReason )
  20. {
  21. case 0: return "has lost connection from the server.";
  22. case 1: return "has left the server.";
  23. case 2: return "has been kicked from the server.";
  24. case 3: return "'s game crashed.";
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement