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

Emblem and Skull

Tastertur

New Member
Joined
Feb 26, 2009
Messages
149
Reaction score
4
Example; Player (enemy) with a red emblem got no greenskull, is it possible to add a greenskull to him? (via warmode) I'm using elf's warsystem.
If you have green emblem the player have greenskull...


Thanks in advance
 
^for me it doesn't work I bought it from elf/stian via **********...
players only get green skull if they have green emblem/ and players with red emblem don't have them :S
 
try editing player.cpp
Code:
		if(player->getSkull() == SKULL_NONE &&
#ifndef __WAR_SYSTEM__
			isPartner(player) &&
#else
			(isPartner(player) || isAlly(player)[B][COLOR="#FF0000"] || isEnemy(player, true)[/COLOR][/B]) &&
#endif
			g_game.getWorldType() != WORLD_TYPE_NO_PVP)
			return SKULL_GREEN;
 
Back
Top