I know I dont understand it. Trying to.
This is what I got now.
PHP Code:
public function getTopAbyss(){
// Initialize Array and Kills Structure
temp.guildzname = getGuildList();
// Loop and Display Kills
for (temp.g: temp.guildzname) {
temp.kills = this.guilds.(@temp.g).kills;
}
temp.guildzname.sortbyvalue("kills", null, true);
temp.data = temp.g @ "'s kills: " @ temp.kills;
echo(temp.guildzname);
}
that gives a random order. If i try to
PHP Code:
echo(temp.guildzname[0]);
it comes up empty.
Also tried temp.g.kills like in ur last example, did the exact same thing.
I get the concept, pull all guild names, run those to pull all kills, sort guild names, display. Its just not workin for me. :/