1. Hi is it possible to get the slot number of the active slot in the belt. Thanks in advance :)
     
  2. Code:
    // BasePlayer
    public Item GetActiveItem()
    {
        if (this.svActiveItemID == 0u)
        {
            return null;
        }
        if (this.IsDead())
        {
            return null;
        }
        return this.inventory.containerBelt.FindItemByUID(this.svActiveItemID);
    }// Item
    public int position;