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










I tested my mod allowing wild animals and a boar attacked me on a new character. A boar is considered a wild animal and can be a hostile enemy.
The home spawn code creates animals with random hostility. That means they can be neutral or enemy.
[code]
public static SpawnSetting HomeWild(int lv)
{
return new SpawnSetting
{
filterLv = lv,
hostility = SpawnHostility.Random,
idSpawnList = "c_animal",
position = SpawnPosition.Outside,
rarity = Rarity.Normal
};
}
[/code]
[code]
public enum SpawnHostility
{
Random,
Neutral,
Enemy
}
[/code]
Is there a reason you want wild animals? I thought they were hostile.
For anyone else, this mod is still working. I was able to help the user on Discord. It was an issue with Steam and the game loading the mod.
読書の失敗による負の効果を防ぐように変更しました。
更新了模组,以防止因阅读失败而产生的负面效果。
Try gifting guests or residents ancient or spell books. They will try to read but nothing happens.
I cant reproduce it consistently because its random AI behaviour.