Custom Roster Usergroup order - Help

RAD

New Member
Hi,

I have managed to set up a customizable roster on my forum, but I wish to change the order in which the usergroups show on the page.

At the moment they are alphabetical:
Code:
if ($groupsort == '') { $groupsort = 'title'; }

and I know I can make them list by user group id:

Code:
if ($groupsort == '') { $groupsort = 'usergroupid'; }

But neither of these options give me the order I want.

My Question:

Is it possible to simply change the usergroup id? if so where?

or is there another way I can alter the php to show them in an order I want?

Thanks
 
Top