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

The Doomlad

Members
  • Content count

    25
  • Joined

  • Last visited

About The Doomlad

  • Rank
    Warming Up

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Against all the evil that hell could conjure. Of all the wickedness that mankind could produce. We will send unto them, only you. Rip & Tear. Until it is done In this map designed for Embers of Armageddon, you will battle your way through the downtown ruins of a once great city, now reduced to ruble and ruins. This wad will contain two maps when you download it. The first will be a faithful recreation of Hell on Earth with accurate enemy placement and weapon placement, and then map02 will be a master level that will challenge your skills and put you to the test. This map took me about 2 and a half weeks to make so any errors/bugs you spot would be greatly appreciated/ Credit: Doomkrakken: Embers of Armageddon Strongbelly: Doom 4monster pack Simploo: Skybox Ola Björling: Otex Texture pack Mick Gorden: Music id Software: Doom Eternal DOWNLOAD LINK: https://www.moddb.com/downloads/eoa-hell-on-earth https://www.dropbox.com/s/maghs1vklnoby0g/Hell on Earth V1.7.rar?dl=0 REQUIRED MODS: Embers of Armageddon - https://www.moddb.com/mods/embers-of-armageddon/downloads/embers-of-armageddon EOA Monster Pack - https://drive.google.com/drive/folders/1L_YNt3krmZpQnTtcfewPca1nh0vzRbb6 Now go and Rip & Tear some demons Update 1.1 Fixed spot where you can get out of bounds near the automap Update 1.2 Fixed a really stupid spawn error I made in update 1.1 Update 1.3 Added extra difficulty settings Added Titlemap Uploaded file to ModDB (Awaiting Approval) Update 1.4 Added some powerups to the final master level fight New Mod DB link Update 1.5 Fixed spawn on Master level Update 1.7 Fixed some teleport spawns on ledges not working
  2. The Doomlad

    Queueing up music

    I've been combing tracks but the reason I want to queue up music is to keep file size to a minimum. There's gonna be lots of tracks with each ranging from 1-6mb each
  3. The Doomlad

    Queueing up music

    So I'm making a map where I want a track to play and then when it is finished another track will begin to play. I'm wondering if this is possible.
  4. The Doomlad

    Open world WADs and rain WADs

    For an open world wad your best bet is Abysm Dawn of Innocence. It's very Diablo inspired with an open world and various dungeons
  5. The Doomlad

    Hexen style teleport in UDMF

    Thanks you
  6. The Doomlad

    Hexen style teleport in UDMF

    So I'm trying to make a map that uses hub world design. I'm trying the teleport to new map command but when I use it it uses the finish level screen. How do I get it to do a smooth transition?
  7. The Doomlad

    Respawn Enemies in script

    Yeah I tried Thing _SpawnFacing but it seems to not work well with new decorate script monsters so I'll probably go with the mapspot method
  8. The Doomlad

    Respawn Enemies in script

    Thanks. I think I'll go with the Thing_SpawnFacing Method. It may be more work but I want monsters spawning in the position they started in
  9. The Doomlad

    Respawn Enemies in script

    So I'm making a map and I want to have every enemy respawn in the level upon triggering a script. I've looked around but all I can find for respawning enemies is difficulty and I want to trigger it at a very specific point
  10. The Doomlad

    How to summon monsters in Zandronum?

    Yeah that's just me talking with my extremely limited experience with slade and doom mods. I just kidna asumed that since most mods I found used Decorate rather than Zscript
  11. The Doomlad

    How to summon monsters in Zandronum?

    That's what he said he tried doing
  12. The Doomlad

    How to summon monsters in Zandronum?

    In the wad should be a file titled "OLDCODE". Rename this to decorate and it should change to a decorate file. Zscript is outdated and difficult to work with so if you see a file called OLDCODE in a wad it's always a decorate
  13. The Doomlad

    Inventory Item Name on hud

    So I'm making a wad with a custom hud that uses inventory items. I'm want to know if it is possible to display inventory item names below the icon.I want to show the name of an item when it is selected.
  14. The Doomlad

    (solved) Air control in doom

    So I've been trying to find a way to add air control into my map to make platforming better. I found a page on Zdoom wiki for a mapinfo change but when I put in the command "aircontrol = 1" into the lump nothing changes. No one seems to have an answer online and the ones I have found are to vague to work with. This is the Zdoom wiki page I was looking at https://zdoom.org/wiki/MAPINFO/Map_definition. EDIT: So I found the fix 6 minutes after posting this. Add a script to you map like this script 999 enter { SetAirControl (0.87); } The issue is that it does not recognize it at a value of 1 so just use anything slightly lowered
  15. The Doomlad

    Boss health bar with 2 bosses

    I found this script to make a health meter for an enemy a while ago and I've used it in my wad. The problem is I want to use it again in a fight with 2 cyberdemons but don't know how to. I tried making two seperate scripts with health bars that are seperate from each other. One glitched out and didn't display right. I want to make a value that combines both things health but I don't have enough scripting knowledge to do so. Here is the script I'm using. int mtid = 121; Script 10 (void) { int hdisp; int monhp = GetActorProperty (mtid, APROP_HEALTH); int mmaxhp = GetActorProperty (mtid, APROP_SPAWNHEALTH); SetFont ("NORMAL"); hdisp = (monhp * 100 / mmaxhp); if (hdisp <= 0) hdisp = 0; SetHudSize (255,500, FALSE); int acounter; int bcounter; SetFont ("MONHPBAR"); HudMessage (s:"a"; HUDMSG_FADEOUT, 102, CR_GREEN, 0.5, 1.1, 0.1, 1.0); for (acounter = 0; acounter <= hdisp; acounter++) { if (hdisp <= 0) break; bcounter = bcounter + 2.0; SetFont ("FILLNORM"); //By default, the bar shows as a blue bar. if (hdisp < 75) //If the hp is at a caution level (75%) Display a yellow bar. SetFont ("FILLCAUT"); if (hdisp < 50) //If the hp is at a danger level (50%) Display an orange bar. SetFont ("FILLDANG"); if (hdisp < 25) // If the hp is at a critical level (25%) Display a red bar. SetFont ("FILLCRIT"); HudMessage (s:"a"; HUDMSG_FADEOUT, acounter, CR_GREEN, 23.1 + bcounter, 7.1, 0.1, 1.0); } bcounter = 0; acounter = 0; Delay (1); Restart; }
×