header general

[SUBMISSION] Super Chaingun

  • YourAverageMoron
  • YourAverageMoron's Avatar
  • Demon
  • Demon
More
11 months 2 weeks ago #11 by YourAverageMoron
Replied by YourAverageMoron on topic [SUBMISSION] Super Chaingun
HOT DAMN THAT'S AMAZING!
I'm not Gothic but if I was then I'd add this.

Please Log in or Create an account to join the conversation.

  • BFG Major Mike
  • BFG Major Mike's Avatar
  • BFG Commando
  • BFG Commando
More
11 months 2 weeks ago #12 by BFG Major Mike
Replied by BFG Major Mike on topic [SUBMISSION] Super Chaingun
Thanks, I made the sprites for him

Please Log in or Create an account to join the conversation.

  • Gothic
  • Gothic's Avatar
  • Moderator
  • Moderator
More
9 months 3 weeks ago #13 by Gothic
Replied by Gothic on topic [SUBMISSION] Super Chaingun
I would only keep the smooth one, the "vanilla" one looks too janky.
The gutted chaingun should be a CustomInventory instead of another weapon, so it doesn't add a duplicate weapon.

Actor SuperCGib : CustomInventory
{
Inventory.PickupMessage "You stole a Mastermind's Super Chaingun!"
Inventory.PickupSound "misc/w_pkup"
States
{
Spawn:
CGIB A -1
Stop
Pickup:
TNT1 A 0 A_GiveInventory("SuperCGun",1)
stop
}
}

Please Log in or Create an account to join the conversation.

  • Margaret Thatcher
  • Margaret Thatcher's Avatar Topic Author
  • Lost Soul
  • Lost Soul
More
9 months 3 weeks ago #14 by Margaret Thatcher
Replied by Margaret Thatcher on topic [SUBMISSION] Super Chaingun
Fixed.

Please Log in or Create an account to join the conversation.

  • Margaret Thatcher
  • Margaret Thatcher's Avatar Topic Author
  • Lost Soul
  • Lost Soul
More
9 months 4 days ago #15 by Margaret Thatcher
Replied by Margaret Thatcher on topic [SUBMISSION] Super Chaingun
Updated the sprites & code.

Please Log in or Create an account to join the conversation.

  • Gothic
  • Gothic's Avatar
  • Moderator
  • Moderator
More
9 months 4 days ago #16 by Gothic
Replied by Gothic on topic [SUBMISSION] Super Chaingun
The new firing animation seems to be skipping frames, the second shot has 1 less frame and it calls A_refire during its animation and not after, is this intended?

Fire:
TNT1 A 0 A_Playsound (SPosFire)
TNT1 A 0 A_GunFlash
CGF2 A 1 A_FireBullets (5.6, 0, 3, 5, "bulletpuff")
CGF2 B 1
CHG2 BD 1
TNT1 A 0 A_Playsound (SPosFire)
TNT1 A 0 A_GunFlash
CGF2 A 1 A_FireBullets (5.6, 0, 3, 5, "bulletpuff")
CHG2 BD 1 A_ReFire
Goto Ready

I think it should be like this:

Fire:
TNT1 A 0 A_Playsound (SPosFire)
TNT1 A 0 A_GunFlash
CGF2 A 1 A_FireBullets (5.6, 0, 3, 5, "bulletpuff")
CGF2 B 1
CHG2 BD 1
TNT1 A 0 A_Playsound (SPosFire)
TNT1 A 0 A_GunFlash
CGF2 A 1 A_FireBullets (5.6, 0, 3, 5, "bulletpuff")
CGF2 B 1
CHG2 BD 1
CHG2 A 1 A_ReFire
Goto Ready

The new muzzleflash looks kinda weird, it seems to darken the barrels instead of brighten them.
The tag should be changed to Super Chaingun.
Also I take you don't mind having 2 super chainguns in your inventory as opposed to using a CustomInventory like I suggested above?

Please Log in or Create an account to join the conversation.

  • Margaret Thatcher
  • Margaret Thatcher's Avatar Topic Author
  • Lost Soul
  • Lost Soul
More
9 months 4 days ago #17 by Margaret Thatcher
Replied by Margaret Thatcher on topic [SUBMISSION] Super Chaingun
Fixededed it to your specifications.

Please Log in or Create an account to join the conversation.

  • Gothic
  • Gothic's Avatar
  • Moderator
  • Moderator
More
9 months 3 days ago #18 by Gothic
Replied by Gothic on topic [SUBMISSION] Super Chaingun

Please Log in or Create an account to join the conversation.