Hallo habe folgendes Problem
Es kommt kein Quest Fehler und Nix aber es zeigt keine Quest Ingame an ! ;/
brauche dringend Hilfe...
Code
- quest antiexp begin
- state start begin
- when login begin
- if pc.getqf("antiexp") == 1 then
- pc.block_exp()
- chat("Anti EXP ist noch aktiviert")
- end
- end
- when itemvnum.use begin
- if pc.getqf("antiexp") == 0 then
- pc.block_exp()
- pc.setqf("antiexp", 1)
- chat("Anti EXP wurde aktiviert.")
- elseif pc.getqf("antiexp") == 1 then
- pc.unblock_exp()
- pc.setqf("antiexp", 0)
- chat("Anti EXP wurde deaktiviert.")
- end
- end
- end
- end