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

Show (online) next to name in guild page

shor

New Member
Joined
Jan 2, 2011
Messages
137
Reaction score
0
Location
Poland
Can anyone make for me something like that, when I open list of guild in my gesior acc, there is
Code:
Nick (tittle)
I want to have
Code:
Nick (tittle) ONLINE
if player is online, can someone tell me what and where should I add something?
 
Using this thread, Its possible that with Gesior When character is offline nick have blue names? Like when you use [.player][./player]
 
look for: foreach($players_with_rank as $player)

$main_content .= '<TR><TD><FORM ACTION="?subtopic=guilds&action=change_nick&name='.urlencode($player->getName()).'" METHOD=post><A
HREF="?subtopic=characters&name='.urlencode($player->getName()).'">'.($player->isOnline() ? "<font color=\"green\">".$player->getName()."</font>" : "<font color=\"red\">".$player->getName()."</font>").'</A>';

will show name in Green if player is online...
 
Back
Top