安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
ModLanguage('RU', {
// Дисплей
"Bought value" : "Закупочная цена",
"Resting value" : "Стандартная цена",
"Min value" : "Минмальная",
"Max value" : "Максимальная",
"Mode" : "Режим",
"Duration" : "Длительность",
"change the seconds per tick" : "Время цикла в секундах ",
"display switching" : "Переключение отображения",
"display reset" : "Сбросить отображение",
// Режимы
"Stable" : "Стабильный",
"Slow Rise" : "Медл. рост",
"Slow Fall" : "Медл. падение",
"Fast Rise" : "Быстр. рост",
"Fast Fall" : "Быстр. падение",
"Chaotic" : "Хаотично",
});
A number of people who use the Stock Assistant mod (highly recommended) along with CookiStocker have noticed that the use of CookiStocker breaks the "Bought value:" entry in Stock Assistant.
However, this can be easily fixed in CookiStocker. In the "buying" section of the code in main.js, right before the statement "stockList.sessionPurchases++;" (that's line 199 in the original file), insert the following:
if (StockAssistant ?? 0)
{
StockAssistant.stockData.goods .boughtVal = market .prev;
StockAssistant.buyGood(i);
}
Similarly, in the "selling" section of the code, right before the statement "stockList.sessionPurchases++;" (that's line 218 in the original file), insert the following:
if (StockAssistant ?? 0)
StockAssistant.sellGood(i);
(Note: you need to indent this code properly, as all indentation is removed in these comments.)
Once this is done, Stock Assistant will behave properly, exactly as before.
However, that mod executes the buy process without clicking the button, so it cannot be detected by this mod.
This achievements are included in the game, but are not included in the steam achievements.
I have fixed it.
Creator said "no" in description(in Japanese).