Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit 40d1579

Browse files
committed
Updated docs for v1.0
1 parent d9c0e8e commit 40d1579

4 files changed

Lines changed: 36 additions & 3 deletions

File tree

File renamed without changes.

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@
3434
* /note {first} {last} {note} - Adds a note to a civilian
3535
* /ticket {first} {last} {amount} {reason} - Adds a ticket to a civilian
3636
* /notes {first} {last} - Displays all of the notes of a civilian
37+
* /bolos - Displays all current BOLOs
38+
* /bolo {desc} - Adds a new BOLO to the database
39+
* /ticket {first} {last} {amount} {reason} - Tickets a Civilian
40+
* /tickets {first} {last} - Displays all tickets for a Civilian
3741

3842
## In the works
3943

4044
1. Arrest ability - `/arrest {first} {last}` arrests a ped and show it in the system
4145

42-
2. BOLO - `/bolo {first} {last}` `/bolo {plate}` Either one will show a bolo tag on the type if searched up in the system
46+
2. Warrant Types - `/warrant {type}` have different types of bench warrants and also a toggle for outstanding
4347

44-
3. Tickets Extension - `/tickets {first} {last}` System to display all of the tickets a Civilian has gotten
48+
3. Database - A civilian database for storing civilians
4549

46-
4. Warrant Types - `/warrant {type}` have different types of bench warrants and also a toggle for outstanding
50+
4. Permissions - Permissions for Civilians, Cops, and Disptachers

docs/api.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ Dispatchsystems API is sort of new. Because it is in the works there is no set A
66

77
These events will be in the context of C# and **NOT** lua.
88

9+
```csharp
10+
// Eventname: dispatchsystem:ticketCiv
11+
12+
void TriggerServerEvent("dispatchsystem:ticketCiv", String invokerHandle, String first, String last, String ticket, Single amount);
13+
```
14+
***
15+
```csharp
16+
// Eventname: dispatchsystem:civTickets
17+
18+
void TriggerServerEvent("dispatchsystem:civTickets", String invokerHandle, String first, String last);
19+
```
20+
***
921
```csharp
1022
// Eventname: dispatchsystem:getCivilian
1123

docs/server.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Setting up the Server
2+
3+
## Toggling the server
4+
5+
Basically, just open up the `settings.ini` that comes with the server, and change the option under the `[server]` tag that says `enable` to `0`
6+
7+
## Setting up the server
8+
9+
Don't change any settings in the INI, unless you are having problems. All of the settings in there should work with your average joe
10+
11+
## Setting up the client
12+
13+
In the `settings.ini`, change the the IP of the server to the IP of your server, and keep the PORT the same unless you changed it on the server's side
14+
15+
## Ports to have open
16+
17+
If you are running this off a basic home internet, then you will need to open the PORT `33333`, and that is 5 threes just to confirm. If you are running this off a VPS or hosting website then you should be good from opening ports.

0 commit comments

Comments
 (0)