> ## 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.

# Reset territory points

> Reset a faction's points in a territory to 0.

Resets points for a faction in a territory (sets to 0). Ownership is recalculated after the reset.

```lua Export theme={null}
exports["drugs_creator"]:resetTerritoryPoints(territory, job)
```

### Parameters

| Name        | Data Type | Description                                                        |
| ----------- | --------- | ------------------------------------------------------------------ |
| `territory` | string    | Territory name, or `"*"` to target all territories                 |
| `job`       | string    | Job/gang name to reset, or `"*"` to target all configured factions |

## Example

```lua theme={null}
-- Reset points for "ballas" in "RANCHO"
exports["drugs_creator"]:resetTerritoryPoints("RANCHO", "ballas")

-- Full reset: all factions in all territories
exports["drugs_creator"]:resetTerritoryPoints("*", "*")
```


## Related topics

- [Territories](/drugs-creator/server/territories/index.md)
- [Give territory points](/drugs-creator/server/territories/give-territory-points.md)
- [Remove territory points](/drugs-creator/server/territories/remove-territory-points.md)
- [Server](/drugs-creator/server/index.md)
