Staff Viewing Verb in Developer Help
|
|
Code:
MGM_GMs_list() set desc = "() Read the list of all GMs' keys" set category = "GM" usr<<"<FONT COLOR=red>Server information</FONT>: Ingame made GM's and Admins" if(GMs.len) usr << "<b>GMs:</b>" for(var/X in GMs) usr << "--> [X]" if(MGMs.len) usr << "<b>Admin Lvl 1:</b>" for(var/X in MGMs) usr << "--> [X]" if(Admins.len) usr << "<b>Admin Lvl 2:</b>" for(var/X in Admins) usr << "--> [X]" if(!GMs.len && !Admins.len) usr << "There are no recorded GMs or Admins."
|
Problem description:
Excuse me but I need some help, I cant get this to work properly...What im trying to do is get it to say
GMs:
-->(GM Staff)
-->(GM Staff)
Admin Lvl 1:
-->(Admin Staff)
-->(Admin Staff)
and so on...
but when go on and click 'MGM GMs list' it only shows the GMs. Thankyou for your time :).
|