TPStashEvent.DepositCosmetic

TPStashEvent.DepositCosmetic(
    userId,
    character_uuid,
    item_slug,
    item_quantity,
    storage_type,
    storage_slug,
    storage_category_slug
)

Description

DepositCosmetic collects the events that occur when a character puts a cosmetic item in its storage.

The types of items
  • Equipment: Weapons, armors, accessories, and other gears

  • Consumable: Potion, bandage, and other consumable items

  • Cosmetic: Costumes that do not affect the player or character’s ability and other essential attributes

  • Token: Alternative currency with limited use such as "token for pvp shop" including an entrance ticket

  • Material: Raw materials for gear upgrades, character ranking up, and so on

  • Infrastructure: Fixed assets that affect the whole game indirectly

  • Pet: Pet that a character carries

  • RandomBox: A random box that can be opened whose content varies depending on the probability

Parameters

Name Description Required

UserId

Player’s unique user ID (not a character’s ID) that is given by Roblox: Player.UserId

Required

character_uuid

Player’s character’s unique lD

If there is no character in the game or If you want to use it for the player, not a character, set character_uuid to TentuPlayKeyword._DUMMY_CHARACTER_ID_.

Required

item_slug

Unique identifier of the item (for example, "weapon_sword_dagger" and "shield_kite_rare")

Required

item_quantity

The number or amount of cosmetic item deposited

Required

storage_type

Type of the player’s storage (for example, "personal_storage" and "guild_storage")

TPStashEvent.StorageType.Unknown
TPStashEvent.StorageType.Personal
TPStashEvent.StorageType.Guild

Optional

storage_slug

Unique identifier of player’s personal storage

Optional

storage_category_slug

Unique identifier of the category that the player’s personal storage belongs to

Optional