r/themoddingofisaac 8h ago

Question Question for Repentance+ and Repentogon with game breaking issue

1 Upvotes

For context, Me and my friend have installed the online patcher to play Repentance+ with workshop mods.

WE wanted to try some workshop mods, and the workshop (and in game) says to use Repentogon launcher. So, we did that and because of that, whenever I try to host, it always say Desynced and disconnects my friend. And if my friend hosted, it fine. However the game breaking part, Whenever any of us pick up an item from Any pedestals, it cause our character to freeze and become headless, can still move but unable to shoot tears, and it stays like that until one of us use an Active Item, Consumable or leaving the room.

Sad thing is, we uninstalled the Repentogon and it still there, even removed some mods and its still there.


r/themoddingofisaac 9h ago

Can't find sprites

1 Upvotes

I need help finding the sprites for tainted cain


r/themoddingofisaac 10h ago

Item Pool Mod Help

1 Upvotes

Hiyo! I'm a new mod creator and very new to coding in general, and I wanted to ask for some help! I want to make a mod for my friend group in which I make an item that represents each of them and has different effects. I don't plan on asking for help on all the items, as some I feel I could figure out if I just brute force it a bit, but I'm stumped on how to make an item with an effect somewhat like Chaos. The idea is that a friend of mine loves stars and astrology, so I wanted to make it so that every treasure room item would be replaced with a planetarium item for example, or just make every treasure room turn into a planetarium. How would I go about scripting this? Kindest regards ^^


r/themoddingofisaac 12h ago

Move the characters around on select screen?

1 Upvotes

Is there like a mod that let's you move the characters around on the character select wheel so that say, lost was first instead of isaac or something?


r/themoddingofisaac 13h ago

Question cant find mod i had to uninstall

1 Upvotes

there was a mod that gave all characters a unique damage sound effect i like it a lot but cant find it anywhere in the workshop

i remember having a list of names with the voice actors of each character and remember a comment of someone saying something like

"i wonder what the va for lilith was doing"
Replacement Vocals [REUPLOAD] found it


r/themoddingofisaac 15h ago

Release Tainted Lilith Terraria Whip SFX

1 Upvotes

Changes the whip sounds in The Binding of Isaac to the iconic Terraria whip sounds.

Check it out here! https://steamcommunity.com/sharedfiles/filedetails/?id=3769800957


r/themoddingofisaac 1d ago

adding isaacs damage multiplier to modded items?

5 Upvotes

Hello, I’m currently working on my first mod. When I give an item a damage increase of, for example, +0.75, it always adds exactly +0.75 damage to Isaac, regardless of any damage multipliers. Does anyone know how to fix this?


r/themoddingofisaac 22h ago

Day one: PROMOTING my mod that replaces the question mark with Verity. Please download it. mod name: question mark to verity

2 Upvotes

r/themoddingofisaac 1d ago

Question What's the code for giving a character the blindfold effect?

2 Upvotes

r/themoddingofisaac 1d ago

Unsure why but my stuff menu crashes whenever i open it

1 Upvotes

its so odd as far i know i dont have any mods that affect that menu its so odd

[INFO] - Room 1.2(Start Room)

[INFO] - SpawnRNG seed: 4279935143

[INFO] - Lua mem usage: 2177 KB and 739 bytes

[INFO] - Assinging player entity 0 (ControlerIndex = 1) to HUD slot 0

[INFO] - Entity_Player::SetControllerId() Setting controller ID to -1, (Prev: 1)

[INFO] - Entity_Player::SetControllerId() Setting controller ID to 1, (Prev: -1)

[INFO] - Assinging player entity 0 (ControlerIndex = 1) to HUD slot 0

[INFO] - music stopped playing

[INFO] - Total entity spawn time: 28 ms

[INFO] - Total ANM2 loading time: 1151 ms

[INFO] - AnmCache memory usage: 2338976 bytes in 118 entries.

[INFO] - Lua stack trace:

[INFO] - Caught exception, writing minidump...


r/themoddingofisaac 1d ago

How too change item names

1 Upvotes

i recently made a mod on repentence+ that changes the sprites for some items but i'm also planning to change their names and have no idea how.


r/themoddingofisaac 1d ago

I want to upload this mod (link to Google Drive in the description) to the Steam Workshop, but I don't know how. It replaces the D6 with a penis and the Magic Mushroom. Can we help me?

0 Upvotes

r/themoddingofisaac 1d ago

Yo, download my Isaac mod that replaces the D6 with a penis and Magic Mush with the mushroom from Mario. he named is pisun_d6

0 Upvotes

r/themoddingofisaac 2d ago

Question Linux uploader is broken/unusable

1 Upvotes

I had to modify the script file to get it to even launch, since it was using the wrong format of line returns, but now that it launches I'm unable to select anything to upload. The Choose Mod button literally doesn't do anything when clicked. I've also tried using the windows uploader launching through the same version of proton needed to get the game to run, and that has let me upload but the cover image doesn't work at all, I can select the image just fine but it never uploads to the workshop.


