Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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).