(Formerly part of GetGameParameter, which is now obsolete)
readonly static int Game.InventoryItemCount
Returns the number of inventory items in the game. This is the total number of items that you
created in the Inventory Items pane of the editor, not how many the player is currently carrying.
Example:
Display("The game has %d inventory items.", Game.InventoryItemCount);
|