Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.01 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.01 KB

Bag Items

Provides an item type definition for wearable containers so players can carry multiple items with them.

Installation

Simply install to your project:

sampctl package install ScavengeSurvive/itemtype-bag

Include in your code and begin using the library:

#include <bag>

Usage

Use DefineBagType to define the given ItemType as a bag item with the specified name and attachment offsets. The attachment offsets are used for attaching the bag to the spine bone when the player wears the bag.

You can use GivePlayerBag to make a player wear a bag item and RemovePlayerBag to remove it.

DestroyPlayerBag destroys the player's currently worn bag item along with all the contained items.

While giving items to a player, you can use the helper function AddItemToPlayer which determines whether to place the given item into the player's inventory or their bag.

Testing

To test, simply run the package:

sampctl package run

And connect to localhost:7777 to test.