[Release] Feat of Necromancy - HandsOfNecromancy RPG mod - v1.0

Projects that alter game functions but do not include new maps belong here.
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.
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

[Release] Feat of Necromancy - HandsOfNecromancy RPG mod - v1.0

Post by peewee_RotA »

Feat of Necromancy v0.2
fon.png
Hands of Necromancy was just released. So far, this game is AMAZING.

So in an effort to say FIRST. Here's the world's first mod for it. A simple RPG mod that adds XP and leveling.

Hurt monsters to get XP. Gain levels.

Download
Version 1.0 Released: https://github.com/cabbruzzese/fon/releases/tag/v1.0

Running

For HON Client 1.5+

Code: Select all

C:\hondirectory\handsofnecromancy.exe -file c:\waddirectory\fon_v0_1.pk3
For GZ Doom 4.8+, create a shortcut

Code: Select all

C:\Games\gzdoom\gzdoom.exe -iwad C:\hondirectory\HandsOfNecromancy.ipk3 -file c:\waddirectory\fon_v0_1.pk3
Feat-ures
(pun intended)
  • Leveling and XP system
  • Weapon powers earned by increasing Scorn
  • Transformation powers earned by increasing Ferocity
  • Melee damage and health earned by increasing Vengeance
  • Minion summoning improvements
  • Inventory system for level increase, giving player control of progression
  • New Melee weapon
  • Monster repopulation
  • Monster Buffs
Check out the code here
https://github.com/cabbruzzese/fon

(Requires HON client 1.5+ or GZDOOM 4.8+ and full version of HON)
Last edited by peewee_RotA on Sat Sep 03, 2022 5:31 am, edited 6 times in total.
User avatar
RKD
Posts: 143
Joined: Sat Mar 19, 2022 9:52 am
Location: Argentina

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by RKD »

Well, that was fast. If it Increases monster health too, the better.
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

Quick note. The BIGFONT font in Hands of Necromancy is not monospace. There's not actually an example on the wiki for working with non-monospaced, so I had to look it up in source.

In a the StatusBar Init function, create the font with the Mono_Off flag. More importantly make the spacing 0. (For monospaced fonts the spacing is a width measurement of the character "0")

Code: Select all

	HUDFont mHUDFontStats;
	override void Init(void)
	{
        Super.Init();

		Font fnt = "BIGFONT";
		mHUDFontStats = HUDFont.Create(fnt, 0, Mono_Off);
	}
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

Added in ammo capacity based on stats and added Hud for XP bar and stat display.
User avatar
-Ghost-
Posts: 1772
Joined: Wed Sep 08, 2010 4:58 pm

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by -Ghost- »

Cool idea! I keep forgetting a lot of these games coming out are actually just GzDoom TC's and I could add my own mods to them. Does it have the files to just boot it up in ZDL or something?
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

-Ghost- wrote:Cool idea! I keep forgetting a lot of these games coming out are actually just GzDoom TC's and I could add my own mods to them. Does it have the files to just boot it up in ZDL or something?
Hands of Necromancy is an ipk3 with a bunch of child wads that are set to load at startup.


The mod doesn't have a wad/pk3 yet. But you can always download the files (or clone the repo) and point the -file parameter to the folder.

Here's my shortcut for gzdoom target pointing to the folder:

Code: Select all

C:\Games\gzdoom\gzdoom.exe -iwad C:\Games\hon\HandsOfNecromancy.ipk3 -file c:\Games\fon
Here's my shortct for hand of necromancy exe pointing at the folder:

Code: Select all

C:\Games\hon\handsofnecromancy.exe -file c:\Games\fon
Last edited by peewee_RotA on Mon Jun 27, 2022 5:36 am, edited 3 times in total.
User avatar
Rachael
Posts: 13562
Joined: Tue Jan 13, 2004 1:31 pm
Preferred Pronouns: She/Her
Contact:

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by Rachael »

peewee_RotA wrote: Hands of Necromancy is an ipk3 with a bunch of child wads that are set to load at startup.
This was mainly done to ease Steam updates, since having one monolithic .ipk3 file would force every steam update to be >200mb

That being said, nice to see mods for the game already :) I am very happy
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

All I needed was a little finagling
Screenshot_HNecro_20220623_233630.jpg
This is a really fun little enhancement!
User avatar
Kinsie
Posts: 7399
Joined: Fri Oct 22, 2004 9:22 am
Graphics Processor: nVidia with Vulkan support
Location: MAP33
Contact:

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by Kinsie »

Rachael wrote:This was mainly done to ease Steam updates, since having one monolithic .ipk3 file would force every steam update to be >200mb
I could have swore Steampipe had a delta-patching system?
SanyaWaffles
Posts: 805
Joined: Thu Apr 25, 2013 12:21 pm
Preferred Pronouns: They/Them
Operating System Version (Optional): Windows 11 for the Motorola Powerstack II
Graphics Processor: nVidia with Vulkan support
Location: The Corn Fields
Contact:

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by SanyaWaffles »

Yeah, Steam patches aren't terribly big. While there's nothing inherently wrong with splitting up files for organization, it seems to be fine just having it be one.
User avatar
Nash
 
 
Posts: 17439
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia
Contact:

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by Nash »

One benefit to having update1.pk3, update2.pk3, etc etc ... is allowing the user to manually opt-in to game updates - provided there is a launcher interface that allows the user to pick them of course - especially relevant for longplay RPG projects where each update to the core IWAD could potentially invalidate the user's saves and basically flush their hundred-hour playthroughs down the toilet.

(As we all know, GZDoom isn't friendly towards updates to ACS scripts and changes to map files, also major changes to ZScript might invalidate the save files as well)

Letting the update WADs be optional gives the player a chance to finish their current playthrough.
User avatar
Kinsie
Posts: 7399
Joined: Fri Oct 22, 2004 9:22 am
Graphics Processor: nVidia with Vulkan support
Location: MAP33
Contact:

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by Kinsie »

I mean, on Itch you can just put whatever old builds you want to distribute up as an option just like you do for different OS builds, no? On Steam, you can set up previous versions as public beta branches, which is a fairly common and accepted practice.

Image

But this is getting wildly off-topic... :P
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

It's been educational. I've enjoyed it.
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

Renamed the stats to Vengeance, Ferocity, and Scorn and connected Ferocity to transformations.

Next on the list is to give some more progressive challenge to monsters, and work on some monster repopulation.
peewee_RotA
Posts: 371
Joined: Fri Feb 07, 2014 6:45 am

Re: [WIP] Feat of Necromancy - RPG mod for Hands of Necroman

Post by peewee_RotA »

After some experimentation I found a reasonable way for the user to assign their own stats after gaining a level, without taking away from the overall speed of the game. And a way to add in certain "skills" gained after pumping enough points into certain stats.

I need to figure out a couple more ideas related to the skills before balancing the monsters.
Post Reply

Return to “Gameplay Mods”