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

Few questions! ACC MAKER

perwal

New Member
Joined
Jul 14, 2011
Messages
65
Reaction score
1
Location
Poland Torun
Hiho,

1) I need items img to my acc maker, cuz i dont see showeritems in character on website. I use gesior 0.3.6.

2) When my server is online on website i see that SERVER OFFLINE. Why? Any answer?

3) Random flags, this problem:

abc.jpg

Rep my bro, thanks :)
 
Here you go.

1. I found this items folder on my Gesior folder, just paste it into htdocs folder and configure paths in characters.php.

2. Open layout.php, find this:

Lua:
			if($config['status']['serverStatus_online'] == 1)
				echo $config['status']['serverStatus_players'].'<br />Players Online';
			else
				echo '<font color="red"><b>Server<br />OFFLINE</b></font>';

Replace it with this:

Lua:
if($config['status']['serverStatus_online'] == 0)
				echo '<div id="players" style="display: inline;">'.$number_of_players_online.'</div><br>Players Online';  
			else
				echo '<font color="orange">'.$number_of_players_online.'<br />Players Online</font>';

3. Right click>Propierties on the broken flag img, and look the path that should be the img, and just put the flags folder where propierties mark.
 
Back
Top