TheDeviousGremlin Posted October 23, 2023 So I was modding doom 2, I was changing the pistol sprites following doomkids tutorial Video but I got an error that said Quote R_ProjectSprite: invalid sprite frame 3 : 0 I don't know what I did wrong, I even had the sprites in between the SS_START AND S_END 0 Quote Share this post Link to post
TheDeviousGremlin Posted October 24, 2023 So I tried that and it didn't work, it gave me the same error message 0 Quote Share this post Link to post
Dark Pulse Posted October 24, 2023 (edited) Are you trying to run this in vanilla, or something like Chocolate Doom, or something else? The vanilla engine actually can't handle new sprites normally. Back in the day there was a utility called DeUSF which would merge the new graphical assets into the original IWAD (creating a modified IWAD in the process). If you're trying to play under Vanilla, this is still pretty much the only option. If you're using something like Chocolate Doom, that's a little more flexible - but instead of using -file to load your WAD with the graphics lumps, you'd use -merge instead, which will act like the addon WAD is as if DeUSF had merged the graphics into the IWAD, without actually doing so. If you're using something else, then the problem is more on your sprites than anything. Edited October 24, 2023 by Dark Pulse 0 Quote Share this post Link to post
TheDeviousGremlin Posted October 25, 2023 Hmmm I probably used the vanilla engine because there's nothing wrong with my sprites... Where do I get the chocolate doom? 0 Quote Share this post Link to post
Dark Pulse Posted October 25, 2023 https://www.chocolate-doom.org/wiki/index.php/Chocolate_Doom 0 Quote Share this post Link to post
TheDeviousGremlin Posted October 26, 2023 I tried it and it didn't work. I'll just send the file so the problem can be found AIMKIDDOOM.zip 0 Quote Share this post Link to post
magicsofa Posted October 26, 2023 @TheDeviousGremlin please do not upload your entire folder including DOOM2.wad, wow 1 Quote Share this post Link to post
magicsofa Posted October 26, 2023 (edited) TITLEPIC should not be in between the sprite markers EDIT: But the actual reason it doesn't work is that it needs to be S_END, not SS_END. On 10/23/2023 at 7:49 PM, LuzRoja29 said: SS_END* ^^ do not listen :P Edited October 26, 2023 by magicsofa 0 Quote Share this post Link to post
TheDeviousGremlin Posted October 26, 2023 1 hour ago, magicsofa said: @TheDeviousGremlin please do not upload your entire folder including DOOM2.wad, wow Sorry it's my first time here lol. Anyways I already tried putting the S_END but that also didn't work (sorry if Im asking much) 0 Quote Share this post Link to post
Dark Pulse Posted October 26, 2023 (edited) I think the problem is more simple: You are using custom sprite names. You CANNOT do that for something that is intended to be vanilla-compatible, IIRC, unless you do some DeHackEd editing in order to change the strings the EXE is looking for. All replacement lumps in a WAD should have the exact same name as the original lump they are replacing. For example, if you are replacing the Zombieman's forward-facing sprite, the replacement sprite MUST be named POSSA1. You basically need to do two things: Move TITLEPIC out of the SS area (it's a title graphic, not a sprite), so either put it above SS_START or below SS_END. Rename your pistol graphics to the original graphic lump names, PISG (and PISF for the flash). Alternatively, if you are intending to use a DeHackEd patch for it, I think you need to make sure that all of the sprite names are properly replaced, not just the first instance. But I also remember it being a bit weird about replacing sprite graphics and that there was some quirks involved with that. Edited October 27, 2023 by Dark Pulse 0 Quote Share this post Link to post
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.