Treasure Chest will not drop items when destroyed.

Ask about ACS, DECORATE, ZScript, or any other scripting questions here!

Moderator: GZDoom Developers

Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.

Please bear in mind that the people helping you do not automatically know how much you know. You may be asked to upload your project file to look at. Don't be afraid to ask questions about what things mean, but also please be patient with the people trying to help you. (And helpers, please be patient with the person you're trying to help!)
User avatar
Hidden Hands
Posts: 1053
Joined: Tue Sep 20, 2016 8:11 pm
Location: London, England

Treasure Chest will not drop items when destroyed.

Post by Hidden Hands »

I have spent a while trying to get this to work to no avail. The treasure chest contains currency, and the idea is the player shoots it to destroy it and reveal the treasure inside. I have coded it with a Decorate file in the style of a monster that drops an item, unyet it will not work. I have checked the wiki but cannot find what I am doing wrong. My code is as follows:

Code: Select all

ACTOR BubbleChest 32723
{
//$Category Items
//$Sprite CHSTA0
//$Title Bubble Chest
  Radius 8
  Height 16
  Health 4
  Speed 0
  PainChance 100
  +Solid
  +SHOOTABLE
  +NOBLOOD
  +ACTIVATEMCROSS
  +DONTGIB
  +NOICEDEATH
  +OLDRADIUSDMG
  DeathSound "BREAK1"
  DropItem "RedBubble"
  States
  {
  Spawn: 
    CHST A -1
    Loop
  Death:
    CHST B 5 A_Scream
	CHST C 5
	CHST D 5
	CHST E 5
	CHST F 5
	CHST G 5
	Stop
  }
}
Am I missing a detail here?

Thanks in advance.
Blue Shadow
Posts: 5039
Joined: Sun Nov 14, 2010 12:59 am

Re: Treasure Chest will not drop items when destroyed.

Post by Blue Shadow »

It needs to call [wiki]A_NoBlocking[/wiki] in its Death state.
User avatar
Hidden Hands
Posts: 1053
Joined: Tue Sep 20, 2016 8:11 pm
Location: London, England

Re: Treasure Chest will not drop items when destroyed.

Post by Hidden Hands »

You sir, are a legend. Thank you so much, works like a dream. Thank you!

Return to “Scripting”