Advertisement
krot

jass KickPlayer

Oct 5th, 2023
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function KickPlayer takes player p returns nothing
  2.     call RemovePlayer(p, PLAYER_GAME_RESULT_DEFEAT)
  3.     if GetLocalPlayer() == p then
  4.         call EndGame(false)
  5.     endif
  6. endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement