> ## Documentation Index
> Fetch the complete documentation index at: https://docs.awokenlabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install Awoken Drugs Phone.

## Asset download

<Info>
  To find the asset, you must have made the purchase using your own keymaster account. Otherwise, you can use the transfer system to move the asset to a different keymaster account.
</Info>

Once the purchase is made on our official website, you will receive your asset directly in your [cfx portal](https://portal.cfx.re/) in your own panel you can download the asset and install it following the following documentation.

<Steps>
  <Step title="Install dependencies">
    * `awoken-ui`
    * `awoken-inventory` (optional but recommended)
    * `oxmysql`
    * Your framework
  </Step>

  <Step title="Drop in the resource">
    Extract into `resources/[awoken]/awoken-drugs-phone`.
  </Step>

  <Step title="Add the burner item">
    The phone is activated by a `burner_phone` item. Add it to your
    inventory's item list:

    ```lua data/items.lua theme={"dark"}
    ['burner_phone'] = {
        label = 'Burner Phone',
        weight = 150,
        stack = false,
        client = {
            export = 'awoken-drugs-phone.openPhone',
        },
    },
    ```
  </Step>

  <Step title="Start the resource">
    ```cfg server.cfg theme={"dark"}
    ensure awoken-drugs-phone
    ```
  </Step>
</Steps>
