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
Grabbing a perk immediately fixes the lag, but this could force you to pick up a perk that you would rather not have (like No Wand Tinkering) right at the very start of the run
Ok!
You only need to change the value of "Amount" in the settings.lua
YourSteamfolder \steamapps\workshop\content\
"Id of Noita" (for me 881100)\"Id of Get a Perk"(for me 2007569462)
backup settings.lua.
I prefer Notepad Plus Plus for editing.
Scroll down to
id = "Amount",
label = "Amount(数量)",
description = "How many perks can you get.(你可获取的天赋数量)",
value_default = 1, -- 1
value_min = 1,
value_max = 20,
value_display_multiplier = 100,
value_display_formatting = "",
format_fn = format_fn_1,
roundingFunc = rounding_1,
scope = MOD_SETTING_SCOPE_NEW_GAME,
--descriptionGui=nil,
And change value_max = 20 to what ever.
Have more fun!
这mod的设定是:
选择固定个数的perk,不会因为有dice perk而改变。
如果想要选择更多的perk,可以直接在游戏中设置选择的个数。(“Option”->“Mod settings”->“Get a perk”)
if haveKillPerk then
SetTimeOut( 0.2, "mods/Get a perk/init.lua", "QFLoop")
else
local Count=tonumber(GlobalsGetValue("QFChoosePerksCount",""));
if Count<=0 then
if lang==1 then
GamePrint("“选择一个天赋”退出!")
else
GamePrint("\"Get a perk\" is gone!")
end
else
GlobalsSetValue( "QFChoosePerksCount", tostring(Count-1))
SetTimeOut( 0.2, "mods/Get a perk/init.lua", "QFLoop")
Будет быстрее смена спеллов.
thank you for making this (insert chinese letters here beacouse i dont have a way to write them)
set in game.(“Option”->“Mod settings”->“Get a perk”)
This mod doesn't have this function.
choose 1 perk -> setting "TYPE" to 0;
choose 2 perk -> setting "TYPE" to 0; setting "PerkCount" to 1;
random choose 1 perk -> setting "TYPE" to 1;
random choose 2 perk -> setting "TYPE" to 1;setting "PerkCount" to 1;
"random a perk" will exit in 120 seconds!
"random a perk" will exit in 115 seconds!
"random a perk" will exit in 110 seconds!
After choosing the perk, there is no such news
"random a perk" will exit in 120 seconds!
"random a perk" will exit in 115 seconds!
"random a perk" will exit in 110 seconds!
是指皮肤mod没用?
多半是没在模组里面激活
是指这个mod没用?
可以取消激活那个皮肤mod看看有没有有效。
如果也没效,那就是没激活这个mod.
主要是我不想大改,不然很简单的。就像那个修改器mod那样弄就行。
改成开局120秒不去触发这个mod就关掉这个mod可能好点。
可以先选择perk,然后再使用其他mod.
因为这个mod,会在选择完毕后释放掉这个mod占用的内存。
如果超出一定范围没选择的话,就默认为:放弃选择perk.
把最后一张图中的数量调为3就行。
位置:..\Steam\steamapps\workshop\content\881100\2007569462\init.lua
后面有空我会去弄一下
Буду рад вашим предложениям, чтоб убрать задержку с самой первой страницы.
82 строка
if lnum<1 then
--Хз, вроде время от появления игрока в зоне - до появления перков. Может даже и не надо.
140 строка
if QFOldPostion.rep>1 then
--Время от остановки до смены страницы.
resolved