mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
Add a config boolean to enable the retro spell learning system. Main changes: - Add retro spell learning support behind a configuration option. - Update all spells to respect the new config. - Update spell-related NPCs to handle the learning system according to TibiaWiki behavior. - Update Dawnport NPCs for the retro spell learning flow. - Update the Rookgaard Oracle to handle Monk vocation selection. Validation: - Debugged and tested on tibiatales.com using the Canary/TFS Crystal server distribution. This allows servers to enable classic spell-learning behavior via config while keeping the existing spell behavior configurable.
48 lines
1.8 KiB
Lua
48 lines
1.8 KiB
Lua
local function levitate(creature, parameter)
|
|
local fromPosition = creature:getPosition()
|
|
|
|
if parameter == "up" and fromPosition.z ~= 8 or parameter == "down" and fromPosition.z ~= 7 then
|
|
local toPosition = creature:getPosition()
|
|
toPosition:getNextPosition(creature:getDirection())
|
|
|
|
local tile = Tile(parameter == "up" and Position(fromPosition.x, fromPosition.y, fromPosition.z - 1) or toPosition)
|
|
if not tile or not tile:getGround() and not tile:hasFlag(parameter == "up" and TILESTATE_IMMOVABLEBLOCKSOLID or TILESTATE_BLOCKSOLID) then
|
|
tile = Tile(toPosition.x, toPosition.y, toPosition.z + (parameter == "up" and -1 or 1))
|
|
|
|
if tile and tile:getGround() and not tile:hasFlag(bit.bor(TILESTATE_IMMOVABLEBLOCKSOLID, TILESTATE_FLOORCHANGE)) then
|
|
return creature:move(tile, bit.bor(FLAG_IGNOREBLOCKITEM, FLAG_IGNOREBLOCKCREATURE))
|
|
end
|
|
end
|
|
end
|
|
return RETURNVALUE_NOTPOSSIBLE
|
|
end
|
|
|
|
local spell = Spell("instant")
|
|
|
|
function spell.onCastSpell(creature, variant)
|
|
local returnValue = levitate(creature, variant:getString():lower())
|
|
if returnValue ~= RETURNVALUE_NOERROR then
|
|
creature:sendCancelMessage(returnValue)
|
|
creature:getPosition():sendMagicEffect(CONST_ME_POFF)
|
|
return false
|
|
end
|
|
|
|
creature:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
|
|
return true
|
|
end
|
|
|
|
spell:name("Levitate")
|
|
spell:words("exani hur")
|
|
spell:group("support")
|
|
spell:vocation("druid;true", "elder druid;true", "knight;true", "elite knight;true", "paladin;true", "royal paladin;true", "sorcerer;true", "master sorcerer;true", "monk;true", "exalted monk;true")
|
|
spell:castSound(SOUND_EFFECT_TYPE_SPELL_LEVITATE)
|
|
spell:id(81)
|
|
spell:cooldown(2 * 1000)
|
|
spell:groupCooldown(2 * 1000)
|
|
spell:level(12)
|
|
spell:mana(50)
|
|
spell:hasParams(true)
|
|
spell:isAggressive(false)
|
|
spell:isPremium(true)
|
|
|
|
spell:register()
|