36 lines
1.8 KiB
Lua
36 lines
1.8 KiB
Lua
--[[
|
|
|
|
/$$$$$ /$$$$$$ /$$$$$$$ /$$
|
|
|__ $$ /$$__ $$ | $$__ $$ |__/
|
|
| $$| $$ \ $$ | $$ \ $$ /$$$$$$ /$$$$$$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$$
|
|
| $$| $$$$$$$$ | $$ | $$ /$$__ $$ /$$_____/| $$ /$$__ $$| $$__ $$ /$$_____/
|
|
/$$ | $$| $$__ $$ | $$ | $$| $$$$$$$$| $$$$$$ | $$| $$ \ $$| $$ \ $$| $$$$$$
|
|
| $$ | $$| $$ | $$ | $$ | $$| $$_____/ \____ $$| $$| $$ | $$| $$ | $$ \____ $$
|
|
| $$$$$$/| $$ | $$ | $$$$$$$/| $$$$$$$ /$$$$$$$/| $$| $$$$$$$| $$ | $$ /$$$$$$$/
|
|
\______/ |__/ |__/ |_______/ \_______/|_______/ |__/ \____ $$|__/ |__/|_______/
|
|
/$$ \ $$
|
|
| $$$$$$/
|
|
\______/
|
|
|
|
Author: Luthous
|
|
Discord: discord.gg/jadesigns
|
|
Website: https://jadesignsfivem.com/ ]]
|
|
|
|
Config = {}
|
|
|
|
Config.Elevators = {
|
|
{ -- List your access points here, where you want to be able to access the elevator menu.
|
|
name = "Golf Club Elevator",
|
|
accessPoints = {
|
|
{ x = -1359.1, y = 79.99, z = 54.12 },
|
|
{ x = -1358.76, y = 75.97, z = 54.12 },
|
|
{ x = -1359.1, y = 79.99, z = 60.65 },
|
|
{ x = -1358.76, y = 75.97, z = 60.65 },
|
|
},
|
|
floors = { -- List your desitnation points here, where you want to be able to teleport to in the elevator menu.
|
|
{ label = "Lobby", coords = { x = -1359.1, y = 79.99, z = 54.12 } },
|
|
{ label = "Floor 1", coords = { x = -1359.1, y = 79.99, z = 60.65 } },
|
|
}
|
|
}
|
|
}
|