forked from ThymonA/TigoAntiCheat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfxmanifest.lua
76 lines (54 loc) · 1.38 KB
/
fxmanifest.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
fx_version 'adamant'
game 'gta5'
description 'This is an anti cheat made by Tigo for FiveM, this resource makes cheating on FiveM a lot harder.'
name 'TigoAntiCheat'
author 'TigoDevelopment'
contact '[email protected]'
version '1.0.0'
server_scripts {
'shared/locale.lua',
'locales/en.lua',
'locales/nl.lua',
'locales/pl.lua',
'locales/dk.lua',
'config.lua',
'server/common.lua',
'server/functions.lua',
'shared/functions.lua',
'shared/ansicolors.lua',
'server/tokenizer/main.lua',
'server/vpn/check.lua',
'server/main.lua',
'server/anticheat/fake_events.lua',
'server/anticheat/response.lua',
'server/commands.lua'
}
client_scripts {
'shared/locale.lua',
'locales/en.lua',
'locales/nl.lua',
'locales/pl.lua',
'locales/dk.lua',
'locales/tr.lua',
'config.lua',
'client/common.lua',
'client/functions.lua',
'shared/functions.lua',
'shared/ansicolors.lua',
'client/tokenizer/main.lua',
'client/main.lua',
'client/anticheat/godmode.lua',
'client/anticheat/lynx_inject.lua',
'client/anticheat/weapons.lua',
'client/anticheat/disabledkeys.lua',
'client/anticheat/vehicle.lua',
'client/anticheat/response.lua',
'client/anticheat/fake_events.lua',
'client/anticheat/objects.lua'
}
exports {
'getSharedObject'
}
server_exports {
'getSharedObject'
}