Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,26 @@
-- ======================================================================
--[[ Gameplay Addon: NPC Friendly Fire Response and Actor Surrender
-- ======================================================================
Add aggravation bar to UI
-- ===================================================================--]]
function on_xml_read()
RegisterScriptCallback("on_xml_read", function(xml_file_name, xml_obj)
-- XML file i want to change
local xml_to_change = [[ui\ui_custom_msgs.xml]]
-- Check if its the file i want to change
if xml_file_name == xml_to_change then
-- Here is my code to change XML
local aggravation_bar =
[[
<bar_aggravation x="0" y="650" width="1024" height="50">
<text complex_mode="1" r="150" g="150" b="150" align="c" vert_align="c" font="letterica18" />
</bar_aggravation>
]]
xml_obj:insertFromXMLString(aggravation_bar)
end
end)
end