Clotic

LearnSpells Login.lua

Aug 1st, 2019
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.31 KB | None | 0 0
  1. function LoginAddStuff(event, player)
  2.    if player:GetGMRank() > 2 then ---GM power level
  3.       player:CastSpell(player, 32728)
  4.    end
  5.    if player:HasItem(2586, 1) then ---[Gamemaster's Robe]
  6.    elseif player:AddItem(2586, 1) then ---[Gamemaster's Robe]
  7.       player:AddItem(11508, 1) --- [Gamemaster's Slippers]
  8.       player:AddItem(12064, 1) ---[Gamemaster Hood]
  9.       player:AddItem(18970, 2) ---[Ring of Critical Testing 2]
  10.       player:AddItem(12947, 2) --- [Alex's Ring of Audacity]
  11.    end
  12.    player:LearnSpell(1908) ---- Healing
  13.    player:LearnSpell(40733) --- Divine Shield
  14.    player:LearnSpell(34091) --- Mount skill
  15.    player:LearnSpell(54197) --- Mount skill Cold weather
  16.    player:LearnSpell(32728) --- Arena prep no cost
  17.    player:LearnSpell(45813) ---AqTestSpell Instant Cast
  18.    player:LearnSpell(46642) ---5,0000 coin
  19.    player:LearnSpell(32453) --- mana pot spell
  20.    player:LearnSpell(6560) ---LeCraft Casting time 200%?
  21.    player:LearnSpell(54283) -- 30% Critz
  22.    player:LearnSpell(46917) --- Titans Grip
  23.    player:LearnSpell(674) --- Dual Wield
  24.    player:LearnSpell(53082) --- Pet Teleport
  25.    player:LearnSpell(26) ---Set HS
  26.    player:LearnSpell(30879) --- Permanent Area Damage 50k
  27. end
  28.  
  29. RegisterPlayerEvent(3, LoginAddStuff)
  30.  
  31. --- 51915 -- Undying Resolve
  32. --- 58361 -- Morgraine buff
Add Comment
Please, Sign In to add comment