-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathconfig.lua
48 lines (39 loc) · 957 Bytes
/
config.lua
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
--Truck
Config = {}
-- Limit, unit can be whatever you want. Originally grams (as average people can hold 25kg)
Config.Limit = 25000
-- Default weight for an item:
-- weight == 0 : The item do not affect character inventory weight
-- weight > 0 : The item cost place on inventory
-- weight < 0 : The item add place on inventory. Smart people will love it.
Config.DefaultWeight = 0
-- If true, ignore rest of file
Config.WeightSqlBased = false
-- I Prefer to edit weight on the config.lua and I have switched Config.WeightSqlBased to false:
Config.localWeight = {
bread = 125,
water = 330,
}
Config.VehicleLimit ={
[0]=50000,
[1]=80000,
[2]=90000,
[3]=50000,
[4]=50000,
[5]=30000,
[6]=30000,
[7]=30000,
[8]=10000,
[9]=30000,
[10]=150000,
[11]=80000,
[12]=80000,
[13]=0,
[14]=90000,
[15]=100000,
[16]=100000,
[17]=50000,
[18]=50000,
[19]=50000,
[20]=150000,
}