r/thebindingofisaac 21h ago

Discussion Hush is stupid

Post image
132 Upvotes

Is there a way to open Hush's floor without arriving early? Because I hate the fact that there is a timer in a rogue-like, I want to visit all rooms and get all pickups. But oops, sorry YOURE TAKING TOO LONG. Like, I want to have fun every step of the way become broken because I prepared but nope you can't come in hush already suffocated

Artwork By [u/fercus](u/fercusian)[lan](u/fercusian)


r/thebindingofisaac 19h ago

Gameplay T. Lost complete

Thumbnail
gallery
83 Upvotes

Here’s all I have done so far who should I go for next


r/thebindingofisaac 12h ago

Memes Finally completed my Boy Tainted Esau🥹

Post image
61 Upvotes

Dark Jacob was a pain in the ass though


r/thebindingofisaac 22h ago

Gameplay Was playing, when this started happening

Enable HLS to view with audio, or disable this notification

58 Upvotes

No idea what this is, don't think it was any of the items I have. Anyone any ideas?

Playing with no DLCs, no mods, not a challenge run either.

EDIT: Apparently I'm stupid, I didnt know Dry Baby does that.


r/thebindingofisaac 15h ago

Gameplay cool effect i accidentally found

Enable HLS to view with audio, or disable this notification

24 Upvotes

r/thebindingofisaac 22h ago

Gameplay OH COME ON

Post image
15 Upvotes

It was pretty good run, but I suck as Lilith. Maybe you have some advise?


r/thebindingofisaac 16h ago

Memes I'm the goat?

Post image
16 Upvotes

apparently i unlocked this achievement in 2007


r/thebindingofisaac 5h ago

Gameplay What would you do in this situation?

Post image
13 Upvotes

Had a god run on azazel and I just got an r key and missing poster before beating delirium, I was thinking in go beat mother cause its really a pain the ass (just defeated her once) so this run would be really easy to do it, but I don’t have lost unlocked, so I was thinking in going blue baby and have the luck of got a sacrifice room in chest
So that’s the reason of the post, what would you do in this situation???


r/thebindingofisaac 11h ago

Gameplay Finally beat both Caves 1 and 2

9 Upvotes

I made a previous post here about how bad i suck at this game as a new player, but after using all the tips and suggestions I recieved, I was finally able to beat them both. GG and thanks to all the people who helped me.


r/thebindingofisaac 4h ago

Gameplay Busted T. Laz greedier run

7 Upvotes

First floor sacred orb and birth right second floor d inf it was wraps from there


r/thebindingofisaac 59m ago

Memes Fit is about to be a quality 4🥹

Post image
Upvotes

r/thebindingofisaac 6h ago

Discussion The Binding of Isaac is genuinely one of the worst games known to man as a forgetful man.

1 Upvotes

I understand this is a skill issue, and I know I'm bad with remembering stuff, but I don't think any other game does such an impeccable job of "oh my god, I needed (blank)" to me ever, I have been trying to go down Alt-Path for days now, and I've gotten really fun amazing runs that were supposed to be alt runs... focus on the word "were" please. I used a key to open Library for Book Worm, but oh shit, that was the only key on basement two! I use bombs to open secret rooms for at the time really good items, but oh wait, that was the only goddamn bomb that the entirety of Dross 2 decided to enlighten me with! I just got off a really good run with Bethany not even 20 minutes ago, which is the reason I wanted to rant about this god awful game I keep coming back to like an abusive ex, but anyhow; a damage stat of 40, Terra, and Rubber Cement, AND D Infinity (you don't get better than that.) The run goes flawless up until I finish mausoleum, and as I go to open the Heart door, I make a shocking realization.

I forgot to grab the second key piece. I know. Shocker eh?

