From b456968ad280d21283f784f601fa138d6fadde40 Mon Sep 17 00:00:00 2001 From: vuminh224 Date: Sat, 21 Mar 2026 17:04:59 +0000 Subject: [PATCH] Ajouter dedicated_server_mods_setup.lua --- dedicated_server_mods_setup.lua | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dedicated_server_mods_setup.lua diff --git a/dedicated_server_mods_setup.lua b/dedicated_server_mods_setup.lua new file mode 100644 index 0000000..86a41e4 --- /dev/null +++ b/dedicated_server_mods_setup.lua @@ -0,0 +1,35 @@ +--There are two functions that will install mods, ServerModSetup and ServerModCollectionSetup. Put the calls to the functions in this file and they will be executed on boot. + +--ServerModSetup takes a string of a specific mod's Workshop id. It will download and install the mod to your mod directory on boot. + --The Workshop id can be found at the end of the url to the mod's Workshop page. + --Example: http://steamcommunity.com/sharedfiles/filedetails/?id=350811795 + --ServerModSetup("350811795") + +--ServerModCollectionSetup takes a string of a specific mod's Workshop id. It will download all the mods in the collection and install them to the mod directory on boot. + --The Workshop id can be found at the end of the url to the collection's Workshop page. + --Example: http://steamcommunity.com/sharedfiles/filedetails/?id=379114180 + --ServerModCollectionSetup("379114180") + +--Epic Healthbar +ServerModSetup("1185229307") + +--Extra Equip Slots +ServerModSetup("375850593") + +--Food Values - Item Tooltips (Server and Client) +ServerModSetup("458940297") + +--Global Positions +ServerModSetup("378160973") + +--Item Scroller +ServerModSetup("2966979495") + +--Show Me (Origin) +ServerModSetup("666155465") + +--Wormhole Marks [DST] +ServerModSetup("362175979") + +--Increased Stack size +ServerModSetup("374550642") \ No newline at end of file