mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-26 06:40:08 +01:00
Offmap Tweaks
This commit is contained in:
@@ -4,6 +4,11 @@
|
||||
var/directory_erptag = "Unset" //ditto, but for non-vore scenes
|
||||
var/directory_ad = "" //Advertisement stuff to show in character directory.
|
||||
var/sensorpref = 5 //Set character's suit sensor level
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
var/capture_crystal = 1 //Whether or not someone is able to be caught with capture crystals
|
||||
|
||||
>>>>>>> 60011ecd0b... Merge pull request #11928 from Very-Soft/whalesandcrystals
|
||||
var/job_talon_high = 0
|
||||
var/job_talon_med = 0
|
||||
var/job_talon_low = 0
|
||||
@@ -71,7 +76,7 @@
|
||||
feedback_add_details("admin_verb","TEmoteNoise") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
||||
|
||||
/client/verb/toggle_ghost_quiets()
|
||||
set name = "Toggle Whisper/Subtle Vis"
|
||||
set name = "Toggle Ghost Privacy"
|
||||
set category = "Preferences"
|
||||
set desc = "Toggle ghosts viewing your subtles/whispers."
|
||||
|
||||
@@ -84,3 +89,22 @@
|
||||
SScharacter_setup.queue_preferences_save(prefs)
|
||||
|
||||
feedback_add_details("admin_verb","TWhisubtleVis") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
||||
|
||||
/client/verb/toggle_capture_crystal()
|
||||
set name = "Toggle Catchable"
|
||||
set category = "Preferences"
|
||||
set desc = "Toggle being catchable with capture crystals."
|
||||
|
||||
var/mob/living/L = mob
|
||||
|
||||
if(prefs.capture_crystal)
|
||||
to_chat(src, "You are no longer catchable.")
|
||||
prefs.capture_crystal = 0
|
||||
else
|
||||
to_chat(src, "You are now catchable.")
|
||||
prefs.capture_crystal = 1
|
||||
if(L)
|
||||
L.capture_crystal = prefs.capture_crystal
|
||||
SScharacter_setup.queue_preferences_save(prefs)
|
||||
|
||||
feedback_add_details("admin_verb","TCaptureCrystal") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
||||
Reference in New Issue
Block a user