mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-03 21:00:19 +00:00
Changes some things around! Removes the 'wipe' button from pAI's interface, since I think there being an instant 'kill player' button is pretty lame, especially since most pAIs activate on their own without a master. They're easy enough to kill or contain without this, so I don't see it as necessary. If you want to kill your pAI friend just eat them. :U Removes the 'pAI Suicide' verb, and renames the 'Wipe Personality' to 'Enter Storage' and moved it from the OOC tab to the pAI Commands tab. Killing a pAI deletes the card and all that, where the 'Enter Storage' verb deletes the card and spawns a new one that can be used, which! I think it more appropriate. Makes it so that, when damaged, pAIs will slowly regenerate while folded up, at a rate of 0.5 brute and burn per life tick, where previously it had been impossible to recover health outside of admin intervention. Updated the Universal Translator with many of the newer languages that aren't obviously for events or hivemind type things. Added the same emotes that humans can use to pAIs Added an alternative pAI card style, and rearranged the expressions for the cards a little bit, and added one more. Plan to add more pAI chassis to play with
96 lines
3.1 KiB
Plaintext
96 lines
3.1 KiB
Plaintext
/mob/var/suiciding = 0
|
|
|
|
/mob/living/carbon/human/verb/suicide() /// At best, useful for admins to see if it's being called.
|
|
set hidden = 1
|
|
|
|
if (stat == DEAD)
|
|
to_chat(src, "You're already dead!")
|
|
return
|
|
|
|
if (!ticker)
|
|
to_chat(src, "You can't commit suicide before the game starts!")
|
|
return
|
|
|
|
to_chat(src, "<span class='warning'>No. Adminhelp if there is a legitimate reason, and please review our server rules.</span>")
|
|
message_admins("[ckey] has tried to trigger the suicide verb as human, but it is currently disabled.")
|
|
|
|
/mob/living/carbon/brain/verb/suicide()
|
|
set hidden = 1
|
|
|
|
if (stat == 2)
|
|
to_chat(src, "You're already dead!")
|
|
return
|
|
|
|
if (!ticker)
|
|
to_chat(src, "You can't commit suicide before the game starts!")
|
|
return
|
|
|
|
if (suiciding)
|
|
to_chat(src, "You're already committing suicide! Be patient!")
|
|
return
|
|
|
|
var/confirm = tgui_alert(usr, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
|
|
|
|
if(confirm == "Yes")
|
|
suiciding = 1
|
|
to_chat(viewers(loc),"<span class='danger'>[src]'s brain is growing dull and lifeless. It looks like it's lost the will to live.</span>")
|
|
spawn(50)
|
|
death(0)
|
|
suiciding = 0
|
|
|
|
/mob/living/silicon/ai/verb/suicide()
|
|
set hidden = 1
|
|
|
|
if (stat == 2)
|
|
to_chat(src, "You're already dead!")
|
|
return
|
|
|
|
if (suiciding)
|
|
to_chat(src, "You're already committing suicide! Be patient!")
|
|
return
|
|
|
|
var/confirm = tgui_alert(usr, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
|
|
|
|
if(confirm == "Yes")
|
|
suiciding = 1
|
|
to_chat(viewers(src),"<span class='danger'>[src] is powering down. It looks like they're trying to commit suicide.</span>")
|
|
//put em at -175
|
|
adjustOxyLoss(max(getMaxHealth() * 2 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
|
|
updatehealth()
|
|
|
|
/mob/living/silicon/robot/verb/suicide()
|
|
set hidden = 1
|
|
|
|
if (stat == 2)
|
|
to_chat(src, "You're already dead!")
|
|
return
|
|
|
|
if (suiciding)
|
|
to_chat(src, "You're already committing suicide! Be patient!")
|
|
return
|
|
|
|
var/confirm = tgui_alert(usr, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
|
|
|
|
if(confirm == "Yes")
|
|
suiciding = 1
|
|
to_chat(viewers(src),"<span class='danger'>[src] is powering down. It looks like they're trying to commit suicide.</span>")
|
|
//put em at -175
|
|
adjustOxyLoss(max(getMaxHealth() * 2 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
|
|
updatehealth()
|
|
|
|
/*
|
|
/mob/living/silicon/pai/verb/suicide()
|
|
set category = "pAI Commands"
|
|
set desc = "Kill yourself and become a ghost (You will receive a confirmation prompt)"
|
|
set name = "pAI Suicide"
|
|
var/answer = tgui_alert(usr, "REALLY kill yourself? This action can't be undone.", "Suicide", list("Yes","No"))
|
|
if(answer == "Yes")
|
|
var/obj/item/device/paicard/card = loc
|
|
card.removePersonality()
|
|
var/turf/T = get_turf_or_move(card.loc)
|
|
for (var/mob/M in viewers(T))
|
|
M.show_message("<span class='notice'>[src] flashes a message across its screen, \"Wiping core files. Please acquire a new personality to continue using pAI device functions.\"</span>", 3, "<span class='notice'>[src] bleeps electronically.</span>", 2)
|
|
death(0)
|
|
else
|
|
to_chat(src, "Aborting suicide attempt.")
|
|
*/ |