mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 20:59:56 +01:00
89fb9871e0
* next set of admin verbs * invoke * . * a few more * few more * . * few more * some more * move thos * next * some debug verbs * axe the old mod loading * del * is local for some verbs * few more * . * . * . * Add local narrate. * Fixes this Needed to be user.mob, since user is the client and usr was the old user.mob * fixes * . * . * . * . --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
97 lines
4.0 KiB
Plaintext
97 lines
4.0 KiB
Plaintext
//admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless
|
|
GLOBAL_LIST_INIT(admin_verbs_admin, list(
|
|
/datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement,
|
|
/datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange,
|
|
/client/proc/hide_verbs, //hides all our adminverbs,
|
|
/client/proc/hide_most_verbs, //hides all our hideable adminverbs,
|
|
/client/proc/jumptocoord, //we ghost and jump to a coordinate,
|
|
/client/proc/Getmob, //teleports a mob to our location,
|
|
/client/proc/Getkey, //teleports a mob with a certain ckey to our location,
|
|
/client/proc/Jump,
|
|
/client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey,
|
|
/client/proc/jumptomob, //allows us to jump to a specific mob,
|
|
/client/proc/check_ai_laws, //shows AI and borg laws,
|
|
/client/proc/rename_silicon, //properly renames silicons,
|
|
/client/proc/modify_robot,
|
|
/client/proc/free_slot, //frees slot for chosen job,
|
|
/client/proc/cmd_admin_change_custom_event,
|
|
/client/proc/toggleghostwriters,
|
|
/client/proc/toggledrones,
|
|
/client/proc/man_up,
|
|
/client/proc/global_man_up,
|
|
/client/proc/response_team, // Response Teams admin verb,
|
|
/client/proc/trader_ship, // Trader ship admin verb,
|
|
/client/proc/aooc,
|
|
/client/proc/change_security_level,
|
|
/datum/admins/proc/set_uplink,
|
|
/client/proc/delbook,
|
|
/client/proc/start_vote,
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(admin_verbs_debug, list(
|
|
/client/proc/kill_air,
|
|
/client/proc/air_report,
|
|
/client/proc/reload_admins,
|
|
/client/proc/print_random_map,
|
|
/client/proc/create_random_map,
|
|
/client/proc/apply_random_map,
|
|
/client/proc/overlay_random_map,
|
|
/client/proc/delete_random_map,
|
|
/client/proc/show_plant_genes,
|
|
/client/proc/Jump,
|
|
/client/proc/jumptomob,
|
|
/client/proc/jumptocoord,
|
|
/client/proc/hide_verbs, //hides all our adminverbs,
|
|
/client/proc/hide_most_verbs, //hides all our hideable adminverbs,
|
|
/datum/admins/proc/set_uplink,
|
|
/client/proc/stop_sounds,
|
|
))
|
|
|
|
//verbs which can be hidden - needs work
|
|
GLOBAL_LIST_INIT(admin_verbs_hideable, list(
|
|
/client/proc/reload_admins,
|
|
/client/proc/kill_air,
|
|
/client/proc/air_report,
|
|
/datum/admins/proc/set_uplink,
|
|
/client/proc/stop_sounds
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(admin_verbs_mod, list(
|
|
/client/proc/hide_verbs, //hides all our adminverbs,
|
|
/client/proc/hide_most_verbs, //hides all our hideable adminverbs,
|
|
/client/proc/aooc,
|
|
/client/proc/start_vote
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(admin_verbs_event_manager, list(
|
|
/client/proc/hide_verbs, //hides all our adminverbs,
|
|
/client/proc/hide_most_verbs, //hides all our hideable adminverbs,
|
|
/client/proc/aooc,
|
|
/client/proc/Jump,
|
|
/client/proc/jumptomob,
|
|
/client/proc/jumptocoord,
|
|
/datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement,
|
|
/datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange,
|
|
/client/proc/jumptocoord, //we ghost and jump to a coordinate,
|
|
/client/proc/Getmob, //teleports a mob to our location,
|
|
/client/proc/Getkey, //teleports a mob with a certain ckey to our location,
|
|
/client/proc/Jump,
|
|
/client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey,
|
|
/client/proc/jumptomob, //allows us to jump to a specific mob,
|
|
/client/proc/check_ai_laws, //shows AI and borg laws,
|
|
/client/proc/rename_silicon, //properly renames silicons,
|
|
/client/proc/modify_robot,
|
|
/client/proc/free_slot, //frees slot for chosen job,
|
|
/client/proc/cmd_admin_change_custom_event,
|
|
/client/proc/toggleghostwriters,
|
|
/client/proc/man_up,
|
|
/client/proc/global_man_up,
|
|
/client/proc/response_team, // Response Teams admin verb,
|
|
/client/proc/trader_ship, // Trader ship admin verb,
|
|
/client/proc/aooc,
|
|
/client/proc/change_security_level,
|
|
/client/proc/start_vote,
|
|
/client/proc/add_hidden_area,
|
|
/client/proc/remove_hidden_area,
|
|
))
|