Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
When you load a game with mods, it lists the mods that are loaded in the log file. You would be able to see if they loaded correctly, or gave any errors there in most cases, though not with all of them.
ok thank you, and where are the logs?
All the information is in the Support sections Pinned threads.
ok thank you so much
1. Find the log: ps -eaf |grep 7Days |grep -v grep |awk '{print $2}' |xargs lsof -p |grep output_log |tail -1
7DaysToDi 2842870 steam 3u REG 259,5 641147 54788151 /gameserver/7days/7DaysToDieServer_Data/output_log__2022-10-10__11-57-47.txt
2. cat the log: cat /gameserver/7days/7DaysToDieServer_Data/output_log__2022-10-10__11-57-47.txt
3. Look near the top of the log file or search for: INF [MODS]. You are looking for: "Loaded Mod: ModName
2022-10-10T11:57:49 0.717 INF [MODS] Start loading from: '/gameserver/7days/7DaysToDieServer_Data/../Mods'
2022-10-10T11:57:49 0.723 INF [MODS] Trying to load from folder: 'alwaysSeed'
2022-10-10T11:57:49 0.734 INF [MODS] Loaded Mod: Harvest always drops seeds (1.0)
2022-10-10T11:57:49 0.734 INF [MODS] Trying to load from folder: 'Ana_Vehicle_Respawner'
2022-10-10T11:57:49 0.735 INF [MODS] Loaded Mod: Ana_Vehicle_Respawner (1.0.0)
2022-10-10T11:57:49 0.735 INF [MODS] Trying to load from folder: 'ExtendedBuilding'
2022-10-10T11:57:49 0.735 INF [MODS] Loaded Mod: Extended Building (1.0)
2022-10-10T11:57:49 0.735 INF [MODS] Trying to load from folder: 'izayo_weapons_firearms_45acp_v2'
2022-10-10T11:57:49 0.735 INF [MODS] Loaded Mod: Weapon_firearmIZY45acp (1)
2022-10-10T11:57:49 0.735 INF [MODS] Trying to load from folder: 'izayo_weapons_firearms_v2'
2022-10-10T11:57:49 0.736 INF [MODS] Loaded Mod: Weapon_firearmIZY (1)
2022-10-10T11:57:49 0.736 INF [MODS] Initializing mod code
2022-10-10T11:57:49 0.736 INF [MODS] Loading done
One of many possible all in one command: ps -eaf |grep 7Days |grep -v grep |awk '{print $2}' |xargs lsof -p |grep output_log |tail -1 |awk '{print $9}' |xargs cat |grep "MODS"
More info: The values in the log should match your mod directory and mod xml configuration as shown.
2022-10-10T11:57:49 0.723 INF [MODS] Trying to load from folder: 'alwaysSeed' (based on directory of mod: ../Mods/alwaysSeed)
2022-10-10T11:57:49 0.734 INF [MODS] Loaded Mod: Harvest always drops seeds (1.0): (based on ../Mods/alwaysSeed/ModInfo.xml)
<ModInfo>
<Name value="Harvest always drops seeds" />