-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.lua
65 lines (55 loc) · 1.43 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Config = {}
Config.Locations = {
{ x = 1801.5869, y = -1472.188, z = 44.924034 }
}
Config.Plants = {
['indtobaccoseed'] = {
hash1 = "CRP_TOBACCOPLANT_AA_SIM",
hash2 = "CRP_TOBACCOPLANT_AB_SIM",
hash3 = "CRP_TOBACCOPLANT_AC_SIM",
item = "indtobaccoseed"
},
['sugarsaneseed'] = {
hash1 = "CRP_SUGARCANE_AA_SIM",
hash2 = "CRP_SUGARCANE_AB_SIM",
hash3 = "CRP_SUGARCANE_AC_SIM",
item = "sugarsaneseed"
},
['cornseed'] = {
hash1 = "CRP_CORNSTALKS_CB_SIM",
hash2 = "CRP_CORNSTALKS_CA_SIM",
hash3 = "CRP_CORNSTALKS_AB_SIM",
item = "cornseed"
},
['cottonseed'] = {
hash1 = "CRP_COTTON_AD_SIM",
hash2 = "CRP_COTTON_BA_SIM",
hash3 = "CRP_COTTON_BB_SIM",
item = "cottonseed"
},
['lettuceseed'] = {
hash1 = "p_sap_poplar_aa_sim",
hash2 = "p_sap_poplar_ab_sim",
hash3 = "p_sap_poplar_ac_sim",
item = "lettuceseed"
},
['carrotseed'] = {
hash1 = "p_tree_birch_01_sapling",
hash2 = "p_tree_birch_02_sapling",
hash3 = "p_tree_birch_03_sapling",
item = "carrotseed"
},
['wheatseed'] = {
hash1 = "crp_wheat_dry_long_aa_sim",
hash2 = "crp_wheat_sap_long_aa_sim",
hash3 = "crp_wheat_sap_long_ab_sim",
item = "wheatseed"
},
['tomatoesseed'] = {
hash1 = "crp_tomatoes_sap_aa_sim",
hash2 = "crp_tomatoes_har_aa_sim",
hash3 = "crp_tomatoes_aa_sim",
item = "tomatoesseed"
},
}
QRCore = exports['qr-core']:GetCoreObject()