Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
and for suggestion, at line 46 change to
M.getGoodMaxStock(M.goodsById[good]) - good.stock > 0
to buy more
"Cookie"
Also, can you add that autotrader would buy additional shares up to the maximum if I already have these shares and other conditions are met? It would be great if it keeps buying until it reaches storage maximum or conditions stop being met. Maybe also button to toggle this function
It works when the game is minimalized
After purchase notification appears, stock does not appear in my bank storage.
Also a question - does autotrader work if you minimize game?
Consider it changed in few minutes
good.val < M.getRestingVal() * 0.5 &&
... && // down phase checks
good.val < 5
//because the previous code
//1. does not buy in falling phase even when they are already pretty low (like $1)
//2. does not buy when stock is under 50% resting because of the last good.val < 5
needs to be changed as
(good.val < M.getRestingVal() * 0.5 &&
(...phase checks) ||
good.val < 5)
also, Cookie