The official "ZDoom on Wolfenstein 3D" thread. (aka ECWolf)

Game Engines like EDGE, LZDoom, QZDoom, ECWolf, and others, go in this forum
Forum rules
The Projects forums are ONLY for YOUR 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 are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
TheMightyHeracross
Posts: 2100
Joined: Sun Aug 18, 2013 9:41 am
Location: Philadelphia, PA

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by TheMightyHeracross »

Sweet, thanks. :D

EDIT: I've got the NoahPlayer and Feed classes up now, going to see what else I can get on there.
EDIT2: Added FeedTrough. I have to go to bed now, I'll do more tomorrow. :)
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

I've been trying to replace the weapons with their jaguar sprites, that has worked fine, however I Cant figure out how to make them bob. I tried -DONTBOB, but nothing.
EDIT: I also can't figure out how to replaces player classes, or Weapons.
Last edited by xenoxols on Sat Jun 07, 2014 1:30 am, edited 1 time in total.
Blzut3
 
 
Posts: 3144
Joined: Wed Nov 24, 2004 12:59 pm
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Contact:

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by Blzut3 »

That should work. At least if I remove the DONTBOB flag from the WolfWeapon class the normal weapons bob just fine. Double check and if not send me the mod.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

I figured it out. There was some kind of dontbob flag in the player class which I used mapinfo to replace, because apparently there is no keyconf. I'm not complaining though.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Where would be the best place to post an ECWolf mod?
Blzut3
 
 
Posts: 3144
Joined: Wed Nov 24, 2004 12:59 pm
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Contact:

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by Blzut3 »

This thread probably. You could also make a thread in the ECWolf forum on DRD Team if you need something more long term, but you'll want to post here for exposure.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

The mod is almost done, all I need to do is figure out how to be able to pickup another chaingun, because custominventory's Pickup state doesn't seem to work. Either that or jumpifinventory.
Blzut3
 
 
Posts: 3144
Joined: Wed Nov 24, 2004 12:59 pm
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Contact:

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by Blzut3 »

The pickup state should work. I use it for noah's ark.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Well maybe it is the giveinventory?

Code: Select all

actor GatlingGunUpgrade2 : CustomInventory Replaces GatlingGunUpgrade
{
	inventory.pickupsound "weapon/gatling/pickup"
	+INVENTORY.ALWAYSPICKUP
	states
	{
		Spawn:
			CGUN A -1
			stop
		Pickup:
			TNT1 A 0 A_JumpIfInventory("GatlingGun3",1,"Pic2")
			TNT1 A 0 A_GiveInventory("GatlinGun3",1)
			stop
		Pic2:
			TNT1 A 0 A_GiveInventory("DualGatlingGun3",1)
			stop
	}
}
Blzut3
 
 
Posts: 3144
Joined: Wed Nov 24, 2004 12:59 pm
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Contact:

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by Blzut3 »

You misspelled GatlingGun3 in A_GiveInventory.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Oh thanks; I kinda feel dumb now.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Well, here it is:
https://www.mediafire.com/?k9qxxa0t3q1jqgn
It replaces all the hud weapon graphics, allows dual wielding of chainguns, and adds bobbing.
EDIT: Credits
Apogee
Id
Sgt Shivers
Blzut3
 
 
Posts: 3144
Joined: Wed Nov 24, 2004 12:59 pm
Graphics Processor: ATI/AMD with Vulkan/Metal Support
Contact:

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by Blzut3 »

You probably should reduce the amount of movement bob on the player class. Doom's bob strength looks odd in 64-unit tall rooms at a 32-unit view height.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Really? I like the bobbing.
User avatar
xenoxols
Posts: 2128
Joined: Mon Mar 18, 2013 6:08 pm
Preferred Pronouns: She/Her
Location: Behind you

Re: The official "ZDoom on Wolfenstein 3D" thread. (aka ECWo

Post by xenoxols »

Is it possible to get a shotgun like attack with multiple 0 tic a_GunAttack frames?
Post Reply

Return to “Game Engines”