My problem still isnt fixed. now its only showing the first this.guilds.guildname.kills value, and not the others in the gui.
PHP Code:
public function getTopAbyss(){
// Initialize Array and Kills Structure
temp.guildzname = getGuildList();
temp.data = "";
// Loop and Display Kills
for (temp.g: temp.guildzname) {
temp.kills = this.guilds.(@temp.g).kills;
temp.data.sortbyvalue("kills", null, false);
temp.data = temp.g @ "'s kills: " @ temp.kills;
return temp.data;
}
}
And it's not sorting correctly. Its the same as if I didnt include the sortbyvalue at all.