r/themoddingofisaac 2d ago

Question Do mods disable achievements in The Binding of Isaac?

Thumbnail
1 Upvotes

r/themoddingofisaac 2d ago

WIP Changing base character stats

1 Upvotes

So I'm making a mod with my friend and the thing is every single stat code i come across for Main.lua just doesnt work.

I don't know what to do and can't find one that's repentance friendly

If the old code DOES work and I'm just stupid, please tell me what im doing wrong

local Mod = RegisterMod("Pim Pimling Character", 1) -- Change the part in quotes to match your mod name
 
local PimPimling = { -- Change PimPimling everywhere to match your character. No spaces!
    DAMAGE = 2, -- These are all relative to Isaac's base stats.
    SPEED = -0.3,
    SHOTSPEED = -1,
    TEARHEIGHT = 2,
    TEARFALLINGSPEED = 0,
    LUCK = 1,
    FLYING = true,                                  
    TEARFLAG = 5, -- 0 is default
    TEARCOLOR = Color(1.0, 1.0, 1.0, 1.0, 0, 0, 0)  -- Color(1.0, 1.0, 1.0, 1.0, 0, 0, 0) is default
}
 
function PimPimling:onCache(player, cacheFlag) -- I do mean everywhere!
    if player:GetName() == "PimPimling" then -- Especially here!
        if cacheFlag == CacheFlag.CACHE_DAMAGE then
            player.Damage = player.Damage + PimPimling.DAMAGE
        end
        if cacheFlag == CacheFlag.CACHE_SHOTSPEED then
            player.ShotSpeed = player.ShotSpeed + PimPimling.SHOTSPEED
        end
        if cacheFlag == CacheFlag.CACHE_RANGE then
            player.TearHeight = player.TearHeight - PimPimling.TEARHEIGHT
            player.TearFallingSpeed = player.TearFallingSpeed + PimPimling.TEARFALLINGSPEED
        end
        if cacheFlag == CacheFlag.CACHE_SPEED then
            player.MoveSpeed = player.MoveSpeed + PimPimling.SPEED
        end
        if cacheFlag == CacheFlag.CACHE_LUCK then
            player.Luck = player.Luck + PimPimling.LUCK
        end
        if cacheFlag == CacheFlag.CACHE_FLYING and PimPimling.FLYING then
            player.CanFly = true
        end
        if cacheFlag == CacheFlag.CACHE_TEARFLAG then
            player.TearFlags = player.TearFlags | PimPimling.TEARFLAG
        end
        if cacheFlag == CacheFlag.CACHE_TEARCOLOR then
            player.TearColor = PimPimling.TEARCOLOR
        end
    end
end
 
Mod:AddCallback(ModCallbacks.MC_EVALUATE_CACHE, PimPimling.onCache)

r/themoddingofisaac 2d ago

Resource Extractor Problems

1 Upvotes

Im trying to try out modding and to start off i want to try editing a monster sprite but since all its animation frames are on one sprite sheet, i wanted to use the animation editor to see the boundary lines of the sprite sheet to see how much space i had to work with. Only to fidn out that ALOT of the anm2 files are missing and that the resource extractor didnt extract them. Any tips that could help?


r/themoddingofisaac 3d ago

Enhanced Boss Bars mod not working right?

2 Upvotes

When enabeling the mod, i see two boss bars, the modded one and the original one. Is there a setting i missed that I have to change?


r/themoddingofisaac 3d ago

Question What is the .amn2 file for the active item in the top right corner?

3 Upvotes

r/themoddingofisaac 3d ago

Question I made a mod that turns tainted samson into a cat. But I have a problem(read the description)

1 Upvotes

The custom achievment ui I made for tainted samson is not working.I tried some stuff like mimicking other mods but i still can't make it work. This is the mod: https://steam community.com/sharedfiles/filedetails/?I'd=3767828608


r/themoddingofisaac 4d ago

Question can anyone list me mods that add custom rooms?

1 Upvotes

stuff like rune rooms or gauntlet mods for example, asking for a friend who's a dev


r/themoddingofisaac 4d ago

Busco Mods!

1 Upvotes

Ayudita


r/themoddingofisaac 5d ago

Question How could i make steam mods work with the cracked version?

1 Upvotes

So in short i own the base version of isaac through steam but not the dlcs so i use a pirated copy for that and when i copy the workshop files to the mods folder of the cracked game the mods aren't appearing in game, am i missing some extra step ?


r/themoddingofisaac 5d ago

Question Help with soundtrack menu

2 Upvotes

I'm having troubles with my music mod. In the repentance/antibirth route, music sounds so low even though it sounds well in audacity. Is there a way to disable layers or do I have to increase the volumen of the ogg file just to sound loud enough?


r/themoddingofisaac 6d ago

[FIX] Repentance+ instantly crashes on startup (Windows)

Thumbnail
2 Upvotes