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,71 @@
--Tweaki_Breeki's
----_____-------------------_-_--------------------------------------------------_____-_-----_--------------------------------
---/-____|-----------------|-(_)-----------------/\-----------------------------/-____|-|---(_)-------------------------------
--|-|--__-_-__-_____------_|-|_-_-__---__-_-----/--\---_-__---__-_-_-__-_---_--|-|----|-|__--_-_-__-___---___-_-__-__-_-___---
--|-|-|_-|-'__/-_-\-\-/\-/-/-|-|-'_-\-/-_`-|---/-/\-\-|-'_-\-/-_`-|-'__|-|-|-|-|-|----|-'_-\|-|-'_-`-_-\-/-_-\-'__/-_`-/-__|--
--|-|__|-|-|-|-(_)-\-V--V-/|-|-|-|-|-|-(_|-|--/-____-\|-|-|-|-(_|-|-|--|-|_|-|-|-|____|-|-|-|-|-|-|-|-|-|--__/-|-|-(_|-\__-\--
---\_____|_|--\___/-\_/\_/-|_|_|_|-|_|\__,-|-/_/----\_\_|-|_|\__,-|_|---\__,-|--\_____|_|-|_|_|_|-|_|-|_|\___|_|--\__,_|___/--
---------------------------------------__/-|------------------__/-|------__/-|------------------------------------------------
--------------------------------------|___/------------------|___/------|___/-------------------------------------------------
--Version 1.1
--05/08/2021
--This file should be in gamedata\scripts\
--Checks the level for Chimeras, adds them to a table, randomly iterates through them every 2.5 - 5.0 seconds, if they are alive and angry at something then play a random growl sound at their position!
--Rechecks level for any newly spawned Chimeras every 60 seconds.
--All growl sounds made me using the existing Chimera sound files.
local tb_angry_check = 0
local tb_recount_chims = 0
local lastchim = 0
local tb_growl_snd = sound_object("tb_growls\\tb_growl_1")
tb_chimeras = {}
function actor_on_first_update()
collect_all_chimeras()
end
function actor_on_update()
local tg = time_global()
if (tg > tb_angry_check) then
tb_angry_check = tg + math.random(2500,5000)
if #tb_chimeras ~= 0 then
checkangrychimeras()
end
end
if (tg > tb_recount_chims) then
tb_recount_chims = tg + 60000
collect_all_chimeras()
end
end
function checkangrychimeras()
local randchim = tb_chimeras[math.random(#tb_chimeras)][2]
local objpos = randchim:position()
if randchim:get_enemy() then
tb_growl_snd = sound_object("tb_growls\\tb_growl_" .. tostring(math.random(1,8)))
if tb_growl_snd:playing() then
tb_growl_snd:stop()
end
tb_growl_snd:play_at_pos(se_obj,objpos,0,sound_object.s3d)
end
end
function collect_all_chimeras()
tb_chimeras = {}
for i=1, 65534 do
local se_obj = level.object_by_id(i)
if se_obj then
local objsec = se_obj:section()
if string.find(objsec,"chimera") then
if se_obj:is_monster() then
table.insert(tb_chimeras,{i,se_obj})
end
end
end
end
end
function on_game_start()
RegisterScriptCallback("actor_on_first_update",actor_on_first_update)
RegisterScriptCallback("actor_on_update", actor_on_update)
end
@@ -0,0 +1,71 @@
--Tweaki_Breeki's
----_____-------------------_-_-------------------------------------------------_----------------_-------------------
---/-____|-----------------|-(_)-----------------/\----------------------------|-|--------------|-|------------------
--|-|--__-_-__-_____------_|-|_-_-__---__-_-----/--\---_-__---__-_-_-__-_---_--|-|----_---_-_-__|-|-_____-_-__-___---
--|-|-|_-|-'__/-_-\-\-/\-/-/-|-|-'_-\-/-_`-|---/-/\-\-|-'_-\-/-_`-|-'__|-|-|-|-|-|---|-|-|-|-'__|-|/-/-_-\-'__/-__|--
--|-|__|-|-|-|-(_)-\-V--V-/|-|-|-|-|-|-(_|-|--/-____-\|-|-|-|-(_|-|-|--|-|_|-|-|-|___|-|_|-|-|--|---<--__/-|--\__-\--
---\_____|_|--\___/-\_/\_/-|_|_|_|-|_|\__,-|-/_/----\_\_|-|_|\__,-|_|---\__,-|-|______\__,_|_|--|_|\_\___|_|--|___/--
---------------------------------------__/-|------------------__/-|------__/-|---------------------------------------
--------------------------------------|___/------------------|___/------|___/----------------------------------------
--Version 1.1
--05/08/2021
--This file should be in gamedata\scripts\
--Checks the level for Lurkers, adds them to a table, randomly iterates through them every 2.5 - 5.0 seconds, if they are alive and angry at something then play a random growl sound at their position!
--Rechecks level for any newly spawned Lurkers every 60 seconds.
--All growl sounds made me using the existing Lurker sound files.
local tb_angry_check = 0
local tb_recount_lurks = 0
local lastlurk = 0
local tb_growl_snd = sound_object("tb_growls\\tb_lurk_1")
tb_lurkers = {}
function actor_on_first_update()
collect_all_lurkers()
end
function actor_on_update()
local tg = time_global()
if (tg > tb_angry_check) then
tb_angry_check = tg + math.random(2500,5000)
if #tb_lurkers ~= 0 then
checkangrylurkers()
end
end
if (tg > tb_recount_lurks) then
tb_recount_lurks = tg + 60000
collect_all_lurkers()
end
end
function checkangrylurkers()
local randlurk = tb_lurkers[math.random(#tb_lurkers)][2]
local objpos = randlurk:position()
if randlurk:get_enemy() then
tb_growl_snd = sound_object("tb_growls\\tb_lurk_" .. tostring(math.random(1,8)))
if tb_growl_snd:playing() then
tb_growl_snd:stop()
end
tb_growl_snd:play_at_pos(se_obj,objpos,0,sound_object.s3d)
end
end
function collect_all_lurkers()
tb_lurkers = {}
for i=1, 65534 do
local se_obj = level.object_by_id(i)
if se_obj then
local objsec = se_obj:section()
if string.find(objsec,"lurker") then
if se_obj:is_monster() then
table.insert(tb_lurkers,{i,se_obj})
end
end
end
end
end
function on_game_start()
RegisterScriptCallback("actor_on_first_update",actor_on_first_update)
RegisterScriptCallback("actor_on_update", actor_on_update)
end
+28
View File
@@ -0,0 +1,28 @@
[General]
gameName=stalkeranomaly
modid=0
version=d2024.12.7.0
newestVersion=
category="-1,"
nexusFileStatus=1
installationFile=TBs_Angry_Chimera_Growls_v1.1.zip
repository=Nexus
ignoredVersion=
comments=
notes=
nexusDescription=
url=
hasCustomURL=true
lastNexusQuery=
lastNexusUpdate=
nexusLastModified=2024-12-07T20:27:14Z
nexusCategory=0
converted=false
validated=false
color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0)
tracked=0
[installedFiles]
1\modid=0
1\fileid=0
size=1