|
|
|
|
@@ -1,102 +1,101 @@
|
|
|
|
|
//admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless
|
|
|
|
|
var/list/admin_verbs_default = list(
|
|
|
|
|
/datum/admins/proc/show_player_panel, /*shows an interface for individual players, with various links (links require additional flags*/
|
|
|
|
|
/datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags,
|
|
|
|
|
/client/proc/player_panel,
|
|
|
|
|
/client/proc/toggleadminhelpsound, /*toggles whether we hear a sound when adminhelps/PMs are used*/
|
|
|
|
|
/client/proc/deadmin_self, /*destroys our own admin datum so we can play as a regular player*/
|
|
|
|
|
/client/proc/hide_verbs, /*hides all our adminverbs*/
|
|
|
|
|
/client/proc/hide_most_verbs, /*hides all our hideable adminverbs*/
|
|
|
|
|
/client/proc/debug_variables, /*allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify*/
|
|
|
|
|
// /client/proc/check_antagonists, /*shows all antags*/
|
|
|
|
|
/client/proc/deadmin_self, //destroys our own admin datum so we can play as a regular player,
|
|
|
|
|
/client/proc/hide_verbs, //hides all our adminverbs,
|
|
|
|
|
/client/proc/hide_most_verbs, //hides all our hideable adminverbs,
|
|
|
|
|
/client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify,
|
|
|
|
|
// /client/proc/check_antagonists, //shows all antags,
|
|
|
|
|
// /client/proc/cmd_mod_say,
|
|
|
|
|
/client/proc/cmd_mentor_check_new_players
|
|
|
|
|
// /client/proc/deadchat /*toggles deadchat on/off*/
|
|
|
|
|
/client/proc/cmd_mentor_check_new_players,
|
|
|
|
|
// /client/proc/deadchat //toggles deadchat on/off,
|
|
|
|
|
// /client/proc/toggle_ahelp_sound,
|
|
|
|
|
)
|
|
|
|
|
var/list/admin_verbs_admin = list(
|
|
|
|
|
/client/proc/player_panel_new, /*shows an interface for all players, with links to various panels*/
|
|
|
|
|
/client/proc/player_panel_new, //shows an interface for all players, with links to various panels,
|
|
|
|
|
/datum/admins/proc/set_tcrystals,
|
|
|
|
|
/datum/admins/proc/add_tcrystals,
|
|
|
|
|
/client/proc/invisimin, /*allows our mob to go invisible/visible*/
|
|
|
|
|
// /datum/admins/proc/show_traitor_panel, /*interface which shows a mob's mind*/ -Removed due to rare practical use. Moved to debug verbs ~Errorage
|
|
|
|
|
/datum/admins/proc/show_game_mode, /*Configuration window for the current game mode.*/
|
|
|
|
|
/datum/admins/proc/force_mode_latespawn, /*Force the mode to try a latespawn proc*/
|
|
|
|
|
/datum/admins/proc/force_antag_latespawn, /*Force a specific template to try a latespawn proc*/
|
|
|
|
|
/datum/admins/proc/toggleenter, /*toggles whether people can join the current game*/
|
|
|
|
|
/datum/admins/proc/toggleguests, /*toggles whether guests can join the current game*/
|
|
|
|
|
/datum/admins/proc/announce, /*priority announce something to all clients.*/
|
|
|
|
|
/client/proc/colorooc, /*allows us to set a custom colour for everythign we say in ooc*/
|
|
|
|
|
/client/proc/admin_ghost, /*allows us to ghost/reenter body at will*/
|
|
|
|
|
/client/proc/toggle_view_range, /*changes how far we can see*/
|
|
|
|
|
/datum/admins/proc/view_txt_log, /*shows the server log (diary) for today*/
|
|
|
|
|
/datum/admins/proc/view_atk_log, /*shows the server combat-log, doesn't do anything presently*/
|
|
|
|
|
/client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/
|
|
|
|
|
/client/proc/cmd_admin_pm_panel, /*admin-pm list*/
|
|
|
|
|
/client/proc/cmd_admin_subtle_message, /*send an message to somebody as a 'voice in their head'*/
|
|
|
|
|
/client/proc/cmd_admin_delete, /*delete an instance/object/mob/etc*/
|
|
|
|
|
/client/proc/cmd_admin_check_contents, /*displays the contents of an instance*/
|
|
|
|
|
/datum/admins/proc/access_news_network, /*allows access of newscasters*/
|
|
|
|
|
/client/proc/giveruntimelog, /*allows us to give access to runtime logs to somebody*/
|
|
|
|
|
/client/proc/getserverlog, /*allows us to fetch server logs (diary) for other days*/
|
|
|
|
|
/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/sendmob, /*sends a mob somewhere*/ -Removed due to it needing two sorting procs to work, which were executed every time an admin right-clicked. ~Errorage
|
|
|
|
|
/client/proc/invisimin, //allows our mob to go invisible/visible,
|
|
|
|
|
// /datum/admins/proc/show_traitor_panel, //interface which shows a mob's mind -Removed due to rare practical use. Moved to debug verbs ~Errorage,
|
|
|
|
|
/datum/admins/proc/show_game_mode, //Configuration window for the current game mode.,
|
|
|
|
|
/datum/admins/proc/force_mode_latespawn, //Force the mode to try a latespawn proc,
|
|
|
|
|
/datum/admins/proc/force_antag_latespawn, //Force a specific template to try a latespawn proc,
|
|
|
|
|
/datum/admins/proc/toggleenter, //toggles whether people can join the current game,
|
|
|
|
|
/datum/admins/proc/toggleguests, //toggles whether guests can join the current game,
|
|
|
|
|
/datum/admins/proc/announce, //priority announce something to all clients.,
|
|
|
|
|
/client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc,
|
|
|
|
|
/client/proc/admin_ghost, //allows us to ghost/reenter body at will,
|
|
|
|
|
/client/proc/toggle_view_range, //changes how far we can see,
|
|
|
|
|
/datum/admins/proc/view_txt_log, //shows the server log (diary) for today,
|
|
|
|
|
/datum/admins/proc/view_atk_log, //shows the server combat-log, doesn't do anything presently,
|
|
|
|
|
/client/proc/cmd_admin_pm_context, //right-click adminPM interface,
|
|
|
|
|
/client/proc/cmd_admin_pm_panel, //admin-pm list,
|
|
|
|
|
/client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head',
|
|
|
|
|
/client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
|
|
|
|
|
/client/proc/cmd_admin_check_contents, //displays the contents of an instance,
|
|
|
|
|
/datum/admins/proc/access_news_network, //allows access of newscasters,
|
|
|
|
|
/client/proc/giveruntimelog, //allows us to give access to runtime logs to somebody,
|
|
|
|
|
/client/proc/getserverlog, //allows us to fetch server logs (diary) for other days,
|
|
|
|
|
/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/sendmob, //sends a mob somewhere, -Removed due to it needing two sorting procs to work, which were executed every time an admin right-clicked. ~Errorage,
|
|
|
|
|
/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/jumptoturf, /*allows us to jump to a specific turf*/
|
|
|
|
|
/client/proc/admin_call_shuttle, /*allows us to call the emergency shuttle*/
|
|
|
|
|
/client/proc/admin_cancel_shuttle, /*allows us to cancel the emergency shuttle, sending it back to centcomm*/
|
|
|
|
|
/client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/
|
|
|
|
|
/client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/
|
|
|
|
|
/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/jumptoturf, //allows us to jump to a specific turf,
|
|
|
|
|
/client/proc/admin_call_shuttle, //allows us to call the emergency shuttle,
|
|
|
|
|
/client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to centcomm,
|
|
|
|
|
/client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text,
|
|
|
|
|
/client/proc/cmd_admin_world_narrate, //sends text to all players with no padding,
|
|
|
|
|
/client/proc/cmd_admin_create_centcom_report,
|
|
|
|
|
/client/proc/check_words, /*displays cult-words*/
|
|
|
|
|
/client/proc/check_ai_laws, /*shows AI and borg laws*/
|
|
|
|
|
/client/proc/rename_silicon, /*properly renames silicons*/
|
|
|
|
|
/client/proc/manage_silicon_laws, /* Allows viewing and editing silicon laws. */
|
|
|
|
|
/client/proc/check_words, //displays cult-words,
|
|
|
|
|
/client/proc/check_ai_laws, //shows AI and borg laws,
|
|
|
|
|
/client/proc/rename_silicon, //properly renames silicons,
|
|
|
|
|
/client/proc/manage_silicon_laws, // Allows viewing and editing silicon laws. ,
|
|
|
|
|
/client/proc/check_antagonists,
|
|
|
|
|
/client/proc/admin_memo, /*admin memo system. show/delete/write. +SERVER needed to delete admin memos of others*/
|
|
|
|
|
/client/proc/dsay, /*talk in deadchat using our ckey/fakekey*/
|
|
|
|
|
/client/proc/toggleprayers, /*toggles prayers on/off*/
|
|
|
|
|
// /client/proc/toggle_hear_deadcast, /*toggles whether we hear deadchat*/
|
|
|
|
|
/client/proc/toggle_hear_radio, /*toggles whether we hear the radio*/
|
|
|
|
|
/client/proc/investigate_show, /*various admintools for investigation. Such as a singulo grief-log*/
|
|
|
|
|
/client/proc/admin_memo, //admin memo system. show/delete/write. +SERVER needed to delete admin memos of others,
|
|
|
|
|
/client/proc/dsay, //talk in deadchat using our ckey/fakekey,
|
|
|
|
|
// /client/proc/toggle_hear_deadcast, //toggles whether we hear deadchat,
|
|
|
|
|
/client/proc/investigate_show, //various admintools for investigation. Such as a singulo grief-log,
|
|
|
|
|
/client/proc/secrets,
|
|
|
|
|
/datum/admins/proc/toggleooc, /*toggles ooc on/off for everyone*/
|
|
|
|
|
/datum/admins/proc/togglelooc, /*toggles looc on/off for everyone*/
|
|
|
|
|
/datum/admins/proc/toggleoocdead, /*toggles ooc on/off for everyone who is dead*/
|
|
|
|
|
/datum/admins/proc/togglehubvisibility, /*toggles visibility on the BYOND Hub.*/
|
|
|
|
|
/datum/admins/proc/toggledsay, /*toggles dsay on/off for everyone*/
|
|
|
|
|
/client/proc/game_panel, /*game panel, allows to change game-mode etc*/
|
|
|
|
|
/client/proc/cmd_admin_say, /*admin-only ooc chat*/
|
|
|
|
|
/datum/admins/proc/toggleooc, //toggles ooc on/off for everyone,
|
|
|
|
|
/datum/admins/proc/togglelooc, //toggles looc on/off for everyone,
|
|
|
|
|
/datum/admins/proc/toggleoocdead, //toggles ooc on/off for everyone who is dead,
|
|
|
|
|
/datum/admins/proc/togglehubvisibility, //toggles visibility on the BYOND Hub.,
|
|
|
|
|
/datum/admins/proc/toggledsay, //toggles dsay on/off for everyone,
|
|
|
|
|
/client/proc/game_panel, //game panel, allows to change game-mode etc,
|
|
|
|
|
/client/proc/cmd_admin_say, //admin-only ooc chat,
|
|
|
|
|
/datum/admins/proc/PlayerNotes,
|
|
|
|
|
/client/proc/cmd_mod_say,
|
|
|
|
|
/datum/admins/proc/show_player_info,
|
|
|
|
|
/client/proc/free_slot, /*frees slot for chosen job*/
|
|
|
|
|
/client/proc/free_slot, //frees slot for chosen job,
|
|
|
|
|
/client/proc/cmd_admin_change_custom_event,
|
|
|
|
|
/client/proc/cmd_admin_rejuvenate,
|
|
|
|
|
/client/proc/toggleattacklogs,
|
|
|
|
|
/client/proc/toggledebuglogs,
|
|
|
|
|
/client/proc/toggleghostwriters,
|
|
|
|
|
/client/proc/toggledrones,
|
|
|
|
|
/datum/admins/proc/show_skills,
|
|
|
|
|
/client/proc/check_customitem_activity,
|
|
|
|
|
/client/proc/man_up,
|
|
|
|
|
/client/proc/global_man_up,
|
|
|
|
|
/client/proc/response_team, // Response Teams admin verb
|
|
|
|
|
/client/proc/response_team, // Response Teams admin verb,
|
|
|
|
|
/client/proc/toggle_antagHUD_use,
|
|
|
|
|
/client/proc/toggle_antagHUD_restrictions,
|
|
|
|
|
/client/proc/allow_character_respawn, /* Allows a ghost to respawn */
|
|
|
|
|
/client/proc/allow_character_respawn, // Allows a ghost to respawn ,
|
|
|
|
|
/client/proc/event_manager_panel,
|
|
|
|
|
/client/proc/empty_ai_core_toggle_latejoin,
|
|
|
|
|
/client/proc/empty_ai_core_toggle_latejoin,
|
|
|
|
|
/client/proc/aooc,
|
|
|
|
|
/client/proc/change_human_appearance_admin, /* Allows an admin to change the basic appearance of human-based mobs */
|
|
|
|
|
/client/proc/change_human_appearance_self, /* Allows the human-based mob itself change its basic appearance */
|
|
|
|
|
/client/proc/change_human_appearance_admin, // Allows an admin to change the basic appearance of human-based mobs ,
|
|
|
|
|
/client/proc/change_human_appearance_self, // Allows the human-based mob itself change its basic appearance ,
|
|
|
|
|
/client/proc/change_security_level,
|
|
|
|
|
/client/proc/view_chemical_reaction_logs,
|
|
|
|
|
/client/proc/makePAI,
|
|
|
|
|
/datum/admins/proc/paralyze_mob
|
|
|
|
|
/client/proc/toggle_debug_logs,
|
|
|
|
|
/client/proc/toggle_attack_logs,
|
|
|
|
|
/datum/admins/proc/paralyze_mob,
|
|
|
|
|
/client/proc/fixatmos
|
|
|
|
|
)
|
|
|
|
|
var/list/admin_verbs_ban = list(
|
|
|
|
|
/client/proc/unban_panel,
|
|
|
|
|
@@ -131,7 +130,7 @@ var/list/admin_verbs_spawn = list(
|
|
|
|
|
/datum/admins/proc/spawn_custom_item,
|
|
|
|
|
/datum/admins/proc/check_custom_items,
|
|
|
|
|
/datum/admins/proc/spawn_plant,
|
|
|
|
|
/datum/admins/proc/spawn_atom, /*allows us to spawn instances*/
|
|
|
|
|
/datum/admins/proc/spawn_atom, //allows us to spawn instances,
|
|
|
|
|
/client/proc/respawn_character,
|
|
|
|
|
/client/proc/virus2_editor,
|
|
|
|
|
/client/proc/spawn_chemdisp_cartridge
|
|
|
|
|
@@ -149,7 +148,7 @@ var/list/admin_verbs_server = list(
|
|
|
|
|
/datum/admins/proc/immreboot,
|
|
|
|
|
/client/proc/everyone_random,
|
|
|
|
|
/datum/admins/proc/toggleAI,
|
|
|
|
|
/client/proc/cmd_admin_delete, /*delete an instance/object/mob/etc*/
|
|
|
|
|
/client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
|
|
|
|
|
/client/proc/cmd_debug_del_all,
|
|
|
|
|
/datum/admins/proc/adrev,
|
|
|
|
|
/datum/admins/proc/adspawn,
|
|
|
|
|
@@ -161,7 +160,7 @@ var/list/admin_verbs_server = list(
|
|
|
|
|
/client/proc/nanomapgen_DumpImage
|
|
|
|
|
)
|
|
|
|
|
var/list/admin_verbs_debug = list(
|
|
|
|
|
/client/proc/getruntimelog, /*allows us to access runtime logs to somebody*/
|
|
|
|
|
/client/proc/getruntimelog, //allows us to access runtime logs to somebody,
|
|
|
|
|
/client/proc/cmd_admin_list_open_jobs,
|
|
|
|
|
/client/proc/Debug2,
|
|
|
|
|
/client/proc/kill_air,
|
|
|
|
|
@@ -187,14 +186,14 @@ var/list/admin_verbs_debug = list(
|
|
|
|
|
/client/proc/enable_debug_verbs,
|
|
|
|
|
/client/proc/callproc,
|
|
|
|
|
/client/proc/callproc_target,
|
|
|
|
|
/client/proc/toggledebuglogs,
|
|
|
|
|
/client/proc/SDQL_query,
|
|
|
|
|
/client/proc/SDQL2_query,
|
|
|
|
|
/client/proc/Jump,
|
|
|
|
|
/client/proc/jumptomob,
|
|
|
|
|
/client/proc/jumptocoord,
|
|
|
|
|
/client/proc/dsay,
|
|
|
|
|
/client/proc/admin_ghost /*allows us to ghost/reenter body at will*/
|
|
|
|
|
/client/proc/toggle_debug_logs,
|
|
|
|
|
/client/proc/admin_ghost //allows us to ghost/reenter body at will,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var/list/admin_verbs_paranoid_debug = list(
|
|
|
|
|
@@ -218,8 +217,6 @@ var/list/admin_verbs_rejuv = list(
|
|
|
|
|
var/list/admin_verbs_hideable = list(
|
|
|
|
|
/client/proc/deadmin_self,
|
|
|
|
|
// /client/proc/deadchat,
|
|
|
|
|
/client/proc/toggleprayers,
|
|
|
|
|
/client/proc/toggle_hear_radio,
|
|
|
|
|
/datum/admins/proc/show_traitor_panel,
|
|
|
|
|
/datum/admins/proc/toggleenter,
|
|
|
|
|
/datum/admins/proc/toggleguests,
|
|
|
|
|
@@ -288,14 +285,12 @@ var/list/admin_verbs_hideable = list(
|
|
|
|
|
/datum/admins/proc/set_tcrystals
|
|
|
|
|
)
|
|
|
|
|
var/list/admin_verbs_mod = list(
|
|
|
|
|
/client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/
|
|
|
|
|
/client/proc/cmd_admin_pm_panel, /*admin-pm list*/
|
|
|
|
|
/client/proc/debug_variables, /*allows us to -see- the variables of any instance in the game.*/
|
|
|
|
|
/client/proc/toggledebuglogs,
|
|
|
|
|
/client/proc/cmd_admin_pm_context, //right-click adminPM interface,
|
|
|
|
|
/client/proc/cmd_admin_pm_panel, //admin-pm list,
|
|
|
|
|
/client/proc/debug_variables, //allows us to -see- the variables of any instance in the game.,
|
|
|
|
|
/datum/admins/proc/PlayerNotes,
|
|
|
|
|
/client/proc/admin_ghost, /*allows us to ghost/reenter body at will*/
|
|
|
|
|
/client/proc/admin_ghost, //allows us to ghost/reenter body at will,
|
|
|
|
|
/client/proc/cmd_mod_say,
|
|
|
|
|
/client/proc/toggleattacklogs,
|
|
|
|
|
/datum/admins/proc/show_player_info,
|
|
|
|
|
/client/proc/player_panel_new,
|
|
|
|
|
/client/proc/dsay,
|
|
|
|
|
@@ -304,10 +299,11 @@ var/list/admin_verbs_mod = list(
|
|
|
|
|
/client/proc/check_antagonists,
|
|
|
|
|
/client/proc/aooc,
|
|
|
|
|
/client/proc/jobbans,
|
|
|
|
|
/client/proc/cmd_admin_subtle_message, /*send an message to somebody as a 'voice in their head'*/
|
|
|
|
|
/client/proc/toggle_attack_logs,
|
|
|
|
|
/client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head',
|
|
|
|
|
/datum/admins/proc/paralyze_mob,
|
|
|
|
|
/client/proc/cmd_admin_direct_narrate,
|
|
|
|
|
/client/proc/allow_character_respawn /* Allows a ghost to respawn */
|
|
|
|
|
/client/proc/allow_character_respawn // Allows a ghost to respawn ,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var/list/admin_verbs_mentor = list(
|
|
|
|
|
@@ -525,12 +521,16 @@ var/list/admin_verbs_mentor = list(
|
|
|
|
|
if(holder)
|
|
|
|
|
if(holder.fakekey)
|
|
|
|
|
holder.fakekey = null
|
|
|
|
|
if(istype(src.mob, /mob/new_player))
|
|
|
|
|
mob.name = capitalize(ckey)
|
|
|
|
|
else
|
|
|
|
|
var/new_key = ckeyEx(input("Enter your desired display name.", "Fake Key", key) as text|null)
|
|
|
|
|
if(!new_key) return
|
|
|
|
|
if(length(new_key) >= 26)
|
|
|
|
|
new_key = copytext(new_key, 1, 26)
|
|
|
|
|
holder.fakekey = new_key
|
|
|
|
|
if(istype(mob, /mob/new_player))
|
|
|
|
|
mob.name = new_key
|
|
|
|
|
log_admin("[key_name(usr)] has turned stealth mode [holder.fakekey ? "ON" : "OFF"]")
|
|
|
|
|
message_admins("[key_name_admin(usr)] has turned stealth mode [holder.fakekey ? "ON" : "OFF"]", 1)
|
|
|
|
|
feedback_add_details("admin_verb","SM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
|
|
|
|
@@ -903,17 +903,6 @@ var/list/admin_verbs_mentor = list(
|
|
|
|
|
message_admins("A job slot for [job] has been opened by [key_name_admin(usr)]")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
/client/proc/toggleattacklogs()
|
|
|
|
|
set name = "Toggle Attack Log Messages"
|
|
|
|
|
set category = "Preferences"
|
|
|
|
|
|
|
|
|
|
prefs.toggles ^= CHAT_ATTACKLOGS
|
|
|
|
|
if (prefs.toggles & CHAT_ATTACKLOGS)
|
|
|
|
|
usr << "You now will get attack log messages"
|
|
|
|
|
else
|
|
|
|
|
usr << "You now won't get attack log messages"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/client/proc/toggleghostwriters()
|
|
|
|
|
set name = "Toggle ghost writers"
|
|
|
|
|
set category = "Server"
|
|
|
|
|
@@ -942,17 +931,6 @@ var/list/admin_verbs_mentor = list(
|
|
|
|
|
src << "<b>Enabled maint drones.</b>"
|
|
|
|
|
message_admins("Admin [key_name_admin(usr)] has enabled maint drones.", 1)
|
|
|
|
|
|
|
|
|
|
/client/proc/toggledebuglogs()
|
|
|
|
|
set name = "Toggle Debug Log Messages"
|
|
|
|
|
set category = "Preferences"
|
|
|
|
|
|
|
|
|
|
prefs.toggles ^= CHAT_DEBUGLOGS
|
|
|
|
|
if (prefs.toggles & CHAT_DEBUGLOGS)
|
|
|
|
|
usr << "You now will get debug log messages"
|
|
|
|
|
else
|
|
|
|
|
usr << "You now won't get debug log messages"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/client/proc/man_up(mob/T as mob in mob_list)
|
|
|
|
|
set category = "Fun"
|
|
|
|
|
set name = "Man Up"
|
|
|
|
|
|