Advertisement
Guest User

Evader Alert - By Diego^

a guest
Aug 2nd, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. function CPlayer::IsFall()
  2. {
  3. if ( this.Action == 42 || this.Action == 43 ) return true;
  4. else return false;
  5. }
  6.  
  7. function onPlayerPart( player, reason )
  8. {
  9. if ( player.IsFall() ) //Send alert to administrators on server/irc.
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement