LightMistic

2° For moneywanters. By LightMistic

Aug 16th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. quest LightMistic begin
  2. state start begin
  3. --[[ Le cose che utilizzerò:
  4. > pc.setqf ( Serve a immagazzinare le informazioni del personaggio )
  5. > pc.getqf ( Carica le informazioni salvate nel qf. )
  6. > pc.get_level() ( Spero sai che significa =| )
  7. ]]
  8. 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.
  9. pc.setqf ( "punti_kill" , pc.getqf ( "punti_kill" ) + 1 ) --** [1] Indica la quantità del punto che si riceve.
  10. syschat ( " Hai: "..pc.getqf ( "punti_kill" ).." " ) --** Carico le informazioni dei punti con il getqf.
  11. end -- when
  12. end -- state
  13. end -- quest
Add Comment
Please, Sign In to add comment