Nevatis-elevator

config.lua

Config = {}

Config.locations = {
    ["Pillbox"] = {
        [1] = {
            ["name"] = "go on the roof",
            ["teleport"] = vector4(338.53, -583.9, 74.16, 252.7),
            ["button"] = vector4(338.53, -583.9, 74.16, 252.7)
        },
        [2] = {
            ["name"] = "Go to the ground floor",
            ["teleport"] = vector4(332.39, -595.77, 43.28, 70.94),
            ["button"] = vector4(331.74, -596.9, 43.28, 245.58)
        },
        [3] = {
            ["name"] = "Go down to the hospital garage",
            ["teleport"] = vector4(342.88, -581.5, 28.8, 73.36),
            ["button"] = vector4(341.77, -582.76, 28.8, 86.83)
        },
    },
}
Config.lang = {
    elevator_button = "Elevator Button",
    thisfloor = "you are on this floor",
    waiting_elevator = "You are waiting for the elevator",
    elevator = " Elevator",
    
}

Last updated