[BUG] Give all cheat
Posted: Sat Nov 05, 2005 5:43
In the older gzdoom, typing give all would give the max number of items for the player (wings of wrath) 25, but now it only gives one of each
It did. If you go back to 2.0.63a and type "give all" you'll get 25 of each inventory item. I'm not especially bothered by the change, I'm just saying.nwbeeman wrote:cool, i just thought it worked diffrently before. Guess not
Well, it's not normal for me. I'm getting my custom inventory items with give all.Cutmanmike wrote:Is this normal?
Code: Select all
ACTOR ChiGem : Inventory
{
Scale 0.6
Inventory.Amount 1
Inventory.MaxAmount 1
Inventory.Icon ARTIGEM
Inventory.PickupSound "misc/p_pkup"
Inventory.PickupMessage "Chi Gem"
+INVBAR
States
{
Spawn:
CHIG AB 8
loop
Use:
TNT1 A 0 A_Print("Equip the Unmaker to use this item")
TNT1 A 0 A_PlayWeaponSound("chigem/use")
Fail
}
}