Missing VGWS API calls.

This commit is contained in:
Rob Nelson
2014-04-09 12:15:18 -07:00
parent aa2a9856a5
commit 7f73e4459e
2 changed files with 15 additions and 5 deletions

View File

@@ -234,7 +234,8 @@ var/global/floorIsLava = 0
return
checkSessionKey()
var/cid = input("Type computer ID", "CID", 0)
usr << link("[config.vgws_base_url]/index.php/rapsheet/?s=[sessKey]&cid=[cid]")
usr << link(getVGPanel("rapsheet",admin=1,query=list("cid"=cid)))
//usr << link("[config.vgws_base_url]/index.php/rapsheet/?s=[sessKey]&cid=[cid]")
return
/datum/admins/proc/checkCKEY()
@@ -249,7 +250,8 @@ var/global/floorIsLava = 0
return
checkSessionKey()
var/ckey = lowertext(input("Type player ckey", "ckey", null) as text | null)
usr << link("[config.vgws_base_url]/index.php/rapsheet/?s=[sessKey]&ckey=[ckey]")
usr << link(getVGPanel("rapsheet",admin=1,query=list("ckey"=ckey)))
//usr << link("[config.vgws_base_url]/index.php/rapsheet/?s=[sessKey]&ckey=[ckey]")
return
/datum/admins/proc/PlayerNotesPage(page)