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

how to drag corpse recently killed monster 8.6

chupaescadatri

Banned User
Joined
Jul 5, 2014
Messages
338
Reaction score
49
How do I enable the function for anyone to drag the monster's corpse who was killed recently and open it also
?
 
How do I enable the function for anyone to drag the monster's corpse who was killed recently and open it also
?

Isn't there a message or something like, "You do not own this corpse" ? If i recall correct at least.
Start with take that string and open the TFS folder inside sublime for example and search thru files for it to find were it cancel.
 
Nope that is the part, which is setting corpse owner. Just do like this:

Code:
Item* Monster::getCorpse(Creature* _lastHitCreature, Creature* mostDamageCreature)
{
    return Creature::getCorpse(_lastHitCreature, mostDamageCreature);
}
 
I'm not sure, but I think some corpses are not moveable items by default, you should change the corpse of each monster for it moveable counterpart. I think the not moveable one decay for the moveable one after some amount of time.
 
I'm not sure, but I think some corpses are not moveable items by default, you should change the corpse of each monster for it moveable counterpart. I think the not moveable one decay for the moveable one after some amount of time.
not any body can be removed. but it blocks the opening seconds, anyone steal your loot, but I want to remove this function, leave the same in 7.6 you just killed can now move.
and figured out how to take the loot messages, in config.lua own have the option to take, now just missing me figure out how to let the body be moved so dies recent.
 
now just missing me figure out how to let the body be moved so dies recent.
As I said, you should change each monster corpse. Troll for exemple, has corpse item id 5960, it's a non-moveable item. It decay for item 3067 that is a moveable item. Just change troll corpse from 5960 directly for 3067. Do it for each monster.
 
As I said, you should change each monster corpse. Troll for exemple, has corpse item id 5960, it's a non-moveable item. It decay for item 3067 that is a moveable item. Just change troll corpse from 5960 directly for 3067. Do it for each monster.
That's not a bad idea, but is massively time-consuming.
If I remember correctly, in my server I transformed the corpse into their decayTo item id and then, start the decay.
 
Last edited:
Back
Top