-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathconfig.lua
More file actions
35 lines (33 loc) · 1.13 KB
/
config.lua
File metadata and controls
35 lines (33 loc) · 1.13 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
-- @desc Shared config file
-- @author Elio
-- @version 2.0
-- Global configuration
Config = {
language = 'en',
color = { r = 230, g = 230, b = 230, a = 255 }, -- Text color
font = 0, -- Text font
time = 5000, -- Duration to display the text (in ms)
scale = 0.5, -- Text scale
dist = 250, -- Min. distance to draw
}
-- Languages available
Languages = {
['en'] = {
commandName = 'me',
commandDescription = 'Display an action above your head.',
commandSuggestion = {{ name = 'action', help = '"scratch his nose" for example.'}},
prefix = 'the person '
},
['fr'] = {
commandName = 'me',
commandDescription = 'Affiche une action au dessus de votre tête.',
commandSuggestion = {{ name = 'action', help = '"se gratte le nez" par exemple.'}},
prefix = 'l\'individu '
},
['dk'] = {
commandName = 'me',
commandDescription = 'Viser en handling over hovedet.',
commandSuggestion = {{ name = 'Handling', help = '"Tager en smøg op ad lommen" for eksempel.'}},
prefix = 'Personen '
},
}