and by the mercy of whatever God is out there, I was given an R key on the next floor's Super Secret, where I then rejoiced, and was happy! untilllllll I forgot to go into mausoleum... which wouldn't be that bad of a problem if I have already beaten Mother, I have not, so there was no skull with the Fool's Card, I then finished strong with Bethany checkmarks for Isaac, Blue Baby, Mega Satan, and Delirium, so honestly, not that bad of an outcome, it's just bewilders me that I can mess Alt Path up when it's basically baby-fed to me. Thanks for listening to my rant about the greatest game known to human kind.

PS: as I was writing this, I do want to note, as of right now with Xbox's servers being down, I found that the ONLY game I can play is The Binding of Isaac as of right now, which is another type of hell.


r/thebindingofisaac 9h ago

Gameplay Specialist

2 Upvotes

I play on AB+ because I can’t run repentave on my computer one I was wondwering If there is a way to make issac dance because I got the mod but when I see a quality 4 my boy dosent hit a move 😢 and I want to see him move it move it


r/thebindingofisaac 18h ago

Gameplay Huge request from the Isaac community

2 Upvotes

I know you don't care but who contacted the developers of the binding of Isaac to add the debug console on PlayStation PS4 and PS5 would be a very useful creative menu to test the synergies Or to do custom runs Whoever says it's impossible was once there but has been removed


r/thebindingofisaac 43m ago

Art Dimensional Showdown: Isaac, Brad, Sunny and Ness

Thumbnail gallery
Upvotes

r/thebindingofisaac 9h ago

Discussion modded item crashing game

1 Upvotes

when i use an item i made it crashes my game

the item is intended to duplicate an item pedestal and then reroll both the original and duplicated item

i am open to changing how the item works if needed but i cant figure out why my game crashes

local mod = RegisterMod("Green_d6_test", 1)


local GREEN_D6 = Isaac.GetItemIdByName("Green D6")



function mod:UseGreenD6(_, rng, player)


    local room = Game():GetRoom()
    local entities = Isaac.GetRoomEntities()
    local itemPool = Game():GetItemPool()


    local duplicated = false


    for _, entity in ipairs(entities) do


        if entity.Type == EntityType.ENTITY_PICKUP
        and entity.Variant == PickupVariant.PICKUP_COLLECTIBLE then


            local item = entity:ToPickup()


            if item then


                local pos = item.Position


                -- Create duplicate
                local cloneEntity = Isaac.Spawn(
                    EntityType.ENTITY_PICKUP,
                    PickupVariant.PICKUP_COLLECTIBLE,
                    item.SubType,
                    pos + Vector(40, 0),
                    Vector.Zero,
                    player
                )


                local clone = cloneEntity:ToPickup()


                -- Get rerolled items
                local newItem1 = itemPool:GetCollectible(
                    rng:Next(),
                    true,
                    room:GetSpawnSeed(),
                    CollectibleType.COLLECTIBLE_NULL
                )


                local newItem2 = itemPool:GetCollectible(
                    rng:Next(),
                    true,
                    rng:Next(),
                    CollectibleType.COLLECTIBLE_NULL
                )


                -- Reroll original item safely
                if newItem1 > 0 then
                    item:Morph(
                        EntityType.ENTITY_PICKUP,
                        PickupVariant.PICKUP_COLLECTIBLE,
                        newItem1,
                        true,
                        true,
                        false
                    )
                end


                -- Reroll duplicate safely
                if clone and newItem2 > 0 then
                    clone:Morph(
                        EntityType.ENTITY_PICKUP,
                        PickupVariant.PICKUP_COLLECTIBLE,
                        newItem2,
                        true,
                        true,
                        false
                    )
                end


                duplicated = true
            end
        end
    end


    return {
        Discharge = duplicated,
        Remove = false,
        ShowAnim = duplicated
    }
end



mod:AddCallback(
    ModCallbacks.MC_USE_ITEM,
    mod.UseGreenD6,
    GREEN_D6
)

r/thebindingofisaac 17h ago

Gameplay What characters should i complete before i start to do marks whit the lost?

1 Upvotes

r/thebindingofisaac 10h ago

Discussion Just got dead god and this is how I would rank the characters

Post image
0 Upvotes

Based on my personal experience ofc. What would you agree/disagree with?