Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. quest antiexp begin
  2. state start begin
  3. when login begin
  4. cmdchat("Antiexp "..q.getcurrentquestindex())
  5. if pc.getqf("antiexp") == 1 then
  6. pc.block_exp()
  7. chat("Anti EXP ist noch aktiviert")
  8. end
  9. end
  10. when button or info begin
  11. if pc.getqf("antiexp") == 0 then
  12. pc.block_exp()
  13. pc.setqf("antiexp", 1)
  14. chat("Anti EXP wurde aktiviert.")
  15. elseif pc.getqf("antiexp") == 1 then
  16. pc.unblock_exp()
  17. pc.setqf("antiexp", 0)
  18. chat("Anti EXP wurde deaktiviert.")
  19. end
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement