Why to show only blue, yellow, red and meta?.
/index.php
foreach($roster->locale->act['GemType'] as $keyColor=>$couleur)
{
if (($keyColor == 'blue') || ($keyColor == 'red') || ($keyColor == 'yellow') || ($keyColor == 'meta'))
{
When we can show all them...
foreach($roster->locale->act['GemType'] as $keyColor=>$couleur)
{
if (($keyColor == 'blue') || ($keyColor == 'red') || ($keyColor == 'yellow') || ($keyColor == 'meta') || ($keyColor == 'green') || ($keyColor == 'purple') || ($keyColor == 'orange'))
{
Second:
Isn't it posible to don't show the box when any players have gems of this colour. It would be better without show the boxes empty and in the case where we haven't gems, show a text "we haven't gems".
Third:
/install.def.php
Can you localize the next lines?
var $fullname = 'Gems Display';
var $description = 'Display Gemmes by slot.';
var $credits = array(
array( "name"=> "Titan99 and Tyradil",
"info"=> "Display Gemmes by slot."),
);
The rest of addons are translated and it appears in english in the instalation addons menu.
Fourth:
The version is...
- Code: Select all
var $version = '2.0.0-0';
or is?
- Code: Select all
var $version = '2.0.0.0';
That's all