Wind from the PP

Winding people from the player panel
This commit is contained in:
SoundScopes
2014-10-15 17:33:07 +01:00
parent 22ab226a2b
commit 1b9b6d2d19
2 changed files with 17 additions and 1 deletions
+3 -1
View File
@@ -81,7 +81,9 @@
body += "<a href='?src=\ref[src];traitor="+ref+"'>TP</a> - "
body += "<a href='?src=\ref[usr];priv_msg=\ref"+ref+"'>PM</a> - "
body += "<a href='?src=\ref[src];subtlemessage="+ref+"'>SM</a> - "
body += "<a href='?src=\ref[src];adminplayerobservejump="+ref+"'>JMP</a><br>"
body += "<a href='?src=\ref[src];adminplayerobservejump="+ref+"'>JMP</a> - "
body += "<a href='?src=\ref[src];admin_wind_player="+ref+"'>WIND</a><br>"
if(antagonist > 0)
body += "<font size='2'><a href='?src=\ref[src];check_antagonist=1'><font color='red'><b>Antagonist</b></font></a></font>";
+14
View File
@@ -2675,3 +2675,17 @@
if("list")
PlayerNotesPage(text2num(href_list["index"]))
return
if(href_list["admin_wind_player"])
var/mob/M = locate(href_list["admin_wind_player"])
if(!ismob(M))
usr << "This can only be used on instances of type /mob"
return
if(!M.ckey) //sanity
usr << "This mob has no ckey"
return
M.weakened = 500
return