# Client Exports

## **Add XP**

Send the skill name (string) and points (number) to add, returns boolean.

```lua
exports['av_skills']:addXP(skill,points)
```

## Remove XP

Send the skill name (string) and points (number) to remove, returns boolean.

```lua
exports['av_skills']:removeXP(skill,points)
```

## Set XP

Send the skill name (string) and points (number) to set, returns boolean.

```lua
exports['av_skills']:setXP(skill,points)
```

## Get XP

Get a specific skill XP by sending the name, returns a number.

```lua
exports['av_skills']:getXP(skill)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.av-scripts.com/guides/skills-system/client-exports.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
