mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 07:30:36 +01:00
1511e34923
- fixed some cherry milkshakes - added a boozomat to hos office on box - tweaked some descriptions - removed cumpkins and other cum related vile junk - removed mention of voracious hound stuff - added gato employee badges
58 lines
3.1 KiB
Plaintext
58 lines
3.1 KiB
Plaintext
TOGGLE_CHECKBOX(/datum/verbs/menu/Settings/Sound, toggleeatingnoise)()
|
|
set name = "Toggle Eating Noises"
|
|
set category = "Preferences"
|
|
set desc = "Hear Eating noises"
|
|
usr.client?.prefs?.cit_toggles ^= EATING_NOISES
|
|
usr.client?.prefs?.save_preferences()
|
|
usr.stop_sound_channel(CHANNEL_PRED)
|
|
to_chat(usr, "You will [(usr.client?.prefs?.cit_toggles & EATING_NOISES) ? "now" : "no longer"] hear eating noises.")
|
|
/datum/verbs/menu/Settings/Sound/toggleeatingnoise/Get_checked(client/C)
|
|
return C.prefs.cit_toggles & EATING_NOISES
|
|
|
|
TOGGLE_CHECKBOX(/datum/verbs/menu/Settings/Sound, toggledigestionnoise)()
|
|
set name = "Toggle Digestion Noises"
|
|
set category = "Preferences"
|
|
set desc = "Hear digestive noises"
|
|
usr.client?.prefs?.cit_toggles ^= DIGESTION_NOISES
|
|
usr.client?.prefs?.save_preferences()
|
|
usr.stop_sound_channel(CHANNEL_DIGEST)
|
|
to_chat(usr, "You will [(usr.client?.prefs?.cit_toggles & DIGESTION_NOISES) ? "now" : "no longer"] hear digestion noises.")
|
|
/datum/verbs/menu/Settings/Sound/toggledigestionnoise/Get_checked(client/C)
|
|
return C.prefs.cit_toggles & DIGESTION_NOISES
|
|
|
|
TOGGLE_CHECKBOX(/datum/verbs/menu/Settings/Sound, toggleburpingnoise)() // GS13
|
|
set name = "Toggle Burping Noises"
|
|
set category = "Preferences"
|
|
set desc = "Hear Burping noises"
|
|
usr.client?.prefs?.cit_toggles ^= BURPING_NOISES
|
|
usr.client?.prefs?.save_preferences()
|
|
usr.stop_sound_channel(CHANNEL_BURP)
|
|
to_chat(usr, "You will [(usr.client?.prefs?.cit_toggles & BURPING_NOISES) ? "now" : "no longer"] hear burping noises.")
|
|
/datum/verbs/menu/Settings/Sound/toggleburpingnoise/Get_checked(client/C)
|
|
return C.prefs.cit_toggles & BURPING_NOISES
|
|
|
|
TOGGLE_CHECKBOX(/datum/verbs/menu/Settings/Sound, togglefartingnoise)() // GS13
|
|
set name = "Toggle Farting Noises"
|
|
set category = "Preferences"
|
|
set desc = "Hear Farting noises"
|
|
usr.client?.prefs?.cit_toggles ^= FARTING_NOISES
|
|
usr.client?.prefs?.save_preferences()
|
|
usr.stop_sound_channel(CHANNEL_FART)
|
|
to_chat(usr, "You will [(usr.client?.prefs?.cit_toggles & FARTING_NOISES) ? "now" : "no longer"] hear farting noises.")
|
|
/datum/verbs/menu/Settings/Sound/togglefartingnoise/Get_checked(client/C)
|
|
return C.prefs.cit_toggles & FARTING_NOISES
|
|
|
|
// TOGGLE_CHECKBOX(/datum/verbs/menu/Settings/Sound, togglehoundsleeper)() //GS13 commented out
|
|
// set name = "Toggle Voracious Hound Sleepers"
|
|
// set category = "Preferences"
|
|
// set desc = "Toggles Voracious MediHound Sleepers"
|
|
// usr.client?.prefs?.cit_toggles ^= MEDIHOUND_SLEEPER
|
|
// usr.client?.prefs?.save_preferences()
|
|
// if(usr.client?.prefs?.cit_toggles & MEDIHOUND_SLEEPER)
|
|
// to_chat(usr, "You have opted in for voracious medihound sleepers.")
|
|
// else
|
|
// to_chat(usr, "Medihound sleepers will no longer be voracious when you're involved.")
|
|
// SSblackbox.record_feedback("nested tally", "preferences_verb", 1, list("Toggle MediHound Sleeper", "[usr.client?.prefs?.cit_toggles & MEDIHOUND_SLEEPER ? "Enabled" : "Disabled"]")) //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
|
// /datum/verbs/menu/Settings/Sound/togglehoundsleeper/Get_checked(client/C)
|
|
// return C.prefs.cit_toggles & MEDIHOUND_SLEEPER
|