-
Notifications
You must be signed in to change notification settings - Fork 2
/
pawn.json
78 lines (78 loc) · 1.56 KB
/
pawn.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"user": "openmultiplayer",
"repo": "pawn-test-scripts",
"dependencies": [
"sampctl/samp-stdlib",
"pawn-lang/YSI-Includes",
"pawn-lang/sa-mp-fixes"
],
"build": {
"constants": {
"USE_FIXES": "0"
}
},
"builds": [
{
"name": "main",
"includes": ["."],
"input": "test.pwn",
"output": "gamemodes/test.amx"
},
{
"name": "format_1",
"input": "single_tests/format_1.pwn",
"output": "single_tests/format_1.amx"
},
{
"name": "format_2",
"input": "single_tests/format_2.pwn",
"output": "single_tests/format_2.amx"
}
],
"local": true,
"runtime": {
"version": "0.3.7",
"mode": "y_testing",
"rcon_password": "password",
"port": 7777,
"hostname": "SA-MP Server",
"maxplayers": 25,
"language": "",
"mapname": "Tester City",
"weburl": "www.sa-mp.com",
"gamemodetext": "unit-tests",
"announce": true,
"lanmode": true,
"query": true,
"rcon": false,
"logqueries": false,
"sleep": 5,
"maxnpc": 0,
"stream_rate": 1000,
"stream_distance": 200,
"onfoot_rate": 30,
"incar_rate": 30,
"weapon_rate": 30,
"chatlogging": true,
"timestamp": true,
"messageholelimit": 3000,
"messageslimit": 500,
"ackslimit": 3000,
"playertimeout": 10000,
"minconnectiontime": 0,
"lagcompmode": 1,
"connseedtime": 300000,
"db_logging": false,
"db_log_queries": false,
"conncookies": true,
"cookielogging": false,
"output": true,
"extra": {
"in_car_rate": "50",
"lag_compensation": "1",
"my_custom_var": "Hello World",
"server_name": "OMP Test Server",
"try$this-varname": "and%value!!!"
}
}
}