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

# Home

> Documentation for all of jaksam's scripts

Here you will find all documentation for jaksam's scripts. Some pages may require coding knowledge.

<Tip>
  Installing and configuring a script? Stay on this **Main** tab. Integrating exports, events, or hooks into your own code? Switch to the **API** tab at the top of the page.
</Tip>

## Products

<CardGroup cols={3}>
  <Card title="Jaksam Inventory" icon="boxes-stacked" href="/jaksam-inventory/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Jobs Creator" icon="briefcase" href="/jobs-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Drugs Creator" icon="pills" href="/drugs-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Doors Creator" icon="door-open" href="/doors-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Missions Creator" icon="bullseye" href="/missions-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Blips Creator" icon="location-dot" href="/blips-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Farming Creator" icon="tractor" href="/farming-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Shops Creator" icon="cart-shopping" href="/shops-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Robberies Creator" icon="mask" href="/robberies-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Vehicles Keys" icon="key" href="/vehicles-keys/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Dealerships Creator" icon="car" href="/dealerships-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Races Creator" icon="flag-checkered" href="/races-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Trackers Creator" icon="satellite-dish" href="/trackers-creator/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Easy Allowlist" icon="shield-check" href="/easy-allowlist/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Billing UI" icon="file-invoice-dollar" href="/billing-ui/home">
    Setup, guides, and FAQ.
  </Card>

  <Card title="Luxury Clothes Theft" icon="shirt" href="/luxury-clothes-theft/home">
    Setup, guides, and FAQ.
  </Card>
</CardGroup>

## General

<CardGroup cols={2}>
  <Card title="How to update" icon="download" href="jaksams-scripts/how-to-update-the-scripts">
    Learn how to update your scripts to the latest version.
  </Card>

  <Card title="Trouble shooting" icon="wrench" href="jaksams-scripts/troubleshooting">
    Fix common issues like crashes and item errors.
  </Card>

  <Card title="Common FAQ" icon="circle-question" href="jaksams-scripts/common-faq">
    Answers to frequently asked questions.
  </Card>

  <Card title="Nexus terms" icon="file-contract" href="jaksams-scripts/nexus-terms">
    Terms of use for scripts distributed via Nexus.
  </Card>
</CardGroup>

## How to use the documentation

Most of the scripts will have a folder named **integrations**, where you can add the integration code at the bottom of the files. So most of the time, you will only need to add your code inside these files, not in other scripts.

<Tip>
  Be sure to read the comments carefully, they'll explain everything you need right above the lines of code.
</Tip>

### Integration files

<CardGroup cols={3}>
  <Card title="cl_integrations.lua" icon="laptop">
    Code for **client side** scripts, for example replacing notifications or the progress bar. Usually where you insert code from the `Client` category of the documentation.
  </Card>

  <Card title="sh_integrations.lua" icon="arrows-left-right">
    Code that runs **both on client and server side**, usually external script names, so you can edit them if your server uses a different name than the default one.
  </Card>

  <Card title="sv_integrations.lua" icon="server">
    Code for **server side** scripts. Usually where you insert code from the `Server` category of the documentation.
  </Card>
</CardGroup>

<Info>
  If you're looking for an option that you can't find in the normal config/settings, it's probably inside the integrations files.
</Info>


## Related topics

- [Developer Overview](/developers/overview.md)
