Files
CHOMPStation2/code/modules/admin/ckey_vr.dm
CHOMPStation2StaffMirrorBot 2c9453b5c3 [MIRROR] var/global/list -> GLOB. conversion (#11193)
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-07-16 00:24:42 +02:00

21 lines
842 B
Plaintext

// Command to set the ckey of a mob without requiring VV permission
/client/proc/SetCKey(var/mob/M in GLOB.mob_list)
set category = "Admin.Game"
set name = "Set CKey"
set desc = "Mob to teleport"
if(!src.holder)
to_chat(src, "Only administrators may use this command.")
return
var/list/keys = list()
for(var/mob/playerMob in GLOB.player_list)
keys += playerMob.client
var/client/selection = tgui_input_list(usr, "Please, select a player!", "Set CKey", sortKey(keys))
if(!selection || !istype(selection))
return
log_admin("[key_name(usr)] set ckey of [key_name(M)] to [selection]")
message_admins("[key_name_admin(usr)] set ckey of [key_name_admin(M)] to [selection]", 1)
M.ckey = selection.ckey
feedback_add_details("admin_verb","SCK") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!