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
https://wiki.hr-innoways.com/modding:savegames:openinghours?s[]=opening
if you have the opening hours correct, the next step would be to set the skier spawn points via the npc editor.
Assuming you have done the following correctly, including by adding the correct entries to the save game .lua:
a) Created a Ropeway
b) Created a Slope
c) Created NPC Skier routes
Then you need to do the following by editing the save game .lua
Search the .lua for skierSpawnPoints. There will be an entry which looks like this:
skierSpawnPoints = { -- begin of table: file.skiResort.skierSpawnPoints
{ -- begin of table: file.skiResort.skierSpawnPoints[1]
name = "DorfbahnTal",
relativeFrequency = 1,
}, -- end of table: file.skiResort.skierSpawnPoints[1]
}, -- end of table: file.skiResort.skierSpawnPoints
You'll need to change that to your own Ropeway /lift name. The example below has two spawn points as I have two lifts, eg:
skierSpawnPoints = { -- begin of table: file.skiResort.skierSpawnPoints
{ -- begin of table: file.skiResort.skierSpawnPoints[1]
name = "Your RopewayValley",
relativeFrequency = 1,
}, -- end of table: file.skiResort.skierSpawnPoints[1]
{ -- begin of table: file.skiResort.skierSpawnPoints[2]
name = "Your Other RopewayValley",
relativeFrequency = 1,
}, -- end of table: file.skiResort.skierSpawnPoints[2]
}, -- end of table: file.skiResort.skierSpawnPoints
NPC Skiers then have a spawn point at each of your lifts.
Then you'll need to make sure your slopes actually start and end at your ropeways/lifts by setting the to/from points. Search the .lua for skiSlopes. You'll find the entries you created for each of your slopes, assuming you set them up correctly. The slope will start at the "Mountain" end of your lift and end at the "Valley" end, so you need to set "from" as the top end of your lift eg., "Your RopewayMountain", and set "to" as the bottom of your lift eg., "Your RopewayValley". A worked example below:
{ -- begin of table: file.skiResort.skiSlopes[1]
diff = 2,
currentGuests = 0,
to = "Your RopewayValley",
length = 180,
isPlayerProperty = true,
maxSkiersCapacity = 6000,
ownedByPlayer = true,
slope = "1",
from = "Your RopewayMountain",
inPreparation = false,
area = 54475.56640625,
snow = 61231.36328125,
hardness = 0.18384975194931,
usage = 0,
condition = 0.99386712577923,
prep = 54074.65625,
balanceSheetId = 49,
maxPoints = 84,
guestsToday = 84,
currentRating = 98.515473118623,
reachedPoints = 82.752997419643,
isOpen = true,
dailyRentPerHa = 1500,
name = "Your Slope",
infoLayer = 1,
}, -- end of table: file.skiResort.skiSlopes[1]
I hope that works for you. I also bought my lifts and slopes, and made sure slopes were completely groomed whilst trying to figure this out, so not sure if that has some bearing on it.
Good Luck!