mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-08-09 08:33:35 +00:00
Add various mod integrations.
Add an install script for Red Falcon Helis to change the nominal values of items so they spawn on the map. This doesn't happen by default and requires that the script be modified to run.
This commit is contained in:
parent
0db8acaa65
commit
7ff7cf2048
10 changed files with 81 additions and 0 deletions
2
files/mods/1793351435/xml.env
Normal file
2
files/mods/1793351435/xml.env
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
TYPES=./XMLS/types\ \(NOT\ A\ REPLACE\).xml
|
||||||
|
SPAWNABLETYPES=./XMLS/a2_spawnabletypes.xml
|
2
files/mods/2155726353/xml.env
Normal file
2
files/mods/2155726353/xml.env
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
TYPES=./Info/Centraleconomy/Morty_ce/Morty_types.xml
|
||||||
|
CFGSPAWNABLETYPES=./Info/Centraleconomy/Morty_ce/Morty_cfgspawnabletypes.xml
|
1
files/mods/2517480838/xml.env
Normal file
1
files/mods/2517480838/xml.env
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TYPES=./Types/types.xml
|
69
files/mods/2692979668/install.sh
Executable file
69
files/mods/2692979668/install.sh
Executable file
|
@ -0,0 +1,69 @@
|
||||||
|
# Make helicopter parts, clothes, and accessories spawn on the map, as the default is for none to spawn.
|
||||||
|
|
||||||
|
echo "To make Red Falcon Helis parts and accessories spawn on the map, see files/mods/2692979668/install.sh"
|
||||||
|
|
||||||
|
# Comment out (or remove) the line below, and to apply, run: docker compose run --rm server dz x 2692979668
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
echo "Adding Red Falcon Helis parts, clothes, and accessories to world spawns."
|
||||||
|
|
||||||
|
# Aviation fluid
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_hydraulic_fluid']/nominal" --value "20" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Aviation tool box
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_aviation_toolbox']/nominal" --value "7" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Aviation battery
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_aviation_battery']/nominal" --value "7" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Hydraulic hoses
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_hydraulic_hoses']/nominal" --value "5" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Igniter plug
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_igniter_plug']/nominal" --value "3" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Wiring harness
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_wiring_harness']/nominal" --value "5" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Flight case
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_flight_case']/nominal" --value "7" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Flight case red
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_flight_case_red']/nominal" --value "3" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Flight case blue
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_flight_case_blue']/nominal" --value "7" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Aviation battery charger
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_batterycharger']/nominal" --value "5" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Pilot helmet
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotHelmet']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Pilot helmet black
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotHelmet_Black']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Pilot helmet desert
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotHelmet_Desert']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Flag
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_Flag_RedFalcon']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# Hoodie
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_hoodie']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# RFFSHeli_hoodie_black
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_hoodie_black']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# RFFSHeli_PilotGloves
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotGloves']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# RFFSHeli_PilotShirt
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotShirt']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# RFFSHeli_PilotPants
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotPants']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
||||||
|
# RFFSHeli_PilotVest
|
||||||
|
xmlstarlet edit --inplace --update "/types/type[@name='RFFSHeli_PilotVest']/nominal" --value "1" /mods/221100/2692979668/types.xml
|
||||||
|
|
2
files/mods/3017273820/xml.env
Normal file
2
files/mods/3017273820/xml.env
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
TYPES=./Files/Types_Alien.xml
|
||||||
|
EVENTS./Files/events.xml
|
1
files/mods/@DEADAIRWeaponpackSTALKERAirDevTeam
Symbolic link
1
files/mods/@DEADAIRWeaponpackSTALKERAirDevTeam
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
2300143806
|
1
files/mods/@MortysWeapons
Symbolic link
1
files/mods/@MortysWeapons
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
2155726353
|
1
files/mods/@RemasteredArmaWeaponPack
Symbolic link
1
files/mods/@RemasteredArmaWeaponPack
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
1793351435
|
1
files/mods/@ZAlien
Symbolic link
1
files/mods/@ZAlien
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
3017273820
|
1
files/mods/@sfradio
Symbolic link
1
files/mods/@sfradio
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
2517480838
|
Loading…
Add table
Reference in a new issue