-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
155 lines (127 loc) · 4.13 KB
/
config.js
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// ____ _ _ _ _
// / ___|| | ___ ___| | _| | ___ __ _ __| |
// \___ \| |/ _ \/ _ \ |/ / | / _ \ / _` |/ _` |
// ___) | | __/ __/ <| |__| (_) | (_| | (_| |
// |____/|_|\___|\___|_|\_\_____\___/ \__,_|\__,_|
// version 2.17.1
// Loading screen language
//
// You can create or edit languages by
// editing/creating files in the languages folder
//
// Default available languages:
// "english"
// "brazilian_portuguese"
config.language = "english"
// Use an image for the logo instead of text
config.logo_use_image = false
// Image filename for the server logo
// (Place the image file in the images folder)
config.logo_image = "logo.png"
// Text to be shown on logo
config.logo_text = "[R.C.T] JapanLife"
// Use the server's name for the logo
config.logo_servername = true
// Center logo?
// "true" or "false"
config.logo_center = true
// Display current map and gamemode?
// "true" or "false"
config.logo_show_info = false
// Use a video for the background?
// Otherwise it will use images
// "true" or "false"
config.background_use_video = false
// Default available videos:
// "blue_rays.webm"
// "purple_blue_rays.webm"
// "green_rays.webm"
//
// You can add your own video backgrounds
// Just make sure they are using webm VP8 format
// (Place the video file in the backgrounds/videos folder)
config.background_video = "purple_blue_rays.webm"
// (Image-background only)
// Enable map-based background image?
// If enabled, the background will be an image based on the server current map
// You need to have a background image with the same name as the map
// Also, the image needs to be in .jpg format
// E.g: gm_flatgrass.jpg, gm_construct.jpg, rp_downtown_v4c_v2.jpg
// "true" or "false"
config.background_map_based = false
// (Image-background only)
// Place one or more images
// Multiple images will automatically shuffle between them
// (Place the image files in the backgrounds/images folder)
config.background_images = [
"image01.png",
]
// (Image-background only)
// Random background images order?
// "true" or "false"
config.background_images_random_order = false
// (Image-background only)
// Delay between background images changes
// in milliseconds
config.background_images_duration = 5000
// (Image-background only)
// Image background fade duration
// in milliseconds
config.background_images_fade_duration = 2000
// Enable background overlay?
// "true" or "false"
config.background_overlay = true
// Background darkening amount
// 0 for none (0%), 100 for pitch black (100%)
config.background_darkening = 30
// Play music during the loading screen?
// "true" or "false"
config.music_enable = true
// Display current music name?
// "true" or "false"
config.music_show = true
// Music playlist
// Add as many youtube ids/urls or audio files you want
// (YouTube only works on Chromium beta)
// (Use ogg files for compatibility with default Gmod)
// (Place the audio files in the music folder)
config.music_playlist = [
{
name: "ZELO - Mad",
youtube: "https://www.youtube.com/watch?v=_UUEQjr6N5g",
},
{
name: "ZELO - Au Sommet",
youtube: "https://www.youtube.com/watch?v=CPu7DVgAvvY",
},
]
// Random music order?
// "true" or "false"
config.music_random_order = true
// Music volume
// Choose a value between 0 (quietest) and 100 (loudest)
config.music_volume = 10
// Use Gmod volume for the music instead of manual volume
config.music_gmod_volume = true
// Enable custom messages?
// "true" or "false"
config.messages_enable = true
// Enter your custom messages below
config.messages_list = [
"Bienvenue sur notre serveur !",
"Amusez vous bien !",
"Merci de respecter les règles du serveurs !",
]
// Random message order?
// "true" or "false"
config.messages_random_order = true
// Delay between message changes
// in milliseconds
config.messages_delay = 5000
// Messages fade duration
// in milliseconds
config.messages_fade_duration = 1000
// Show errors inside Garry's Mod?
// Can be useful for finding errors
// "true" or "false"
config.errors_show_ingame = true