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










• open mod files → open main.lua with any code redactor (VSC maybe)
• find line:220 → remove "end" and place this:
elseif Input.IsButtonTriggered(Keyboard.KEY_H,0)then player:AddCollectible(CollectiblesList[selectIndex+menuOffset].ID,CollectiblesList[selectIndex+menuOffset].MaxCharges,true)end
• find line:226 → remove "end" and place this:
elseif Input.IsButtonTriggered(Keyboard.KEY_J,0)then player:RemoveCollectible(CollectiblesList[selectIndex+menuOffset].ID)end
is now you can push "H" or "J" buttons for Add/Remove items
How to change the binding key:
① Go to the file path: \The Binding of Isaac Rebirth\mods\loadout_910421359\main.lua
② Open the file and go to line 157
③ Modification: Change the binding from L key to O key
Original version:
if Input.IsButtonTriggered(Keyboard.KEY_L, 0) and
After modification:
if Input.IsButtonTriggered(Keyboard.KEY_O, 0) and
You can also change to other binding keys according to your own needs~