PrivateerTwitchwhisker.lua 391 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : 1/1/2019
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function respec(Player)
  16. skill = GetSkill(Player, "Parry")
  17. if skill ~= nil then
  18. SetSkillValue(skill, 200)
  19. end
  20. end