Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Chameeleoh

Members
  • Content count

    59
  • Joined

  • Last visited

About Chameeleoh

  • Rank
    Mini-Member

Recent Profile Visitors

533 profile views
  1. Very well done! Love the wad and your music 😁 thanks for sharing!
  2. Chameeleoh

    How Do I Make An Item?

    You could always download a realm667 asset similar to what your going for, then look at its code and see how it works and try to do the same thing. that's what worked for me. but those tutorial vids i posted above share alot about coding and pk3 file structure. also how to edit and add your own textures and stuff. those videos are taught me all i know about doom modding. but yeah youre going to want to make your own wad. the doom wads are only there for reference when you want to play the project, you shouldn't really pull anything or edit from them unless you're doing it on purpose for some reason. but basically youre going to need slade3 to make it a little easier on yourself. its a wad editing tool. so you can import your graphic and code in there and then make your map. but pk3 is much easier cause you can have it all organized into its own little folders. i guess basic item creation. Make graphic, import it into wad using slade3. convert to doom.gfx define your actor in decorate or zscript class. and open up your editor and should be good to go. i dont use discord much anymore sorry! you can always do a gdrive link here as well
  3. Check out ChubsDoomer tutorials! This guy is super thorough. https://youtu.be/rFPPKNFum2w?si=L2n2tcrlJV9mQvrf
  4. Chameeleoh

    How Do I Make An Item?

    Also sry for late answer. My job requires i wake up very early. And im tired. Lol Yeah this is correct here. Youre going to want to learn how to make a pk3 using slade3 and then when you use ultimate doom builder you import your pk3 assets package as a reference that your wad looks at for resources. It takes a little time. But that video i sent in the post above shows a full tutorial on how to do everything. Thats where i learned from. Its saying its missing PZP1A because thats my graphic that i named, so you gotta name your graphic to that or something similar and then put the name in your code accordingly. Also check out zdoom inheritance. The technique i showed is an example of that. Basically youre taking an item thats already in DOOM and inheriting its properties to do the easy work. And what youre doing in the actor code is changing what you want to change. Graphic, sound pickup, inventory msg, all of that. Listed here at the zdoom wiki. Keep this wiki bookmarked cause its basically the manual on how to do everything zdoom and acs https://zdoom.org/wiki/Using_inheritance (Another thing to note is that the decorate method is depreciated, meaning it will still work, but the zscript class method is the current standard. You make your custom class and then in your zmapinfo lump youll add a DOOMED block identifying its ultimate doom builder editor actor number.) DoomED { 30000="youractorhere" } Video here for more explanation In the long run making a pk3 will make organizing your projects assets so much easier than endlessly scrolling through a giant wad of endless textures and assets Also heres a video on doing your custom images with slade3 From DOOMKID. Their tutorials are also great info dumps!
  5. Chameeleoh

    How Do I Make An Item?

    Hope this helps. Sorry its an info dump! NGL, this is not an easy process. but its not impossible. once you delve into the code of how other people create props and monsters it gets easy to understand. theres most likely different ways to get this done. but this is what i frankensteined together. lol heres a ACS HUDMESSAGE METHOD. Heres some methods on how to freeze your player and do stuff in between. This is how you can freeze the player and do some moving camera stuff or whatever else you want to do
  6. Chameeleoh

    How Do I Make An Item?

    This can be done with the hudmessage function in acs! I actually did this recently with a notepad of my own for an upcoming mod im developing. Watch this tutorial on hudmessage. He shows you how to display images with hud message near the endish. Youre also going to need to write a some code in keyconfig lump calling up your key to open the note. I can elaborate later if you wish. https://youtu.be/VKcmXehHqkA?si=CtQCWgSTAaB0t0NQ
  7. Chameeleoh

    Zmapinfo Secret Cluster question.

    Hello there 👋 Im wondering if its possible to have Map03 example nextmap = map04 cluster 1 Exit text =example 1 secretnext = map11 Cluster 2 Exit text =example 2 This is not the identical code im using at all. Wondering if the logic is even possible i have only been able to get a single cluster show regardless of my map exit
  8. Chameeleoh

    ZDOOM DIALOG MUSIC FULLVOL?

    I will try this soon and let you know thank you! Well Unfortunatley that did not work for me. but i found a simple fix for that particular npc convo. i just did Script 1 enter { SetMusicVolume(0.0); SetMusic(""); //among other random functions } thank you for your help!
  9. Chameeleoh

    ZDOOM DIALOG MUSIC FULLVOL?

    Well. I just mean the music for the map. I have a open script similiar to this script 1 open { //among otherthings left out here SetMusicVolume(0.0) } But when i hit my first convo with my npc it just plays the music like nothing ever happened. Then as soon as im out of dialog it goes back to normal. But its only with this first npc, by the time the player comes across another ive alrdy done a music track swap and faded the volume back in. The code i posted above was from a github link "fix" for this issue i had found online. But im not sure where to inject that code statement. Would it go in dialog? Or my map scripts?
  10. Chameeleoh

    ZDOOM DIALOG MUSIC FULLVOL?

    Hello, Doomworld. playing with dialog in my current project. map open, I set music vol to 0.0. but whenever I talk to my first NPC it always just plays music again. I've tried to find a fix which lead me to a GitHub link with some code that looks like this. I don't want to link GitHub cause I heard they got hacked. but this is the code I'm not sure where to even use this? anyone have experience with this? override void OnDestroy() { if (mDialogueLines != null) mDialogueLines.Destroy(); SetMusicVolume (1); SetMusicVolume (Level.MusicVolume); Super.OnDestroy(); }
  11. Chameeleoh

    Share Your Sprites!

    This reminds me of the flood. Its disgustingly scary and i hate/love this.
  12. Chameeleoh

    What are you listening to?

    LOL wow. Also nice avatar. Ahhah
  13. Chameeleoh

    What are you listening to?

    NIN Ghosts VI: Locusts. Just finished the prior Ghosts albums. Needed more ambient NIN vibes at work. 😆
  14. Chameeleoh

    Share Your Sprites!

    I really love that design, Very nice
  15. Chameeleoh

    Post your Doom textures!

    I really like this work, and would like to use it in an upcoming free mod im making. I was unable to get the full download for the cargo pngs and was wondering if u still have them. also really love your cable textures as well. I was going to start messing around with them in some of the levels but wanted to make sure youre ok with it. Thanks for posting!
×