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

Skull Gesior

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
need to put this on the characters.php but I have no idea how to edit work

PHP:
if ($player['skulltime'] > 0 && $player['skull'] == 1)
                $rs = "<img style='border: 0;' src='./images/yellowskull.gif'/>";
        elseif ($player['skulltime'] =  $player['skull'] == 2)
                $rs = "<img style='border: 0;' src='./images/greenskull.gif'/>";
        elseif ($player['skulltime'] =  $player['skull'] == 3)
                $rs = "<img style='border: 0;' src='./images/whiteskull.gif'/>";
        elseif ($player['skulltime'] =  $player['skull'] == 4)
                $rs = "<img style='border: 0;' src='./images/redskull.gif'/>";
        elseif ($player['skulltime'] =  $player['skull'] == 5)
                $rs = "<img style='border: 0;' src='./images/blackskull.gif'/>";
 
I do not know, I found on another page but does not work, I tested the new 2012 Gesior also not working

gesior 2012
PHP:
		$skull = '';
		if ($player->getSkull() == 4)
			$skull = "<img style='border: 0;' src='./images/skulls/redskull.gif'/>";
		else if ($player->getSkull() == 5)
			$skull = "<img style='border: 0;' src='./images/skulls/blackskull.gif'/>";

blank page
 
Works fine for me. :p

w_c7ix.png
 
I do not know, I found on another page but does not work, I tested the new 2012 Gesior also not working

gesior 2012
PHP:
        $skull = '';
        if ($player->getSkull() == 4)
            $skull = "<img style='border: 0;' src='./images/skulls/redskull.gif'/>";
        else if ($player->getSkull() == 5)
            $skull = "<img style='border: 0;' src='./images/skulls/blackskull.gif'/>";

blank page
its working for red and black skull only, because in big time you need relog to see changes on webpage. So its almost impossible view with this script for example white skull with classic pvp system because you can relog only when you lose your skull so your skull is again ==0
 
Back
Top