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

Corpse name, what determines it? [Tibia 11]

7th son

New Member
Joined
Jan 17, 2017
Messages
20
Reaction score
3
I wonder what determines that Ghoul corpse name starts with 'Slain of...', whereas Ghosts starts with "Remains of..." while Nomad or Scarab is simply "Dead of...".
Where can I find function that determines it in sources and also where exactly in monsters.xml file it is assigned?
Is it here?
<look type="11" corpse="8965"/>
 
Solution
in items.xml


Code:
    <item id="2846" article="a" name="slain ghoul">
        <attribute key="containerSize" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
in items.xml


Code:
    <item id="2846" article="a" name="slain ghoul">
        <attribute key="containerSize" value="10" />
        <attribute key="corpseType" value="undead" />
    </item>
 
Solution
Back
Top