This commit is contained in:
Daniel Björkholm 2014-05-02 12:31:57 +02:00
parent 23fd746970
commit 70b6940f82
4 changed files with 12 additions and 6 deletions

View File

@ -119,7 +119,11 @@
$config['soul'] = 100;
$config['maleOutfitId'] = 128;
$config['femaleOutfitId'] = 138;
$config['femaleOutfitId'] = 136;
$config['lookHead'] = 78;
$config['lookBody'] = 106;
$config['lookLegs'] = 58;
$config['lookFeet'] = 76;
// No vocation info (if user select vocation id 0, we force thees configurations on him
$config['nvlevel'] = 1;

View File

@ -269,7 +269,7 @@ function format_character_name($name) {
// Returns a list of players online
function online_list() {
if (config('TFSVersion') == 'TFS_10') return mysql_select_multi("SELECT `o`.`player_id` AS `id`, `p`.`name` as `name`, `p`.`level` as `level`, `p`.`vocation` as `vocation` FROM `players_online` as `o` INNER JOIN `players` as `p` ON o.player_id = p.id");
if (config('TFSVersion') == 'TFS_10') return mysql_select_multi("SELECT `o`.`player_id` AS `id`, `p`.`name` as `name`, `p`.`level` as `level`, `p`.`vocation` as `vocation`, `g`.`name` as `gname` FROM `players_online` as `o` INNER JOIN `players` as `p` ON `o`.`player_id` = `p`.`id` LEFT JOIN `guild_membership` gm ON `o`.`player_id` = `gm`.`player_id` LEFT JOIN `guilds` g ON `gm`.`guild_id` = `g`.`id`");
else return mysql_select_multi("SELECT `name`, `level`, `vocation` FROM `players` WHERE `online`='1' ORDER BY `name` DESC;");
}

View File

@ -1078,10 +1078,10 @@ function user_create_character($character_data) {
'health' => $cnf['health'],
'healthmax' => $cnf['health'],
'experience' => 0, /* Will automatically be configured according to level after creating this array*/
'lookbody' => 0, /* STARTER OUTFITS */
'lookfeet' => 0,
'lookhead' => 0,
'looklegs' => 0,
'lookbody' => $cnf['lookBody'], /* STARTER OUTFITS */
'lookfeet' => $cnf['lookFeet'],
'lookhead' => $cnf['lookHead'],
'looklegs' => $cnf['lookLegs'],
'looktype' => $outfit_type,
'lookaddons' => 0,
'maglevel' => 0,

View File

@ -9,6 +9,7 @@ if ($array) {
<table id="onlinelistTable" class="table table-striped table-hover">
<tr class="yellow">
<th>Name:</th>
<th>Guild:</th>
<th>Level:</th>
<th>Vocation:</th>
</tr>
@ -17,6 +18,7 @@ if ($array) {
$url = url("characterprofile.php?name=". $value['name']);
echo '<tr class="special" onclick="javascript:window.location.href=\'' . $url . '\'">';
echo '<td><a href="characterprofile.php?name='. $value['name'] .'">'. $value['name'] .'</a></td>';
if (!empty($value['gname'])) echo '<td><a href="guilds.php?name='. $value['gname'] .'">'. $value['gname'] .'</a></td>'; else echo '<td></td>';
echo '<td>'. $value['level'] .'</td>';
echo '<td>'. vocation_id_to_name($value['vocation']) .'</td>';
echo '</tr>';