See PR comment
This commit is contained in:
Kyep
2016-07-30 19:58:04 -07:00
parent 96d3601bfc
commit 8a4dc07f70
13 changed files with 206 additions and 95 deletions
+1
View File
@@ -43,6 +43,7 @@ var/global/nologevent = 0
if(M.client)
body += " played by <b>[M.client]</b> "
body += "\[<A href='?_src_=holder;editrights=rank;ckey=[M.ckey]'>[M.client.holder ? M.client.holder.rank : "Player"]</A>\]"
body += " XP: <A href='?_src_=holder;getexpwindow=\ref[M]'>" + M.client.get_exp_general() + "</a> "
if(istype(M, /mob/new_player))
body += " <B>Hasn't Entered Game</B> "
+2 -1
View File
@@ -2,7 +2,8 @@
var/list/admin_verbs_default = list(
/client/proc/deadmin_self, /*destroys our own admin datum so we can play as a regular player*/
/client/proc/hide_verbs, /*hides all our adminverbs*/
/client/proc/cmd_mentor_check_new_players
/client/proc/cmd_mentor_check_new_players,
/client/proc/cmd_mentor_check_player_exp
)
var/list/admin_verbs_admin = list(
/client/proc/check_antagonists, /*shows all antags*/
+6
View File
@@ -2016,6 +2016,12 @@
fax_panel(usr)
else if(href_list["getexpwindow"])
if(!check_rights(R_MENTOR|R_MOD|R_ADMIN)) return
var/mob/M = locate(href_list["getexpwindow"])
usr.client.cmd_show_exp_panel(M.client)
else if(href_list["jumpto"])
if(!check_rights(R_ADMIN)) return