Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
The ps-camera script allows you to capture images throughout the city, serving as a tool for gathering evidence or simply snapping enjoyable photos!

# Setup

#older qb-core
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please fix the headers

* Add items to qb-core > shared > items.lua
```
['camera'] = {['name'] = 'camera', ['label'] = 'Camera', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Camera to take pretty pictures.'},
['photo'] = {['name'] = 'photo', ['label'] = 'Saved Pic', ['weight'] = 500, ['type'] = 'item', ['image'] = 'photo.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Brand new picture saved!'},
```

#new qb-core
* Add items to qb-core > shared > items.lua
```
camera = {name = 'camera', label = 'Camera', weight = 1000, type = 'item', image = 'camera.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Camera to take pretty pictures.'},
photo = {name = 'photo', label = 'Saved Pic', weight = 500, type = 'item', image = 'photo.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Brand new picture saved!'},
```
* Add pictures for items to your-inventory > html > images
* Add Discord webhook to ps-camera > server > [Line 4](https://github.com/Project-Sloth/ps-camera/blob/cc0c2c35ab15840abe7533521a3ed4aac729cc60/server/sv_main.lua#L4)

Expand Down