Death Wyvern Decorate. (Fixed)

Sprites, textures, sounds, code, and other resources belong here. Share and share-alike!
Forum rules
Before posting your Resource, please make sure you can answer YES to any of the following questions:
  • Is the resource ENTIRELY my own work?
  • If no to the previous one, do I have permission from the original author?
  • If no to the previous one, did I put a reasonable amount of work into the resource myself, such that the changes are noticeably different from the source that I could take credit for them?
If you answered no to all three, maybe you should consider taking your stuff somewhere other than the Resources forum.

Consult the Resource/Request Posting Guidelines for more information.

Please don't put requests here! They have their own forum --> here. Thank you!
Post Reply
User avatar
Fury3
Posts: 41
Joined: Sat May 29, 2010 11:25 pm

Death Wyvern Decorate. (Fixed)

Post by Fury3 »

Still trying stop around this circle? Here to fixed that code from Death Wyvern. And plus, I fixed the ice.

Code: Select all

ACTOR DeathWyvern : Dragon replaces Dragon
{ 
  Health 640 
  Speed 15
  Radius 31
  Height 56
  BloodColor White
  PainChance 100
  Mass 400
  REACTIONTIME 8 
  MONSTER
  +BOSSDEATH
  +BOSS
  +NOGRAVITY
  +FLOAT
  +NOTARGET
  +DONTMORPH
  +NOICEDEATH
  -NOBLOOD
  SeeSound "dragonsight"
  PainSound "dragonpain"
  ActiveSound "dragonactive"
  DeathSound "dragondeath"
  Obituary "%o was incinerated by an Death Wyvern."
  States
  {
  Spawn: 
    DRAG ABCDCB 6 A_Look 
    Loop 
  See: 
    DRAG AABB 2 A_Chase 
    DRAG C 0 A_PlaySound("dragonwingflap")
    DRAG CCDDCCBB 2 A_Chase 
    Loop 
  Missile:
    DRAG E 0 A_FaceTarget
    DRAG E 8 A_DragonAttack
    DRAG E 0 A_FaceTarget
    DRAG E 8 A_DragonAttack
    DRAG E 0 A_FaceTarget
    DRAG E 8 A_DragonAttack
    DRAG E 0 A_FaceTarget
    DRAG E 8 A_DragonAttack
    Goto See + 3
  Pain: 
    DRAG F 4 
    DRAG F 4 A_Pain 
    Goto See
  Death:
    DRAG G 5 A_Scream
    DRAG H 4 A_NoBlocking
    DRAG I 4
    DRAG J 4 A_DragonCheckCrash
    Wait
  Crash:
    DRAG KL 5
    DRAG M -1
    Stop 
  Ice:
    DRAG N 5 A_FreezeDeath
    DRAG N 1 A_FreezeDeathChunks
    Wait
  }
}
CaptainToenail
Posts: 3975
Joined: Fri Jul 06, 2007 9:16 am

Re: Death Wyvern Decorate. (Fixed)

Post by CaptainToenail »

Bloodcolor white?

:|
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Death Wyvern Decorate. (Fixed)

Post by InsanityBringer »

He's supposed to fly in a circle. It's no bug

also a dragon should probably keep on gliding when attacking (do you ever see a bird stop moving mid-air?), it doesn't look like that happens.
Gez
 
 
Posts: 17946
Joined: Fri Jul 06, 2007 3:22 pm

Re: Death Wyvern Decorate. (Fixed)

Post by Gez »

I don't see how this is "fixed".
User avatar
Shadelight
Posts: 5113
Joined: Fri May 20, 2005 11:16 am
Location: Labrynna

Re: Death Wyvern Decorate. (Fixed)

Post by Shadelight »

Gez wrote:I don't see how this is "fixed".
User avatar
NeuralStunner
 
 
Posts: 12328
Joined: Tue Jul 21, 2009 12:04 pm
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 11
Graphics Processor: nVidia with Vulkan support
Location: capital N, capital S, no space
Contact:

Re: Death Wyvern Decorate. (Fixed)

Post by NeuralStunner »

InsanityBringer wrote:He's supposed to fly in a circle. It's no bug
Yeah, you see "A_DragonFlight"? That causes him to follow [wiki=Classes:Dragon]map spots placed in the map[/wiki] specifically to make him fly in circles and other patterns. He's not meant to chase like other monsters, or really to even be used without the corrosponding map spots.
Fury3 wrote:And plus, I fixed the ice.
This is the one thing I can see being helpful. (Did vanilla actually employ the frozen sprites?) But that would've been better reported as a Decorate bug.
User avatar
Godzilla
Posts: 127
Joined: Sat Jan 02, 2010 5:54 pm
Location: Mexico

Re: Death Wyvern Decorate. (Fixed)

Post by Godzilla »

Is this the one from AEoD?
Well... Atleast it's not like the ZDwars one which just shoots out Green Chaos Serpent's fire balls.
User avatar
Fury3
Posts: 41
Joined: Sat May 29, 2010 11:25 pm

Re: Death Wyvern Decorate. (Fixed)

Post by Fury3 »

NeuralStunner wrote:
InsanityBringer wrote:He's supposed to fly in a circle. It's no bug
Yeah, you see "A_DragonFlight"? That causes him to follow [wiki=Classes:Dragon]map spots placed in the map[/wiki] specifically to make him fly in circles and other patterns. He's not meant to chase like other monsters, or really to even be used without the corrosponding map spots.
Fury3 wrote:And plus, I fixed the ice.
This is the one thing I can see being helpful. (Did vanilla actually employ the frozen sprites?) But that would've been better reported as a Decorate bug.
Godzilla wrote:Is this the one from AEoD?
Well... Atleast it's not like the ZDwars one which just shoots out Green Chaos Serpent's fire balls.
Chasing and Ice... It doesn't matter by any chances.
User avatar
ZDG
Posts: 918
Joined: Sat Jan 02, 2010 12:01 pm
Location: in SlumpEd

Re: Death Wyvern Decorate. (Fixed)

Post by ZDG »

Fury3 wrote: Chasing and Ice... It doesn't matter by any chances.
Apart from the ice, it DOES matters, since it's the original behavior.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Death Wyvern Decorate. (Fixed)

Post by InsanityBringer »

The original death wyvern didn't have any ice states (according to the source's INFO.C file, it could be hiding elsewhere but this is usually quite organizied), so that's also a "improvement", but it really doesn't matter :P
User avatar
NeuralStunner
 
 
Posts: 12328
Joined: Tue Jul 21, 2009 12:04 pm
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 11
Graphics Processor: nVidia with Vulkan support
Location: capital N, capital S, no space
Contact:

Re: Death Wyvern Decorate. (Fixed)

Post by NeuralStunner »

InsanityBringer wrote:The original death wyvern didn't have any ice states (according to the source's INFO.C file, it could be hiding elsewhere but this is usually quite organizied)
Thanks for that. ;)
Post Reply

Return to “Resources”