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

guild war player killed by summon not show

Mauzim

Member
Joined
Jan 3, 2011
Messages
568
Reaction score
9
if((channel = g_chat.getChannel(list[0].getKillerCreature()->getPlayer(), CHANNEL_GUILD)))
this code is wrong because it not show if enemy is killed by summon of attacker

Creature* creature = it->getKillerCreature();
if(it != list.begin())
{
++it;
if(it == list.end())
s << " and ";
else
s << ", ";
}
else
++it;

s << creature->getName();
}
 
Back
Top