Skip to content

Commit 9759eec

Browse files
authored
Update GetZoneScumminess (citizenfx#776)
1 parent 207b36c commit 9759eec

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

ZONE/GetZoneScumminess.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,23 @@ ns: ZONE
88
int GET_ZONE_SCUMMINESS(int zoneId);
99
```
1010
11-
```
12-
cellphone range 1- 5 used for signal bar in iFruit phone
11+
Gets the zone scumminess level, used to calculate the cellphone signal strength.
12+
13+
```c
14+
enum eZoneScumminess
15+
{
16+
SCUMMINESS_POSH = 0,
17+
SCUMMINESS_NICE = 1,
18+
SCUMMINESS_ABOVE_AVERAGE = 2,
19+
SCUMMINESS_BELOW_AVERAGE = 3,
20+
SCUMMINESS_CRAP = 4,
21+
SCUMMINESS_SCUM = 5
22+
}
1323
```
1424

1525
## Parameters
16-
* **zoneId**:
26+
* **zoneId**: The zone id
1727

1828
## Return value
29+
30+
The zone scumminess level

0 commit comments

Comments
 (0)