-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.lua
23 lines (19 loc) · 919 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Config = {}
Config.Locale = 'fr'
Config.OpeningHour = 19
Config.ClosingHour = 23
Config.CinemaLocations = {
{ name = 'Downtown', coord = vector3(300.7, 200.7, 104.0), heading = 161.9 },
{ name = 'Morningwood', coord = vector3(-1423.9, -213.6, 46.5), heading = 350.0 },
{ name = 'Vinewood', coord = vector3(302.9, 135.9, 103.0), heading = 350.0 }
}
Config.AvailableCinemaShows = {
{label = 'Cartoon', showName = 'PL_CINEMA_CARTOON', price = 100},
{label = 'Fame or Shame', showName = 'PL_LES1_FAME_OR_SHAME', price = 150},
{label = 'Action', showName = 'PL_CINEMA_ACTION', price = 50},
{label = 'ArtHouse', showName = 'PL_CINEMA_ARTHOUSE', price = 75},
{label = 'Meltown', showName = 'PL_CINEMA_MULTIPLAYER', price = 125},
{label = 'Howitzer', showName = 'PL_WEB_HOWITZER', price = 150},
{label = 'CNT', showName = 'PL_STD_CNT', price = 25},
{label = 'Rangers', showName = 'PL_WEB_RANGERS', price = 170}
}