Installations
server.cfg
Add the command to your server.cfg file and make sure that the script is started.
ensure mt_injuries
config.lua
You can configure everything in config.lua. Once you have made your desired changes, you'll need to restart your server to ensure that everything works smoothly.
Config = {}
Config.UseBleed = true -- adds bleed damage at 140 health
Config.UseWeak = true -- lean over when very hurt
Config.UseFaded = true -- screen effect and sound echo
Config.UseWobble = true -- screen drunk wobble
Config.resetwalk = true -- reset walk style when healed
Config.killatone = true -- kill player after tone
Config.WalkResetHealingRequired = 20 -- healing required to reset walk style
Config.screen = 'DeathFailOut' -- screen effects https://wiki.rage.mp/index.php?title=Screen_FX
Config.HealthThreshold = 140 -- health threshold to block long weapons
Config.LimitedGuns = {
"weapon_appistol",
"weapon_microsmg",
"weapon_smg",
"weapon_assaultsmg",
"weapon_combatpdw",
"weapon_machinepistol",
"weapon_minismg",
"weapon_sawnoffshotgun",
"weapon_assaultshotgun",
"weapon_heavyshotgun",
"weapon_dbshotgun",
"weapon_assaultrifle",
"weapon_carbinerifle",
"weapon_specialcarbine",
"weapon_compactrifle",
"weapon_mg",
"weapon_combatmg",
"weapon_gusenberg",
"weapon_sniperrifle",
"weapon_heavysniper",
"weapon_marksmanrifle",
"weapon_rpg",
"weapon_minigun",
"weapon_rayminigun",
-- You can add more weapons here
}
Last updated
Was this helpful?