[BUG] Give all cheat
Moderator: Graf Zahl
- nwbeeman
- Posts: 146
- Joined: Mon Oct 17, 2005 1:18
- Location: Tampa
[BUG] Give all cheat
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
- Graf Zahl
- GZDoom Developer
- Posts: 7148
- Joined: Wed Jul 20, 2005 9:48
- Location: Germany
- Contact:
- Enjay
- Developer
- Posts: 4748
- Joined: Tue Aug 30, 2005 23:19
- Location: Scotland
- Contact:
- Cutmanmike
- Posts: 482
- Joined: Sat Sep 03, 2005 23:34
- Enjay
- Developer
- Posts: 4748
- Joined: Tue Aug 30, 2005 23:19
- Location: Scotland
- Contact:
- TheDarkArchon
- Posts: 1000
- Joined: Wed Jul 06, 2005 11:58
- Location: What's that fucking smell
- Contact:
Doesn't work with my Chi Gem which inherits from "Inventory". The other two items, the stimpack (Inherits from "HealthPickup") and weapons chip (ArtiTomeOfPower), work fine.
The code for the Chi Gem:
The code for the Chi Gem:
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
}
}