I saw that the MadeBy addon uses a function to make the list smaller, and longer.
Open GemsDisplay/guild/index.php
Find :
- Code: Select all
$craftSeperator = false;
while($row = $roster->db->fetch($result))
{
if ($craftSeperator == true)
$craftName.= ", ";
$craftName.=$row['name'];
$craftSeperator = true;
}
replace it with :
- Code: Select all
$break_counter = 0;
$craftSeperator = false;
while($row = $roster->db->fetch($result))
{
if ($break_counter == 3)
{
$craftName .= '<br />';
$break_counter = 0;
$craftSeperator = false;
}
$break_counter++;
if ($craftSeperator == true)
$craftName.= ", ";
$craftName.=$row['name'];
$craftSeperator = true;
}
Result : http://www.papy-team.fr/roster/index.ph ... play&a=g:1