-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathconfig.lua
77 lines (55 loc) · 3.01 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
66
67
68
69
70
71
72
73
74
75
76
77
--========================================================================================================================================================================-
--========================================================================================================================================================================-
--========================================= =========================================-
--========================================= =========================================-
--========================================= =========================================-
--========================================================================================================================================================================-
--========================================================================================================================================================================-
globalConfig = {
language = 'en', --change with 'en' for english, 'fr' for french, 'cz' for czech, 'de' for german
--Set up new line to add a table, xyz are the coordinate, model is the props used as table. The 3 tables for armwrestling are
-- 'prop_arm_wrestle_01' --
-- 'bkr_prop_clubhouse_arm_wrestle_01a' --
-- 'bkr_prop_clubhouse_arm_wrestle_02a' --
props = {
{x = 0, y = 0, z = 0, model = 'prop_arm_wrestle_01'},
{x = 0, y =0, z = 0, model = 'bkr_prop_clubhouse_arm_wrestle_01a'},
{x = 0, y = 0, z = 0, model = 'bkr_prop_clubhouse_arm_wrestle_02a'},
},
showBlipOnMap = false, -- Set to true to show blip for each table
blip = { --Blip info
title="Arm wrestle",
colour=0, --
id=1
}
}
text = {
['en'] = {
['win'] = "You win !",
['lose'] = "You lost",
['full'] = "A wrestling match is already in progress",
['tuto'] = "To win, quickly press ",
['wait'] = "Waiting for an opponent",
},
['fr'] = {
['win'] = "Vous avez gagné !",
['lose'] = "Vous avez perdu",
['full'] = "Un bras de fer est déjà en cours",
['tuto'] = "Pour gagner, appuyez rapidement sur ",
['wait'] = "En attente d'un adversaire",
},
['cz'] = {
['win'] = "Vyhrál jsi !",
['lose'] = "Prohrál jsi",
['full'] = "Zápasový zápas již probíhá",
['tuto'] = "Chcete-li vyhrát, rychle stiskněte ",
['wait'] = "Čekání na protivníka",
},
['de'] = {
['win'] = "Du hast gewinnen !",
['lose'] = "Du hast verloren",
['full'] = "Ein Wrestling Match ist bereits im Gange",
['tuto'] = "Um zu gewinnen, drücken Sie schnell ",
['wait'] = "Warten auf einen Gegner",
},
}