-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.lua
More file actions
89 lines (87 loc) · 4.21 KB
/
Copy pathConfig.lua
File metadata and controls
89 lines (87 loc) · 4.21 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
Config = {
-- Change the language of the menu here!.
-- Note fr and de are google translated, if you would like to help out with translation / just fix it for your server check below and change translations yourself
-- try en, fr, de or sv.
MenuLanguage = 'en',
-- Set this to true to enable some extra prints
DebugDisplay = false,
-- Set this to false if you have something else on X, and then just use /e c to cancel emotes.
EnableXtoCancel = true,
-- Set this to true if you want to disarm the player when they play an emote.
DisarmPlayer= false,
-- Set this if you really wanna disable emotes in cars, as of 1.7.2 they only play the upper body part if in vehicle
AllowedInCars = false,
-- You can disable the (F3) menu here / change the keybind.
MenuKeybindEnabled = true,
MenuKeybind = 170, -- Get the button number here https://docs.fivem.net/game-references/controls/
-- You can disable the Favorite emote keybinding here.
FavKeybindEnabled = true,
FavKeybind = 171, -- Get the button number here https://docs.fivem.net/game-references/controls/
-- You can change the header image for the f3 menu here
-- Use a 512 x 128 image!
-- NOte this might cause an issue of the image getting stuck on peoples screens
CustomMenuEnabled = false,
MenuImage = "https://mastercity.ir/files/images/nativeui.png",
-- You can change the menu position here
MenuPosition = "right", -- (left, right)
-- You can disable the Ragdoll keybinding here.
RagdollEnabled = true,
-- You can disable the Facial Expressions menu here.
ExpressionsEnabled = true,
-- You can disable the Walking Styles menu here.
WalkingStylesEnabled = true,
-- You can disable the Shared Emotes here.
SharedEmotesEnabled = true
}
Config.KeybindKeys = {
['num0'] = 11
}
Config.Languages = {
['en'] = {
['emotes'] = 'Emotes',
['danceemotes'] = "🕺 Dance Emotes",
['propemotes'] = "📦 Prop Emotes",
['favoriteemotes'] = "🌟 Favorite",
['favoriteinfo'] = "Select an emote here to set it as your favorite.",
['rfavorite'] = "Reset favorite",
['prop2info'] = "❓ Prop Emotes can be located at the end",
['set'] = "Set (",
['setboundemote'] = ") to be your bound emote?",
['newsetemote'] = "~w~ is now your bound emote, press ~g~CapsLock~w~ to use it.",
['cancelemote'] = "Cancel Emote",
['cancelemoteinfo'] = "~r~X~w~ Cancels the currently playing emote",
['walkingstyles'] = "Walking Styles",
['resetdef'] = "Reset to default",
['normalreset'] = "Normal (Reset)",
['moods'] = "Moods",
['infoupdate'] = "Information",
['infoupdateav'] = "Information (Update available)",
['infoupdateavtext'] = "An update is available, get the latest version from ~y~https://github.com/andristum/dpemotes~w~",
['suggestions'] = "Suggestions?",
['suggestionsinfo'] = "'dullpear_dev' on FiveM forums for any feature/emote suggestions! ✉️",
['notvaliddance'] = "is not a valid dance.",
['notvalidemote'] = "is not a valid emote.",
['nocancel'] = "No emote to cancel.",
['maleonly'] = "This emote is male only, sorry!",
['emotemenucmd'] = "Do /emotemenu for a menu.",
['shareemotes'] = "👫 Shared Emotes",
['shareemotesinfo'] = "Invite a nearby person to emote",
['sharedanceemotes'] = "🕺 Shared Dances",
['notvalidsharedemote'] = "is not a valid shared emote.",
['sentrequestto'] = "درخواست به ~y~ ارسال شد.",
['nobodyclose'] = "کسی نزدیک شما نیست.",
['doyouwanna'] = "برای قبول کردن دکمه Y, و برای رد کردن L را فشار دهید.",
['refuseemote'] = "ایموت رد شد.",
['makenearby'] = "makes the nearby player play",
['camera'] = "Press ~y~G~w~ to use camera flash.",
['makeitrain'] = "Press ~y~G~w~ to make it rain.",
['pee'] = "Hold ~y~G~w~ to pee.",
['spraychamp'] = "Hold ~y~G~w~ to spray champagne",
['bound'] = "Bound ",
['to'] = "to",
['currentlyboundemotes'] = " Currently bound emotes:",
['notvalidkey'] = "is not a valid key.",
['keybinds'] = "🔢 Keybinds",
['keybindsinfo'] = "Use"
}
}