Hello, I'm making a WAD and I am attempting to change the properties of the Berserk powerup. So far, I have managed to change the message and increase the health it gives, but how do I change the damage multiplier? Here's the DECORATE code I have so far.
ACTOR Berserk2ElectricBoogaloo : CustomInventory 30420
{
SpawnID 211
+COUNTITEM
+INVENTORY.ALWAYSPICKUP
Inventory.PickupMessage "Whatever"
Inventory.PickupSound "misc/p_pkup"
States
{
Spawn:
PSTR A -1
Stop
Pickup:
TNT1 A 0 A_GiveInventory("PowerStrength")
TNT1 A 0 HealThing(200, 0)
TNT1 A 0 A_SelectWeapon("Fist")
Stop
}
}
Question
Poke
Hello, I'm making a WAD and I am attempting to change the properties of the Berserk powerup. So far, I have managed to change the message and increase the health it gives, but how do I change the damage multiplier? Here's the DECORATE code I have so far.
Share this post
Link to post
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.