mirror of
https://github.com/otland/forgottenserver
synced 2026-08-15 16:32:07 -04:00
* Move runes to dedicated folder * Redirect old XML and lib folder to new location * Drop unused custom spells
38 lines
1.1 KiB
Lua
38 lines
1.1 KiB
Lua
local condition = Condition(CONDITION_OUTFIT)
|
|
condition:setTicks(180000)
|
|
|
|
local spell = Spell(SPELL_INSTANT)
|
|
|
|
function spell.onCastSpell(creature, variant)
|
|
local returnValue = RETURNVALUE_NOERROR
|
|
local monsterType = MonsterType(variant:getString())
|
|
if not monsterType then
|
|
returnValue = RETURNVALUE_CREATUREDOESNOTEXIST
|
|
elseif not creature:hasFlag(PlayerFlag_CanIllusionAll) and not monsterType:isIllusionable() then
|
|
returnValue = RETURNVALUE_NOTPOSSIBLE
|
|
end
|
|
|
|
if returnValue ~= RETURNVALUE_NOERROR then
|
|
creature:sendCancelMessage(returnValue)
|
|
creature:getPosition():sendMagicEffect(CONST_ME_POFF)
|
|
return false
|
|
end
|
|
|
|
condition:setOutfit(monsterType:getOutfit())
|
|
creature:addCondition(condition)
|
|
creature:getPosition():sendMagicEffect(CONST_ME_MAGIC_BLUE)
|
|
return true
|
|
end
|
|
|
|
spell:group("support")
|
|
spell:id(38)
|
|
spell:name("Creature Illusion")
|
|
spell:words("utevo res ina")
|
|
spell:level(23)
|
|
spell:mana(100)
|
|
spell:isAggressive(false)
|
|
spell:hasParams(true)
|
|
spell:cooldown(2000)
|
|
spell:groupCooldown(2000)
|
|
spell:vocation("sorcerer;true", "druid;true", "master sorcerer;true", "elder druid;true")
|
|
spell:register()
|