Added, Updated and Removed Mods

Added:
- HUD Offsets Editor
- NPC Wounded Redone

Updated:
- Stealth Overhaul
- Redone Pripyat + Jupiter
- Redone Limansk and Hospital
- Outfit Animations
- Modded Executables

Removed:
- Arrival
This commit is contained in:
2024-04-06 19:17:40 -04:00
parent 6f19f2c70f
commit 3098b9f051
1720 changed files with 4928 additions and 113776 deletions
@@ -0,0 +1,13 @@
function on_xml_read()
RegisterScriptCallback("on_xml_read", function(xml_file_name, xml_obj)
local xml_to_change = [[gameplay\info_mlr.xml]]
if xml_file_name == xml_to_change then
local greh_land_info = [[
<string id="st_katacomb_smart_terrain_name_land">
<text>Deserted Hospital</text>
</string>
]]
xml_obj:insertFromXMLString(greh_land_info)
end
end)
end