ID:162647
 
mob/verb/key_test(k as key)
src << "[k]"

// Won't do crap.
Intesting... The list that code pulls up is your saved key list. (it brings up all of my keys that I login with)


mob/verb/key_test(mob/k in world)
src << "[k.key]"


shows the key of someone loged in.
http://developer.byond.com/docs/ref/info.html#/verb/ arguments

key //a key from the user's BYOND key file
In response to Garthor
So? Is it a wild card or something?