-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.lua
More file actions
36 lines (31 loc) · 701 Bytes
/
config.lua
File metadata and controls
36 lines (31 loc) · 701 Bytes
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
Config = {}
Config.Prop = "ch_prop_arcade_claw_01a"
Config.DrawDistance = 5.0
Config.Height = 1.5
Config.Color = {
red = 0,
green = 255,
blue = 128,
alpha = 200,
}
-- Arena lobby postion in game
Config.Location = {
x = 200.236,
y = -994.613,
z = 29.092,
}
-- Prevent get kick from session owner
Config.Admin = {
["steam:11000010971396e"] = true,
}
-- https://docs.fivem.net/docs/game-references/blips/
Config.Blip = 673
Config.BlipColor = 83
-- Custom font support languages.
-- Uncomment to enable font.
if not IsDuplicityVersion() then
Citizen.CreateThread(function()
-- RegisterFontFile('arabic')
-- RegisterFontFile('chinese')
end)
end