mirror of
https://github.com/araxiaonline/awakening-lua.git
synced 2026-06-13 02:22:19 -04:00
11 lines
335 B
Lua
11 lines
335 B
Lua
--TEMP USED THIS ONE FOR FIXING SEABISCUIT LEARN SPELL--
|
|
RegisterPlayerEvent(28, function(event,player)
|
|
if (player:HasSpell(966004)) then
|
|
player:LearnSpell(966002)
|
|
player:RemoveSpell(966004)
|
|
end
|
|
|
|
if not(player:HasSpell(500000)) then -- Father asked me to make this always learned
|
|
player:LearnSpell(500000)
|
|
end
|
|
end) |