Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- quest LightMistic begin
- state start begin
- --[[ Le cose che utilizzerò:
- > pc.setqf ( Serve a immagazzinare le informazioni del personaggio )
- > pc.getqf ( Carica le informazioni salvate nel qf. )
- > pc.get_level() ( Spero sai che significa =| )
- ]]
- when 101.kill or 102.kill or 103.kill and pc.get_level() <= 20 begin --** [101, 102, 103] Value dei mob. [OR] Viene utilizzato per separare una cosa dall'altra. + Aggiunta livello limite.
- pc.setqf ( "punti_kill" , pc.getqf ( "punti_kill" ) + 1 ) --** [1] Indica la quantità del punto che si riceve.
- syschat ( " Hai: "..pc.getqf ( "punti_kill" ).." " ) --** Carico le informazioni dei punti con il getqf.
- end -- when
- end -- state
- end -- quest
Add Comment
Please, Sign In to add comment