> For the complete documentation index, see [llms.txt](https://peuren.gitbook.io/peuren/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://peuren.gitbook.io/peuren/peuren_drugs/configuration/reputation.md).

# Reputation

Reputation configuration (sh\_reputation.lua)

## Reputation levels

```lua
Config.Reputation.Types = {
    ['corner_selling'] = {
        levels = { min = 1, max = 100 },
        multipliers = {--These values multiply the default values
            newCustomerInterval = 0.5,--How long will the player will need to wait in seconds till a new customer shows up
            robberyChance = 0.05,--Lowers robbery chance by the customer when doing a drug deal
            callPoliceChance = 0.5,--The chance of the customer calling police on the player
            priceBuff = 0.3--Increases customer offered price
        }
    },

    ['street'] = {
        levels = { min = 1, max = 100 },
        multipliers = {--These values multiply the default values
            newCustomerInterval = 0.5,--How long will the player will need to wait in seconds till a new customer shows up
            robberyChance = 0.05,--Lowers robbery chance by the customer when doing a drug deal
            callPoliceChance = 0.5,--The chance of the customer calling police on the player
            priceBuff = 0.3--Increases customer offered price
        }
    }
}
```
