安装 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(越南语)
Українська(乌克兰语)
报告翻译问题









None the less, what is the issue? Is it crashing your game? Is the mod not working as intended? Is it clashing with the other mods i made? Have you tested this yet? Or is it you just don't understand the code? If its broken i can just remove this mod completely. I would rather do that then leave something broken up.
More so, because this is something i just don't have any interest in at this time.
Quite frankly, this was 7 years ago. I don't even have the mod or the game download on this PC, Nor the PC that i even did it on for that matter. Let alone remembering what lines where changed to what values and for what reason.
By all means, if you have the passion today to rework or just make your own mod for this, have at it. Its an open source code if i remember correctly, should be just fine.
; Chance of a new colin having a random starting-level perk
;PERK_RANDOM_CHANCE = 1000.00
Because the line with PERK_RANDOM_CHANCE has a semicolon (";") in front of it, the game will completely ignore it.Thus, this line does nothing, even though it says "= 1000.00".
; How often do any random events happen
EVENT_FREQUENCY_MULTIPLIER = 0.50, 1.00, 1.00, 1.00, 1.00
Argh! Why?
There is no semicolon (";") in front, so this line potentially affects game behavior. What's baffling is that this line is the same as the default value, so the only thing it can potentially change is to block the effect of mods like Faster events as they both try to alter the same thing.
I haven't tested this, but I suspect I might still get Faster events to work by having it either higher or lower in my mod list. But, at the least, this should've been mentioned in the description!
thank a lot by advance =)