• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Summon's corpse

breispodeu

Mapper/Scripter/C++ Programmer
Joined
Jul 25, 2009
Messages
80
Reaction score
5
GitHub
lucasoares
On my server, when I kill a summoned monster, he simply disappears, they doesn't have a corpse. How can I "fix" it?
 
But I WANT the corpse of summons... I need this for some actions in my Server.. =/

- - - Updated - - -

OTX :)
summon is from player or GOD?

The summon is from a monster.. When I kill the monster, summons die and leave corpse. But when I kill the SUMMON, do not leave any corpse =/
 
Did your summoned monster have any corpse from/in .xml file? you should add any corpse to summoned monster (the clone of monster summoned .xml file corpse="id")???

i think monster summoned have corpse like 0 or noting.
 
Creature::dropCorpse, creature.cpp.
[CPP]if(master)
{
g_game.addMagicEffect(getPosition(), MAGIC_EFFECT_POFF);
return;
}[/CPP]
 
Did your summoned monster have any corpse from/in .xml file? you should add any corpse to summoned monster (the clone of monster summoned .xml file corpse="id")???

i think monster summoned have corpse like 0 or noting.

It's the same monster.. Ex.: If I kill the summons of necromancer, they doesn't leaves corpse. If I kill the necromancer, your summons will leave bodies.

My yalahar quest needs the corpse of azerus' summons, because the azerus's life is taken when the "body" of the monster is on the floor with some ActionId.. Ninja, the only way is the source?
 
I approve Ninja post above. You should download sources and compile your engine trunk for example stian revpack devc++, or tfs compiler or something else which have good boost pack and others, if you are trying compile it from windows.
 
Back
Top