• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Missing monster spells & monster files

TiuTalk

PHP Developer
Joined
Jan 7, 2009
Messages
89
Reaction score
0
Location
Rio de Janeiro - Brasil
Hi there... I'm running TFS 0.3.4 and when I try to start my server i receive this block of error:

[04/07/2009 02:56:30] [Warning - Monsters::loadMonster] Cannot load monster (Rift Phantom) file (data/monster/8.4 Monsters/rift phantom.xml).
[04/07/2009 02:56:30] Info: failed to load external entity "data/monster/8.4 Monsters/rift phantom.xml"

[04/07/2009 02:56:30] [Warning - Monsters::loadMonster] Cannot load monster (Rift Lord) file (data/monster/8.4 Monsters/rift lord.xml).
[04/07/2009 02:56:30] Info: failed to load external entity "data/monster/8.4 Monsters/rift lord.xml"

[04/07/2009 02:56:30] Error: [Monsters::deserializeSpell] - Deathbringer - Unknown spell name: snow wave
[04/07/2009 02:56:30] [Warning - Monsters::loadMonster] Cant load spell. (data/monster/Arena/warlord/deathbringer.xml)
[04/07/2009 02:56:30] Error: [Monsters::deserializeSpell] - Gnorre Chyllson - Unknown spell name: hot water storm
[04/07/2009 02:56:30] [Warning - Monsters::loadMonster] Cant load spell. (data/monster/Arena/warlord/gnorre chyllson.xml)
[04/07/2009 02:56:30] Error: [Monsters::deserializeSpell] - Gnorre Chyllson - Unknown spell name: snow wave
[04/07/2009 02:56:31] [Warning - Monsters::loadMonster] Cant load spell. (data/monster/Arena/warlord/gnorre chyllson.xml)
[04/07/2009 02:56:31] Error: [Monsters::deserializeSpell] - Gnorre Chyllson - Unknown spell name: snowstorm
[04/07/2009 02:56:31] [Warning - Monsters::loadMonster] Cant load spell. (data/monster/Arena/warlord/gnorre chyllson.xml)
[04/07/2009 02:56:31] [Warning - Monsters::loadMonster] Duplicate registered monster with name: Werewolf
[04/07/2009 02:56:31] Error: [Monsters::deserializeSpell] - Energy Elemental - Unknown spell name: spark bomb
[04/07/2009 02:56:31] [Warning - Monsters::loadMonster] Cant load spell. (data/monster/Energy-Elementals/energy elemental.xml)
[04/07/2009 02:56:31] [Warning - Monsters::loadMonster] Cannot load monster (Inky) file (data/monster/Bosses/Inky.xml).
[04/07/2009 02:56:32] Info: failed to load external entity "data/monster/Bosses/Inky.xml"

These monster spells (like snow wave) are there, in the folder:
..\data\spells\scripts\monster\snow wave.lua
..\data\spells\scripts\monster\constrictor freeze.lua
..\data\spells\scripts\monster\spark bomb.lua
..\data\spells\scripts\monster\snowstorm.lua


Example of snow wave.lua file:
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DROWNDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_POFF)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SNOWBALL)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 0, -0, 0, -0)

local area = createCombatArea(AREA_SQUAREWAVE5, AREADIAGONAL_SQUAREWAVE5)
setCombatArea(combat, area)

local condition = createConditionObject(CONDITION_DROWN)
setConditionParam(condition, CONDITION_PARAM_DELAYED, 1)
addDamageCondition(condition, 8, 5000, -20)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)
    return doCombat(cid, combat, var)
end

They're all there and with correct syntax... But i can't fix of this issue.

Anyone have those monsters or can tell me a way to fix this spells errors?

:huh:

Bye~
 
Back
Top Bottom