• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Gesior Website support

Rune-Dayz

Member
Joined
Jul 11, 2015
Messages
82
Reaction score
7
if you look my webstie "http://rune-dayz.ddns.net/"

there is 2 things i need help with is their a file where i change the server name and description or do i need to change image

2. if you look at top 5 players it says Add your script here what do i put?
 
1. You need to change image I think (not sure, not using GESIOR) - probably in layouts/layout name/images/header
2. Try this:
Code:
<table width="100%" border="0">

    <?PHP
                    $order = 0;
                    $number_of_people = 0;
                    $skills = $SQL->query('SELECT name,online,level,experience,vocation,promotion FROM players WHERE players.deleted = 0 AND players.group_id NOT IN ('.implode(',', $config['site']['groups_hidden']).')  AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT 10;');
                        foreach($skills as $skill) {
                          $order++;
                            if(is_int($number_of_people / 2))
                                $bgcolor = $config['site']['darkborder'];
                            else
                                $bgcolor = $config['site']['lightborder'];
                                $number_of_people++;
                                $players_skill .= '<tr BGCOLOR=""><td align="center">'.$order.'.</td><td align="left"><B><a href="?subtopic=characters&name='.urlencode($skill['name']).'">'.($skill['online']>0 ? "<font color=\"green\">".$skill['name']."</font>" : "".$skill['name']."</font>").'</a></td> <td align="center"><font color="#7073FC"><em>LvL '.$skill['level'].'</em></font></td>';
                        }
                    echo "$players_skill";
                ?>
                    </table>
 
Last edited:
if you look my webstie "http://rune-dayz.ddns.net/"

there is 2 things i need help with is their a file where i change the server name and description or do i need to change image

2. if you look at top 5 players it says Add your script here what do i put?

The layout you have is made by Nizahe & HalfAway, you shouldn't remove the credits, also it was made for a Znote AAC
http://www.************/index.php?layouts
https://otland.net/threads/modern-account-dwarf-layout.150198/

You can find the logo.psd file inside of layout/img directory, you will need photoshop or some other photo editing program that can edit / import psd files.
 
1. You need to change image I think (not sure, not using GESIOR) - probably in layouts/layout name/images/header
2. Try this:
Code:
<table width="100%" border="0">

    <?PHP
                    $order = 0;
                    $number_of_people = 0;
                    $skills = $SQL->query('SELECT name,online,level,experience,vocation,promotion FROM players WHERE players.deleted = 0 AND players.group_id NOT IN ('.implode(',', $config['site']['groups_hidden']).')  AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT 10;');
                        foreach($skills as $skill) {
                          $order++;
                            if(is_int($number_of_people / 2))
                                $bgcolor = $config['site']['darkborder'];
                            else
                                $bgcolor = $config['site']['lightborder'];
                                $number_of_people++;
                                $players_skill .= '<tr BGCOLOR=""><td align="center">'.$order.'.</td><td align="left"><B><a href="?subtopic=characters&name='.urlencode($skill['name']).'">'.($skill['online']>0 ? "<font color=\"green\">".$skill['name']."</font>" : "".$skill['name']."</font>").'</a></td> <td align="center"><font color="#7073FC"><em>LvL '.$skill['level'].'</em></font></td>';
                        }
                    echo "$players_skill";
                ?>
                    </table>
is their also one for guilds?
 
Back
Top