mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
260 lines
9.6 KiB
Lua
260 lines
9.6 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
|
|
local PLUGIN = PLUGIN
|
|
|
|
PLUGIN.name = "Medical"
|
|
PLUGIN.author = "Gr4Ss"
|
|
PLUGIN.description = "Implements a heal-over-time medical system as well as bleedout before death."
|
|
|
|
-- Round healing to 5 digits
|
|
-- This should give at least 3 significant digits for passive health regen
|
|
PLUGIN.HEALING_PRECISION = 5
|
|
|
|
-- How often the medical system should update
|
|
-- Existing timers won't update until a charswap when lua refreshing this value
|
|
PLUGIN.TIMER_DELAY = PLUGIN.TIMER_DELAY or 5
|
|
|
|
ix.util.Include("cl_hooks.lua")
|
|
ix.util.Include("sv_hooks.lua")
|
|
ix.util.Include("sv_plugin.lua")
|
|
|
|
ix.lang.AddTable("english", {
|
|
applyTip = "Appliquez l'objet sur vous-même",
|
|
giveTip = "Appliquez l'objet sur la personne que vous regardez",
|
|
|
|
allBandaged = "Toutes les blessures sont bandées",
|
|
allBandagedDis = "Toutes les blessures sont nettoyées et bandées",
|
|
someBandaged = "Certaines blessures sont bandées",
|
|
someBandagedDis = "Certaines blessures sont nettoyées et bandées",
|
|
|
|
bleedingOut = "Saignement mortel",
|
|
unconscious = "Ne répond à rien",
|
|
|
|
injDead = "Il semble mort",
|
|
injWonder = "Il est encore vivant !? Comment ?",
|
|
injNearDeath = "Il est près de la mort",
|
|
injCrit = "En état critique",
|
|
injMaj = "A des blessures importantes",
|
|
medicalRequiredLevel = "Vous avez besoin d'au moins %d de compétence en médecine pour faire cela !",
|
|
|
|
cmdCharGetHealing = "Affiche les données de guérison actuelles pour un personnage.",
|
|
healingListEmpty = "%s n'a pas de guérison active.",
|
|
healingList = "Données de guérison de %s : %d points de vie | %.2f bandages | %is désinfectant | %.2f calmant | %is durée de calmant | %.2f points de vie fictifs | %.3f points de vie fractionnaires",
|
|
|
|
cmdCharStopBleedout = "Arrête la perte de sang sur le personnage donné. Ne donne aucune santé.",
|
|
bleedoutStopped = "Vous avez arrêté le saignement de %s.",
|
|
bleedoutStoppedTarget = "%s a arrêté votre saignement.",
|
|
bleedoutNotActive = "%s ne saigne pas actuellement.",
|
|
|
|
areBleeding = "VOUS SAIGNEZ",
|
|
currentHP = "Points de vie actuels : %d",
|
|
requiredHealth = "Vous avez besoin de %d points de vie pour vous relever.",
|
|
cannotChangeCharBleedout = "Vous ne pouvez pas changer de personnage pendant que vous saignez !"
|
|
})
|
|
|
|
ix.lang.AddTable("french", {
|
|
applyTip = "Appliquez l'objet sur vous-même",
|
|
giveTip = "Appliquez l'objet sur la personne que vous regardez",
|
|
|
|
allBandaged = "Toutes les blessures sont bandées",
|
|
allBandagedDis = "Toutes les blessures sont nettoyées et bandées",
|
|
someBandaged = "Certaines blessures sont bandées",
|
|
someBandagedDis = "Certaines blessures sont nettoyées et bandées",
|
|
|
|
bleedingOut = "Saignement mortel",
|
|
unconscious = "Ne répond à rien",
|
|
|
|
injDead = "Il semble mort",
|
|
injWonder = "Il est encore vivant !? Comment ?",
|
|
injNearDeath = "Il est près de la mort",
|
|
injCrit = "En état critique",
|
|
injMaj = "A des blessures importantes",
|
|
medicalRequiredLevel = "Vous avez besoin d'au moins %d de compétence en médecine pour faire cela !",
|
|
|
|
cmdCharGetHealing = "Affiche les données de guérison actuelles pour un personnage.",
|
|
healingListEmpty = "%s n'a pas de guérison active.",
|
|
healingList = "Données de guérison de %s : %d points de vie | %.2f bandages | %is désinfectant | %.2f calmant | %is durée de calmant | %.2f points de vie fictifs | %.3f points de vie fractionnaires",
|
|
|
|
cmdCharStopBleedout = "Arrête la perte de sang sur le personnage donné. Ne donne aucune santé.",
|
|
bleedoutStopped = "Vous avez arrêté le saignement de %s.",
|
|
bleedoutStoppedTarget = "%s a arrêté votre saignement.",
|
|
bleedoutNotActive = "%s ne saigne pas actuellement.",
|
|
|
|
areBleeding = "VOUS SAIGNEZ",
|
|
currentHP = "Points de vie actuels : %d",
|
|
requiredHealth = "Vous avez besoin de %d points de vie pour vous relever.",
|
|
cannotChangeCharBleedout = "Vous ne pouvez pas changer de personnage pendant que vous saignez !"
|
|
})
|
|
|
|
ix.lang.AddTable("spanish", {
|
|
giveTip = "Aplica el objeto a la persona que estás mirando",
|
|
allBandagedDis = "Todas las heridas son limpiadas y vendadas",
|
|
injWonder = "¿¡Todavía está vivo!? ¿Cómo?",
|
|
bleedingOut = "Desangrándose hasta la muerte",
|
|
injNearDeath = "Está al borde de la muerte",
|
|
unconscious = "No responde a nada",
|
|
allBandaged = "Todas las heridas están vendadas",
|
|
applyTip = "Aplicarte el objeto a ti mismo",
|
|
injDead = "Parece estar muerto",
|
|
someBandaged = "Algunas heridas están vendadas",
|
|
bleedoutStoppedTarget = "%s ha detenido tu hemorragia.",
|
|
medicalRequiredLevel = "¡Necesitas al menos nivel %d de medicina para hacer esto!",
|
|
healingListEmpty = "%s no tiene ninguna curación activa.",
|
|
areBleeding = "TE ESTÁS DESANGRANDO",
|
|
cmdCharStopBleedout = "Detiene la hemorragia del personaje. No añade salud.",
|
|
injCrit = "En condición crítica",
|
|
bleedoutNotActive = "%s no está sangrando actualmente.",
|
|
bleedoutStopped = "Has detenido la hemorragia de %s.",
|
|
cannotChangeCharBleedout = "¡No puedes cambiar de personaje mientras te desangras!",
|
|
injMaj = "Tiene algunas heridas graves",
|
|
requiredHealth = "Necesitas %d Puntos de Vida para levantarte.",
|
|
currentHP = "Puntos de Vida actuales: %d",
|
|
cmdCharGetHealing = "Imprime los datos de curación actuales de un personaje.",
|
|
someBandagedDis = "Algunas heridas están limpias y vendadas",
|
|
healingList = "Datos de curación de %s: %d hp | %.2fHP de vendaje | %is desinfectando | %.2fHP analgésico | %is duración del analgésico | %.2fHP falso | %3.f HP fraccional"
|
|
})
|
|
|
|
ix.config.Add("HealthRegenTime", 6, "How many hours it takes for someone to passively regain full health.", nil, {
|
|
data = {min = 0, max = 24},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("HealingRegenRate", 5, "How much health healing items will restore per minute.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("HealingRegenBoostFactor", 2,
|
|
"How much faster someone heals when using healing boosters (e.g. disinfectant).", nil, {
|
|
data = {min = 0, max = 100, decimals = 1},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("HealingPainkillerRate", 30, "How much health per minute painkillers temporarily restore.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("HealingPainkillerDuration", 15, "How long painkillers will last in minutes.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("HealingPainkillerDecayRate", 10,
|
|
"How fast painkillers decay after their duration ran out in HP per minute.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("BleedoutTime", 10, "How many minutes it takes for someone to bleedout and die.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("WakeupTreshold", 33,
|
|
"How much health someone needs to wake up after being knocked unconscious into bleedout.", nil, {
|
|
data = {min = 1, max = 100},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("ExperienceBandageScale", 1,
|
|
"Scale how much experience is gained from bandaging a wound. 1 means 1 exp per HP healed, 2 is 2 exp per HP healed, etc.", nil, {
|
|
data = {min = 0, max = 10, decimals = 1},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("ExperienceDisinfectantScale", 1,
|
|
"Scale how much experience is gained from speeding up bandage health-regen with disinfectant. 1 means 1 exp per HP sped up, 2 is 2 exp per HP sped up, etc.", nil, {
|
|
data = {min = 0, max = 10, decimals = 1},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("ExperiencePainkillerScale", 1,
|
|
"Scale how much experience is gained from giving painkillers to temporarily replenish health. 1 means 1 exp per HP replenished, 2 is 2 exp per HP replenished, etc.", nil, {
|
|
data = {min = 0, max = 10, decimals = 1},
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.config.Add("bleedoutGodmode", false,
|
|
"Determines if all damage is blocked against players who are ragdolled due to bleedout. This protection stops once the player is no longer ragdolled, or the player's bleedout is stopped (even if they are still ragdolled).", nil, {
|
|
category = "Médical"
|
|
})
|
|
|
|
ix.command.Add("CharGetHealing", {
|
|
description = "@cmdCharGetHealing",
|
|
adminOnly = true,
|
|
arguments = {
|
|
ix.type.character
|
|
},
|
|
OnRun = function(self, client, target)
|
|
local healingData = target:GetHealing()
|
|
if (!healingData) then
|
|
client:ChatNotifyLocalized("healingListEmpty", target:GetPlayer():Name())
|
|
return
|
|
end
|
|
|
|
client:ChatNotifyLocalized(
|
|
"healingList",
|
|
target:GetPlayer():Name(),
|
|
target:GetPlayer():Health(),
|
|
healingData.bandage,
|
|
healingData.disinfectant,
|
|
healingData.painkillers,
|
|
healingData.painkillersDuration,
|
|
healingData.fakeHealth,
|
|
healingData.healingAmount
|
|
)
|
|
end
|
|
})
|
|
|
|
ix.command.Add("CharStopBleedout", {
|
|
description = "@cmdCharStopBleedout",
|
|
adminOnly = true,
|
|
arguments = {
|
|
ix.type.character
|
|
},
|
|
OnRun = function(self, client, target)
|
|
if (target:GetBleedout() > 0) then
|
|
target:SetBleedout(-1)
|
|
|
|
netstream.Start("BleedoutScreen", false)
|
|
client:NotifyLocalized("bleedoutStopped", target:GetPlayer():Name())
|
|
if (target:GetPlayer() != client) then
|
|
target:GetPlayer():NotifyLocalized("bleedoutStoppedTarget", client:Name())
|
|
end
|
|
else
|
|
client:NotifyLocalized("bleedoutNotActive", target:GetPlayer():Name())
|
|
end
|
|
end
|
|
})
|
|
|
|
ix.char.RegisterVar("bleedout", {
|
|
bNoDisplay = true,
|
|
default = -1
|
|
})
|
|
|
|
ix.char.RegisterVar("healing", {
|
|
default = {},
|
|
field = "healing",
|
|
fieldType = ix.type.text,
|
|
OnSet = PLUGIN.OnSetHealing,
|
|
OnGet = function(character, healType)
|
|
local healing = character.vars.healing
|
|
|
|
if (healType) then
|
|
return (healing and healing[healType] != nil and healing[healType]) or 0
|
|
else
|
|
return healing
|
|
end
|
|
end
|
|
})
|