• 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!

Solved Missing NPC's?

Wryhn

New Member
Joined
Nov 27, 2012
Messages
7
Reaction score
0
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find A Grumpy Cyclops
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Znozel
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Tony
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Lorietta
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Maris
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Armenius
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Harlow
[30/11/2012 13:23:03] [Spawn::addMonster] Can not find Curos

What is the name of the file that contains the information on where the npc files are located? In my monsters.xml its only spawns from monsters. Where can I edit the NPC one?

I have all these npc's in my npc folder, but when i start the server it cant find them.

Any help would be appreciated! :)

Tibia version 9.60, TFS 2.14
 
You need to change the type of the creature to be a NPC in your spawn file.
They are tagged as monster, probably cuz it is a tracked map.
 
Ok, so for example:

<spawn centerx="32819" centery="31279" centerz="5" radius="3">
<monster name="Karith" x="-1" y="-2" z="5" spawntime="60"/>

I change that to:

<spawn centerx="32819" centery="31279" centerz="5" radius="3">
<npc name="Karith" x="-1" y="-2" z="5" spawntime="60"/>

? :)
 
Back
Top