r/themoddingofisaac 18m ago

Move the characters around on select screen?

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 1h ago

Question cant find mod i had to uninstall

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 3h 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 12h 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 11h 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 18h ago

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

2 Upvotes

r/themoddingofisaac 16h 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 1d 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 2d 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 2d 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 3d 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 4d 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

r/themoddingofisaac 6d ago

I need someone to make a mod about this because

2 Upvotes
  1. I need someone to make this a real mod I have tried but I'm rubbish at making it it just won't work
  2. I'm trying to get the picture but it's not working so whatever anyway it's a slingshot mechanic where a body is lying on the ground a ghost goes in any direction when the chain is at its max it slingshot the body forward and when it lands it has an AOE around it but deals more damage to the enemies beneath it

r/themoddingofisaac 7d ago

Question Os there any mod that changes the Brimstone SFX to Rebirth's? (Playing Repentance)

2 Upvotes

r/themoddingofisaac 7d ago

Question How can i add my own sprites/sounds to the game?

2 Upvotes

Just wanted some skins i made into the game.