Advertisement
Guest User

Anti EXP

a guest
Sep 22nd, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. quest anti_exp begin
  2. state start begin
  3. when kill with pc.getqf("exp_block")==1 and not npc.is_pc() begin
  4. if pc.get_exp()>1 then
  5. pc.give_exp2(-pc.get_exp())
  6. end
  7. end
  8. when 72501.use with pc.getqf("exp_block")==0 begin
  9. chat("Ab jetzt bekommst du KEINE Exp mehr!")
  10. pc.setqf("exp_block", 1)
  11. end
  12. when 72501.use with pc.getqf("exp_block")==1 begin
  13. chat("Ab jetzt bekommst du wieder Exp!")
  14. pc.setqf("exp_block", 0)
  15. end
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement