Difference between revisions of "Classes:BackpackItem"

From ECWolf Wiki
(Ah, also... this other stuff.)
m (Fixed showing duplicate of Inventory)
Line 4: Line 4:
 
| class = Inventory
 
| class = Inventory
 
}}[[Classes]]: {{Class|Actor}} &rarr; >Inventory &rarr; <u>BackpackItem</u><br>
 
}}[[Classes]]: {{Class|Actor}} &rarr; >Inventory &rarr; <u>BackpackItem</u><br>
&ensp;&rarr;{{Class|Ammo}}<br>
 
&ensp;&rarr;{{Class|CustomInventory}}<br>
 
&ensp;&rarr;{{Class|Health}}<br>
 
&ensp;&rarr;{{Class|Key}}<br>
 
&ensp;&rarr;{{Class|KeyGiver}}<br>
 
&ensp;&rarr;{{Class|ScoreItem}}<br>
 
&ensp;&rarr;{{Class|SpearOfDestiny}}<br>
 
&ensp;&rarr;{{Class|Weapon}}<br>
 
== Overview ==
 
This is a base class which defines a Backpack, for expanding how much ammunition the player may carryactor as an inventory item. An inventory item is an actor which can be picked up by or given to the player and may be used for a variety of purposes including implementing counters.
 
 
One thing to remember is that all actors can hold inventory items, not just players.
 
 
== DECORATE Definition ==
 
{{Actor|
 
| type = Internal
 
| name = Inventory
 
| class = Inventory
 
}}[[Classes]]: {{Class|Actor}} &rarr; <u>Inventory</u><br>
 
 
&ensp;&rarr;{{Class|Ammo}}<br>
 
&ensp;&rarr;{{Class|Ammo}}<br>
 
&ensp;&rarr;{{Class|CustomInventory}}<br>
 
&ensp;&rarr;{{Class|CustomInventory}}<br>

Revision as of 18:07, 28 May 2018

Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
  1. You do not need to copy that actor, since it is already defined.
  2. In fact, it's not just useless, it's actually harmful as it can cause problems.
  3. If you want to modify it, or use a modified version, using inheritance is the way to go.
  4. The actor definitions here are put on the wiki for reference purpose only. Learn from them, don't copy them.
  5. There is only one exception: if what you want is changing Ammo capacity, you need to create a new type from Ammo.
BackpackItem
Actor type Internal Game MiniECWolfLogoIcon.png
DoomEd Number None Class Name Inventory


Classes: Actor → >Inventory → BackpackItem
 →Ammo
 →CustomInventory
 →Health
 →Key
 →KeyGiver
 →ScoreItem
 →SpearOfDestiny
 →Weapon

Overview

This is a base class which defines a Backpack, for expanding how much ammunition the player may carry at a time.

The parameters ammo.backpackamount, ammo.backpackboostamount, and ammo.backpackmaxamount in the ammunition's properties determines how much of it should be supplied upon picking up the item, how much the capacity should be increased by, and the maximum amount that may be carried after picking up a second backpack, respectively.

DECORATE Definition

actor BackpackItem : Inventory native
{
}