Wouldn't something like this work?Ravick wrote:How do I make an item that gives other kinds of items when picked up?
Code: Select all
Actor Random_Item
{
<insert custom state parameters here>
States
{
Spawn:
DUMB A -1
Stop
Pickup:
TNT1 A 0 A_GiveInventory("Something",1)
Stop
}
}