Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. #####################
  2. #--Written by Ozban.#
  3. #####################
  4. # -For now, I have both Endurance and Asceticism in the guild skills, until
  5. # the Pally one is released and we know what it is (there was a forum post
  6. # that said Raesh wanted to go with Asceticism).
  7. #debug 5
  8. ################
  9. # Skills
  10. #_______________
  11. var armor_skills Shield_Usage|Light_Armor|Chain_Armor|Brigandine_Armor|Plate_Armor|Defending
  12. var weapon_skills Parry_Ability|Small_Edged|Large_Edged|Twohanded_Edged|Small_Blunt|Large_Blunt|Twohanded_Blunt|Slings|Bow|Crossbow|Staves|Polearms|Light_Thrown|Heavy_Thrown|Brawling|Offhand_Weapon|Melee_Mastery|Missile_Mastery
  13. var magic_skills Primary_Magic|Attunement|Arcana|Targeted_Magic|Augmentation|Debilitation|Utility|Warding|Sorcery
  14. var survival_skills Evasion|Athletics|Perception|Stealth|Locksmithing|Thievery|First_Aid|Outdoorsmanship|Skinning
  15. var lore_skills Forging|Engineering|Outfitting|Alchemy|Enchanting|Scholarship|Mechanical_Lore|Appraisal|Performance|Tactics
  16. var guild_skills Endurance|Expertise|Backstab|Thanatology|Theurgy|Summoning|Astrology|Empathy|Bardic_Lore|Scouting|Trading|Asceticism
  17. ################
  18. # Math and stuff
  19. #_______________
  20. var all_skills %armor_skills|%weapon_skills|%magic_skills|%survival_skills|%lore_skills|%guild_skills
  21. eval total_skills count("%all_skills", "|")
  22. var skill_counter 0
  23. var total_learning 0
  24. ################
  25. # Count it up!
  26. #_______________
  27. top_count:
  28. if ($%all_skills(%skill_counter).LearningRate > 0) then math total_learning add 1
  29. math skill_counter add 1
  30. if (%skill_counter > %total_skills) then goto exit
  31. goto top_count
  32.  
  33. exit:
  34. echo
  35. echo *** %total_learning SKILLS MOVING RIGHT NOW! ***
  36. echo
  37. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement