mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-02 13:17:11 +01:00
Remove setting: outfit_images_wrong_looktypes
Is obsolete, the bug doesn't exist in latest outfit images
This commit is contained in:
@@ -21,7 +21,6 @@ $deprecatedConfig = [
|
|||||||
'visitors_counter_ttl',
|
'visitors_counter_ttl',
|
||||||
'views_counter',
|
'views_counter',
|
||||||
'outfit_images_url',
|
'outfit_images_url',
|
||||||
'outfit_images_wrong_looktypes',
|
|
||||||
'item_images_url',
|
'item_images_url',
|
||||||
'account_country',
|
'account_country',
|
||||||
'towns',
|
'towns',
|
||||||
|
|||||||
@@ -249,7 +249,7 @@ foreach($highscores as $id => &$player)
|
|||||||
|
|
||||||
$player['link'] = getPlayerLink($player['name'], false);
|
$player['link'] = getPlayerLink($player['name'], false);
|
||||||
$player['flag'] = getFlagImage($player['country']);
|
$player['flag'] = getFlagImage($player['country']);
|
||||||
$player['outfit'] = '<img style="position:absolute;margin-top:' . (in_array($player['looktype'], setting('core.outfit_images_wrong_looktypes')) ? '-15px;margin-left:5px' : '-45px;margin-left:-25px') . ';" src="' . $player['outfit_url'] . '" alt="" />';
|
$player['outfit'] = '<img style="position:absolute;margin-top:-50px;margin-left:-30px" src="' . $player['outfit_url'] . '" alt="" />';
|
||||||
|
|
||||||
if ($skill != POT::SKILL__LEVEL) {
|
if ($skill != POT::SKILL__LEVEL) {
|
||||||
if (isset($lastValue) && $lastValue == $player['value']) {
|
if (isset($lastValue) && $lastValue == $player['value']) {
|
||||||
|
|||||||
@@ -1482,17 +1482,6 @@ Sent by MyAAC,<br/>
|
|||||||
'desc' => 'Set to animoutfit.php for animated outfit',
|
'desc' => 'Set to animoutfit.php for animated outfit',
|
||||||
'default' => 'https://outfit-images.ots.me/latest/outfit.php',
|
'default' => 'https://outfit-images.ots.me/latest/outfit.php',
|
||||||
],
|
],
|
||||||
'outfit_images_wrong_looktypes' => [
|
|
||||||
'name' => 'Outfit Images Wrong Looktypes',
|
|
||||||
'type' => 'text',
|
|
||||||
'desc' => 'This looktypes needs to have different margin-top and margin-left because they are wrong positioned',
|
|
||||||
'default' => '75, 126, 127, 266, 302',
|
|
||||||
'callbacks' => [
|
|
||||||
'get' => function ($value) {
|
|
||||||
return array_map('trim', explode(',', $value));
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
'type' => 'section',
|
'type' => 'section',
|
||||||
'title' => 'Monster Images'
|
'title' => 'Monster Images'
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<table border="0" cellspacing="1" cellpadding="4" width="100%">
|
<table border="0" cellspacing="1" cellpadding="4" width="100%">
|
||||||
{% if config.characters.outfit %}
|
{% if config.characters.outfit %}
|
||||||
<div style="width:64px;height:64px;border:2px solid #F1E0C6; border-radius:50px; padding:13px; margin-top:38px;margin-left:376px;position:absolute;"><img style="margin-left:{% if player.getLookType() in setting('core.outfit_images_wrong_looktypes') %}-0px;margin-top:-0px;width:64px;height:64px;{% else %}-60px;margin-top:-60px;width:128px;height:128px;{% endif %}" src="{{ outfit }}" alt="player outfit"/></div>
|
<div style="width:64px;height:64px;border:2px solid #F1E0C6; border-radius:50px; padding:13px; margin-top:38px;margin-left:376px;position:absolute;"><img style="margin-left:-60px;margin-top:-60px;width:128px;height:128px;" src="{{ outfit }}" alt="player outfit"/></div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<tr bgcolor="{{ config.vdarkborder }}">
|
<tr bgcolor="{{ config.vdarkborder }}">
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ Page: {{ links_to_pages|raw }}<br/>
|
|||||||
{% set i = i + 1 %}
|
{% set i = i + 1 %}
|
||||||
<td valign="top">{{ post.player_link|raw }}<br/>
|
<td valign="top">{{ post.player_link|raw }}<br/>
|
||||||
{% if post.outfit is defined %}
|
{% if post.outfit is defined %}
|
||||||
<img style="margin-left:{% if post.player.getLookType() in setting('core.outfit_images_wrong_looktypes') %}-0px;margin-top:-0px;width:64px;height:64px;{% else %}-60px;margin-top:-60px;width:128px;height:128px;{% endif %}" src="{{ post.outfit }}" alt="player outfit"/>
|
<img style="margin-left:-60px;margin-top:-60px;width:128px;height:128px;" src="{{ post.outfit }}" alt="player outfit"/>
|
||||||
<br />
|
<br />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span style="font-size: 10px">
|
<span style="font-size: 10px">
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
{% if setting('core.team_outfit') %}
|
{% if setting('core.team_outfit') %}
|
||||||
<td>
|
<td>
|
||||||
<img style="position: absolute; margin-top: {% if member.player.looktype in setting('core.outfit_images_wrong_looktypes') %}-16px;margin-left:-0px;{% else %} -45px; margin-left: -30px;{% endif %}" src="{{ member.outfit }}" alt="player outfit"/>
|
<img style="position: absolute; margin-top: -50px; margin-left: -30px;" src="{{ member.outfit }}" alt="player outfit"/>
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
<tr bgcolor="{{ getStyle(i) }}" style="height: 32px;">
|
<tr bgcolor="{{ getStyle(i) }}" style="height: 32px;">
|
||||||
{% if setting('core.team_outfit') %}
|
{% if setting('core.team_outfit') %}
|
||||||
<td>
|
<td>
|
||||||
<img style="position: absolute; margin-top: {% if member.player.looktype in setting('core.outfit_images_wrong_looktypes') %}-16px;margin-left:-0px;{% else %} -45px; margin-left: -30px;{% endif %}" src="{{ member.outfit }}" alt="player outfit"/>
|
<img style="position: absolute; margin-top: -50px; margin-left: -30px;" src="{{ member.outfit }}" alt="player outfit"/>
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
{% for player in topPlayers %}
|
{% for player in topPlayers %}
|
||||||
<div style="text-align:left"><a href="{{ getPlayerLink(player['name'], false) }} " class="topfont {% if player['online'] %}online{% else %}offline{% endif %}">
|
<div style="text-align:left"><a href="{{ getPlayerLink(player['name'], false) }} " class="topfont {% if player['online'] %}online{% else %}offline{% endif %}">
|
||||||
{% if setting('core.online_outfit') %}
|
{% if setting('core.online_outfit') %}
|
||||||
<img style="position:absolute;margin-top:{% if player.looktype in setting('core.outfit_images_wrong_looktypes') %}-20px;margin-left:-0px;{% else %}-45px;margin-left:-25px;{% endif %}" src="{{ player.outfit }}" alt="player outfit"/>
|
<img style="position:absolute;margin-top:-45px;margin-left:-25px;" src="{{ player.outfit }}" alt="player outfit"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span style="color: #CCC; margin-left: 40px">{{ player['rank'] }} - </span>
|
<span style="color: #CCC; margin-left: 40px">{{ player['rank'] }} - </span>
|
||||||
{{ player['name'] }}
|
{{ player['name'] }}
|
||||||
|
|||||||
Reference in New Issue
Block a user