DuduKrazy's Guns III [IT'S OVER!]

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.
User avatar
Duducrazy
Posts: 600
Joined: Sat Aug 21, 2004 6:16 pm

Re: [WIP]DuduKrazy's Guns III

Post by Duducrazy »

Updates:

- One more bug fixed

- Remade the Fusion Cannon projectile and the RPG-8 hud weapon sprites. They should look much better now!
User avatar
Duducrazy
Posts: 600
Joined: Sat Aug 21, 2004 6:16 pm

Re: [WIP]DuduKrazy's Guns III

Post by Duducrazy »

Updated beta version is up now! Redownload it!
User avatar
Nexar
Posts: 93
Joined: Thu Jul 17, 2008 3:20 am
Location: Sweden

Re: [WIP]DuduKrazy's Guns III

Post by Nexar »

SBARINFO Line2
Bad Syntax!
stupid error!
fix it!
Or atleast take that custom status bar away!
User avatar
Ryan Cordell
Posts: 4349
Joined: Sun Feb 06, 2005 6:39 am
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia (Modern GZDoom)
Location: Capital of Explodistan

Re: [WIP]DuduKrazy's Guns III

Post by Ryan Cordell »

Or upgrade if you have an old version of ZDoom.
User avatar
Lord_Z
Posts: 189
Joined: Sun Jun 15, 2008 2:11 pm
Location: Temporal Singularity

Re: [WIP]DuduKrazy's Guns III

Post by Lord_Z »

I have the newest version and it does the same thing.
User avatar
DBThanatos
Posts: 3101
Joined: Fri Apr 14, 2006 3:17 pm
Location: in "the darkness that lurks in our mind"

Re: [WIP]DuduKrazy's Guns III

Post by DBThanatos »

Tested with r1069 and works fine. You must use the newest SVN.
User avatar
Duducrazy
Posts: 600
Joined: Sat Aug 21, 2004 6:16 pm

Re: [WIP]DuduKrazy's Guns III

Post by Duducrazy »

Updates:

- Remade the fists and added some new attacks.

- New crosshair added.

does anyone else have found any issues or something that could be improved? i just want to know.
User avatar
Nexar
Posts: 93
Joined: Thu Jul 17, 2008 3:20 am
Location: Sweden

Re: [WIP]DuduKrazy's Guns III

Post by Nexar »

I Tested it on every port And All Has Different Errors!
I Tested It On:
Skulltag v097d-RC9
GZDoom-Bin-1-1-02
ZDoom-2.1.7
Doom Legacy-V1.40
Skulltag v097d-RC10
Doomsday
User avatar
Duducrazy
Posts: 600
Joined: Sat Aug 21, 2004 6:16 pm

Re: [WIP]DuduKrazy's Guns III

Post by Duducrazy »

you must have the latest svn revision of GZDoom. you can get it here:

http://nash.wanzafran.com/doomstuff/svn/
User avatar
Nexar
Posts: 93
Joined: Thu Jul 17, 2008 3:20 am
Location: Sweden

Re: [WIP]DuduKrazy's Guns III

Post by Nexar »

Thanks!
Its working! COOL MOD MAN!!!!!!
User avatar
DBThanatos
Posts: 3101
Joined: Fri Apr 14, 2006 3:17 pm
Location: in "the darkness that lurks in our mind"

Re: [WIP]DuduKrazy's Guns III

Post by DBThanatos »

Duducrazy wrote:does anyone else have found any issues or something that could be improved? i just want to know.
Well, I have been toying around with the gunfire script, and I think it looks good in the pistol when this is done:

Code: Select all

   Fire:
      DDEG B 0 A_JumpIfNoAmmo(21)
      DDEG B 0 A_JumpIfInventory("DeaglesSeq",1,11)
      DDEG B 0 A_Light1
      DDEG B 0 A_PlayWeaponSound("weapons/dualdeaglefire")
      DDEG B 1 Bright A_FireBullets(3,2,-1,5.5,"Puff2",1)
      DDEG C 0 A_Light0
      DDEG C 0 A_FireCustomMissile("BulletCasingSpawner",0,0,-16,0)
      DDEG C 0 A_FireCustomMissile("GunSmokeSpawner",0,0,-9,9)
      DDEG C 0 ACS_Execute(287,0,20,random(2,4),0)
      DDEG C 1
      DDEG D 1 ACS_Execute(287,0,-20,random(2,4),0)  //this one neutralizes the old one
      DDEG A 0 A_GiveInventory("DeaglesSeq",1)
      Goto Ready
      DDEG E 0 A_Light1
      DDEG E 0 A_PlayWeaponSound("weapons/dualdeaglefire")
      DDEG E 1 Bright A_FireBullets(3,2,-1,5.5,"Puff2",1)
      DDEG E 0 A_Light0
      DDEG E 0 A_FireCustomMissile("GunSmokeSpawner",0,0,9,9)
      DDEG E 0 A_FireCustomMissile("BulletCasingSpawner",0,0,16,0)
      DDEG E 0 ACS_Execute(287,0,20,random(2,4),0)
      DDEG F 1
      DDEG G 1 ACS_Execute(287,0,-20,random(2,4),0)    //this one neutralizes the old one
      DDEG A 0 A_TakeInventory("DeaglesSeq",1)
      Goto Ready
In this way, you get a screen shake preserving your aim. The "out of control" aiming shake is good for the heavy weapons, even for the shotgun, as the kick is pretty hard, but in the case of the pistols, while it does have a kickback, you should be able to normalize it easily as you are a trained marine or something like that :P. Still, is not so important, because that's the only weapon i see that could need it.

Also, a combination of A_Recoil (low values) plus this script, makes a good effect ;)
User avatar
Nexar
Posts: 93
Joined: Thu Jul 17, 2008 3:20 am
Location: Sweden

Re: [WIP]DuduKrazy's Guns III

Post by Nexar »

it would be cool With the heart from shadow warrior!
You do not have the required permissions to view the files attached to this post.
User avatar
Duducrazy
Posts: 600
Joined: Sat Aug 21, 2004 6:16 pm

Re: [WIP]DuduKrazy's Guns III

Post by Duducrazy »

Updates:

- You'll no longer take friendly fire from the allied marines.
nexar2 wrote:it would be cool With the heart from shadow warrior!
cool idea. but what kind of attack should this weapon perform?
User avatar
Nexar
Posts: 93
Joined: Thu Jul 17, 2008 3:20 am
Location: Sweden

Re: [WIP]DuduKrazy's Guns III

Post by Nexar »

When you squees that heart a lost soul comming out and kill one enemy then it disappear!
and zombies will drop his heart, so you can pick it up!
User avatar
.+:icytux:+.
Posts: 2659
Joined: Thu May 17, 2007 1:53 am
Location: Finland

Re: [WIP]DuduKrazy's Guns III

Post by .+:icytux:+. »

i likes :D

the bfg was just rad :D if you want it "more powerful" against cyberdemon's etc. try putting +ForceradiusDmg on the projectile :D

Return to “Gameplay Mods”