View Full Version : Trustee accounts arrangement.
dtowns
02-17-2008, 05:57 AM
Even though accounts that belong to a certain RGA are arranged by level on http://server.outwar.com/accounts.php, trusteed accounts are still arranged alphabetically by name.
Justin can you please order trustees by level too ? ...
PS: Justin if you read this, I'd like to have a word with you, if you got some time for me :p :)
Leave me a msg via forum.
abandit99
02-17-2008, 06:14 AM
i think its fine alphabetically. when your trying to join fast u want to be able to find the right accounts fast. it would be confusing if it was arranged in level.
Domination
02-17-2008, 06:20 AM
Is he talking about the drop down box in the game or the list in the account page? if so then ya i'd like it by level on the trustee/account page too. But if its about the drop down box in the game itself then it would be confuing on everyone.
dtowns
02-17-2008, 06:22 AM
it's annoying having them arranged differently .. main accs by level, trustee accs by name.
arrange them all by level on accounts.php, and u can find them all alphabetically ordered on the drop-down menu with accs.
So you will have both options.
Domination
02-17-2008, 06:24 AM
To bad we don't have the opinion to pick which for ourselves.
dtowns
02-17-2008, 06:26 AM
ordered by level on accounts.php
and ordered alphabetically by name on the drop-down menu would be perfect.
PS: Domination, stop using that font, it's unreadable on the white forum theme.
OMFGsPaZz
02-17-2008, 07:10 AM
good idea dtowns...i dont like searching through a split to find a strong account...id rather just have top lvs at the top so i can join the one after another.
and yea ur text is pretty hard to read lol
Domination
02-17-2008, 07:14 AM
aww it looks good on black background >:\
Elwood
02-17-2008, 01:58 PM
its a great idea, but also makes it alot faster to kill the higher gods that spawn..
Not sure if an admins would go for it, but all in all its an excellent idea
Sparda1234
02-17-2008, 02:39 PM
It wouldnt be hard to add an rga preferences page with how everything is orderd ect.
I would personally like them to add that insted of just change how everything is orderd themselves.
xHuNt3r
02-18-2008, 11:26 AM
alphabetically is just perfect. stop whining -,- make yourself bookmarks if you want them sorted by levels
dtowns
02-18-2008, 12:28 PM
uuh .. bookmarks .. what are those ? sorry, i am noob...
did it look like i'm whining ? how about u start explaining and giving arguments before saying something is perfect.
xHuNt3r
02-18-2008, 12:39 PM
well, firefox allows you bookmark a specific link, save it in a bar. you can manage those bookmars however you like, in what order you want. alphabetical arangemet is good in fining chars in a big list of trustee...
dtowns
02-18-2008, 12:47 PM
.. u didn't realise that was sarcasm ?
xHuNt3r
02-18-2008, 12:48 PM
then why on earth did you started this thread when you know how to arrange them how you want? -.-
dtowns
02-18-2008, 12:52 PM
well this is when u realise that maybe u didn't think of all posibilities .. don't u ?
seeing that u did not think of all possible explanations, don't act so smart when replying ...
k thx bai
xFelix
02-19-2008, 09:03 AM
You guys know it take about 1-5 lines of additional code to implement something called sorting accounts...
On top of the account there the thing caled a key to what youre looking @
Name Level
click one itll sort by name click the other itll sort by level...
kinda like this:
accounts.php
<?php
$sort=$_GET['sort'];
/*
This is not guaranteed to work on outwar seeing as how I don't know the database structure.
Feel free to implement this code. :)
*/
if ($sort == "name")
{
$getaccts="SELECT * from ow_accounts order by name desc";
}
elseif ($sort == "level")
{
$getaccts="SELECT * from ow_accounts order by level desc";
}
else
{
$getaccts="SELECT * from ow_accounts order by level desc";
}
$getaccts=mysql_query($getaccts) or die("Could not fetch accounts");
while($acct=mysql_fetch_array($getaccts))
{
print "blah this is where you dump all the stuff we see...";
}
?>
Erm.. have a nice day? :p
vBulletin® v3.6.8, Copyright ©2000-2012, Jelsoft Enterprises Ltd.