Hell-Forged (updated to v1.11 - development paused)

For Total Conversions and projects that don't otherwise fall under the other categories.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.

How do you feel about the difficulty of Hell-Forged Maps on UV (Grandmaster)?

Poll ended at Mon Dec 20, 2021 11:26 am

Too Easy
2
9%
Somewhat Easy
1
4%
Just Right
5
22%
Somewhat Hard
12
52%
Too Hard
3
13%
Impossible
0
No votes
 
Total votes: 23

User avatar
Ichor
Posts: 1783
Joined: Wed Jul 23, 2003 9:22 pm

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Ichor »

That shouldn't give the error, unless the problem is in the previous item.
Blue Shadow
Posts: 4949
Joined: Sun Nov 14, 2010 12:59 am

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Blue Shadow »

Check any A_Saw or A_CustomPunch calls, making sure that you're passing the correct values to the correct parameters.
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

Blue Shadow wrote:Check any A_Saw or A_CustomPunch calls, making sure that you're passing the correct values to the correct parameters.
That was it. It was the kick alt-fire for the Templar Sword using A_CutsomPunch. Had a 0 at the ArmorBonus parameter. Thanks! :D
User avatar
SamVision
Posts: 2425
Joined: Tue Apr 13, 2010 4:47 pm
Location: Behind You

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by SamVision »

While you're at it, you should probably remove the Templar Sword's attacksound because its useless and overrides the kick's.
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

fixed.
User avatar
SamVision
Posts: 2425
Joined: Tue Apr 13, 2010 4:47 pm
Location: Behind You

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by SamVision »

Two minor things:
HFFTL00, HFFTL10, HFFTL20, HFFTL30, and HFFTL40 have ridiculous offsets that cause them to go outside of the HUD.
HBA3A0, HBA3B0, and HBA3C0 would look a lot better ingame if they are given gl_monster offsets rather than projectile offsets.
Attachments
Screenshot_Doom_20190822_144140.png
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

The Female face offsets were fixed in the last patch. :)

HBA offsets fixed. Uses same puff as Infernal. Will need to make new sprites first in V1.1.

Oops, overlooked that renaming the male player sprites to PLAM instead of play would screw up the dead-player decorations resulting in Doomguys. :/
User avatar
Captain J
 
 
Posts: 16890
Joined: Tue Oct 02, 2012 2:20 am
Location: An ancient Escape Shuttle(No longer active here anymore)
Contact:

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Captain J »

Oh! Come to think of it, can i expect the texts on HUD to be at least bright or red as Armor and Health Indicators? Because i'm still having a hard time reading them in small size. Beginners probably wouldn't read them clearly either.
User avatar
SamVision
Posts: 2425
Joined: Tue Apr 13, 2010 4:47 pm
Location: Behind You

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by SamVision »

This is intentional right?
Spoiler:
Are keys supposed to be here with the fullscreen HUD?
Gez
 
 
Posts: 17833
Joined: Fri Jul 06, 2007 3:22 pm

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Gez »

Amuscaria wrote:
Blue Shadow wrote:Check any A_Saw or A_CustomPunch calls, making sure that you're passing the correct values to the correct parameters.
That was it. It was the kick alt-fire for the Templar Sword using A_CutsomPunch. Had a 0 at the ArmorBonus parameter. Thanks! :D
So it's been fixed already, but as a protip:

I inserted a new DECORATE lump before the others, with just this content:

Code: Select all

#include "DECORAT1"
#include "DECORAT2"
#include "DECORAT3"
#include "DECORAT4"
And then I renamed the four DECORATE lumps DECORAT1, DECORAT2, etc. as you can guess.

The result was that the script warning message told me that the error was in DECORAT2 line 205, which is the kick alt-fire. With four identically-named DECORATE lumps it's ambiguous which one has the error, with unique names thanks to a #include system, no ambiguity.

And don't worry, SLADE can identify #included lumps and know that they're DECORATE (or GLDEFS, or whatever). I coded that in years ago.
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

@Captain J: Wait, is it not the default red color for you?

@SamVision: It should be like that. I'm assuming you're using a higher res screen than me (im using 1920x1080) without HUD scaling (4x for me). The keys should be right above the Armor value. Ill see if there is an anchoring option in SBARINFO.

@Gez: Will do. Thanks.
Last edited by Amuscaria on Fri Aug 23, 2019 4:40 pm, edited 1 time in total.
User avatar
SamVision
Posts: 2425
Joined: Tue Apr 13, 2010 4:47 pm
Location: Behind You

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by SamVision »

Im using "adapt to screen size" setting for scaling on a 1920x1080 screen, its what I always use.
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

SamVision wrote:Im using "adapt to screen size" setting for scaling on a 1920x1080 screen, its what I always use.
Did some testing. So far I haven't found a solution that works. I've rewrote the keys section using DrawSwitachableImage, instead of the DrawKeyBar, using Center-bottom offsets and set the offsets, but the key icons still move when you either change the HUD scaling to something that's not 4, or turn on the "Preserve Aspect Ratio" option on. No idea how I could fix it.

Nevermind, all the sliders to SetToFullScreen or AdaptToFullscreen and it worked.

Copy and paste this into your SBARINFO:
Spoiler:
User avatar
Captain J
 
 
Posts: 16890
Joined: Tue Oct 02, 2012 2:20 am
Location: An ancient Escape Shuttle(No longer active here anymore)
Contact:

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Captain J »

Amuscaria wrote:@Captain J: Wait, is it not the default red color for you?
Uhh... No? I'm using GZDoom Version 4.2.0 and Hell-Forged Version 100. But no, the HUD texts are not red at all. Is there anything else i can solve this?
User avatar
Amuscaria
Posts: 6628
Joined: Mon Jul 26, 2004 12:59 pm
Location: Growing from mycelium near you.

Re: Hell-Forged - V. 1.00 Released! (See Page 1)

Post by Amuscaria »

Captain J wrote:
Amuscaria wrote:@Captain J: Wait, is it not the default red color for you?
Uhh... No? I'm using GZDoom Version 4.2.0 and Hell-Forged Version 100. But no, the HUD texts are not red at all. Is there anything else i can solve this?
Are you using the alternative hud? It lets you customize the text color depending on the category. You cna turn that off in the alternative hud settings under HUD settings.
Post Reply

Return to “TCs, Full Games, and Other Projects”