Page 1 of 1
Help With Decorate Line
Posted: Wed Jul 08, 2015 3:33 pm
by enderkevin13
I Need Help With A Certain Line In Decorate.
How Do I Increase The Speed Of Projectiles Shot By Enemies?
("Rocket", 32, 0, 0) Here's The Line.
RE: Help With Decorate Line
Posted: Wed Jul 08, 2015 4:20 pm
by Erma
Assuming you already have the projectile working, you should be changing the speed property of the "rocket" actor itself.
For example ( between

)
actor Rocket : FastProjectile
{
Radius 2
Height 2
Projectile

Speed

100
Damage (9)
Scale 0.75
RenderStyle Add
Alpha 0.85
.....
If anything else; I could change it for you if you could send me the decorate file via pastebin or speedyshare/mediafire (or whatever..).
RE: Help With Decorate Line
Posted: Wed Jul 08, 2015 5:38 pm
by Ænima
You need to replace the default Rocket actor with a new one, or simply inherit from Rocket and just put "Speed 20" or whatever.
http://zdoom.org/wiki/Using_inheritance
RE: Help With Decorate Line
Posted: Wed Jul 08, 2015 6:34 pm
by Cruduxy
Actor SuperRocket : Rocket Replaces Rocket
{ Speed 18 }
RE: Help With Decorate Line
Posted: Tue Jul 14, 2015 3:04 pm
by enderkevin13
(Hi, Sorry I Didn't Reply Sooner, We Were Cut Off From Wifi. >.>)
Anyways, Thanks.