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

nekiro tfs 1.5 7.72 downgrade - bug no monster bodies after killing

OTAmator

Member
Joined
May 4, 2016
Messages
60
Reaction score
8
Hi, im testing nekiro downgrade and i dont have monster bodies after killing monsters. I have imported items.otb, sprites etc. from tibia 7.6. Maybe it could be a problem?
 

Attachments

  • noMonsterBodies.gif
    noMonsterBodies.gif
    287.4 KB · Views: 10 · VirusTotal
nvm i found the solution. For example i had 5962 corpse id for cyclops
Lua:
<monster name="Cyclops" nameDescription="a cyclops" race="blood" experience="150" speed="200" manacost="490">
    <health now="260" max="260" />
    <look type="22" corpse="5962" />

the right one is 2808

Code:
<monster name="Cyclops" nameDescription="a cyclops" race="blood" experience="150" speed="200" manacost="490">
    <health now="260" max="260" />
    <look type="22" corpse="2808" />
 
Back
Top