Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2014
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //Stop Knux in Co-op, and Race gametypes
  2. addHook("ThinkFrame", do
  3. for player in players.iterate
  4. if mapheader.typeoflevel == TOL_COOP or TOL_RACE and if (player.mo and player.mo.skin == "knuckles")
  5. player.playerstate = PST_DEAD
  6. print(mo.player.name+"tried to use Knux")
  7. return
  8. end
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement