gm_spells.lua 439 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/gm_spells.lua
  3. Script Purpose : Handles all GM spells
  4. Script Author : GMS !
  5. Script Date : Anytime
  6. Script Notes : Use spells_data to link to the specific command(s)
  7. --]]
  8. function cast(Caster, Target, Type)
  9. if Type == "MoonJump" then
  10. MoonJump(Caster, Target)
  11. end
  12. end
  13. function MoonJump(Caster, Target)
  14. SetServerControlFlag(Caster, 4, 16, 1)
  15. end