The Beauty of GOLDEN ITEMS - The Binding of Isaac Repentance

The Beauty of GOLDEN ITEMS - The Binding of Isaac Repentance

In this video I'm going to showcase a bug currently present in The Binding of Isaac Repentance that allows you to reroll golden trinkets into golden pickups or golden items. This effect is only temporary and purely aesthetic and does nothing when picked up.

If you want to more easily spawn golden trinkets via the console, copy this text into a .lua file (e.g. a new file named gold.lua) and place it into the Isaac installation folder (e.g. C:\Program Files (x86)\Steam\steamapps\common\The Binding of Isaac Rebirth):

--------------------------------------------------
mod = RegisterMod("Spawn Golden Trinket", 1)

function mod:OnExecuteCmd(cmd, params)
golden = 0
trinkets = 0

if cmd == "spawngold" then
Isaac.Spawn(EntityType.ENTITY_PICKUP, PickupVariant.PICKUP_TRINKET, tonumber(params) + 32768, Isaac.GetPlayer(0).Position, Vector(0, 0), nil)
end
end

mod:AddCallback(ModCallbacks.MC_EXECUTE_CMD, mod.OnExecuteCmd)
--------------------------------------------------

After putting the file, type in "luarun gold.lua" in the console (or whatever you named the file). Then you can simply use the new "spawngold" command followed by the trinket's id. E.g. "spawngold 35" will spawn a golden Curved Horn.

Join my Discord: https://discord.gg/FypTtsshgB
Follow me on Twitter: https://twitter.com/IsaacGuruYT
Support me on Patreon: https://www.patreon.com/IsaacGuru

#thebindingofisaac #tboi #repentance

thebindingof

Post a Comment

0 Comments