Skip to content

Commit 572b300

Browse files
committed
Add additional sell settings
1 parent 0c9f7a8 commit 572b300

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

pages/it-drugs/tipps-and-tricks/_meta.json

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
"footer": false
1818
}
1919
},
20+
"additional-sell-settings": {
21+
"title": "Additional Sell Settings",
22+
"theme": {
23+
"footer": false
24+
}
25+
},
2026
"add-custom-dispatch": {
2127
"title": "Change Dispatch",
2228
"theme": {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: it-drugs - Additional Sell Settings
3+
description: How to add additional settings to the sell system.
4+
---
5+
6+
import { Steps } from 'nextra/components'
7+
import ExternLink from '@components/ExternLink'
8+
import { IconExternalLink } from '@tabler/icons-react'
9+
import Accordion from '@components/Accordion'
10+
import AccordionGroup from '@components/AccordionGroup'
11+
12+
# Additional Sell Settings
13+
14+
## Items as a reward
15+
With version **1.4.1** of the script, it is now possible to reward the player with items instead of money. This can be useful if you want to reward the player with items for selling drugs.
16+
To add the feature simple add the following code to the regarding item:
17+
18+
```lua copy
19+
rewardItems = {{name = 'paper', amount = 1}},
20+
```
21+
22+
**Full item exampel:**
23+
```lua
24+
['joint'] = {price = math.random(50, 100), moneyType = 'bank', rewardItems = {{name = 'paper', amount = 1}}},
25+
```
26+
27+
You can also add multiple items as a reward:
28+
29+
```lua
30+
rewardItems = {{name = 'paper', amount = 1}, {name = 'weed_lemonhaze', amount = 1}},
31+
32+
-- Full item example
33+
['joint'] = {price = math.random(50, 100), moneyType = 'bank', rewardItems = {{name = 'paper', amount = 1}, {name = 'weed_lemonhaze', amount = 1}}},
34+
```
35+
36+
Also if you want to reward the player only with items and no money you can set the price to 0 and the moneyType to 'none':
37+
38+
```lua
39+
['joint'] = {price = 0, moneyType = 'none', rewardItems = {{name = 'paper', amount = 1}}},
40+
```

0 commit comments

Comments
 (0)