Elevators

How to add new elevators ?

1- Go to sh_elevators.lua and add new elevator

   ['uniqe-elevatorID'] = {
        [1] = {
            coords = vec3(-658.87, -1110.55, 15.06),
            heading = 62.64, 
            title = 'Main Floor', 
            description = 'Lobby & Reciption',
            target = {
                width = 2.6,
                length = 2,
                heading = 334,
            } 
        },
        [2] = {
            coords = vec3(-655.47, -1110.4, 21.834287643433),
            heading = 62.64, 
            title = 'Floor 1', 
            description = 'Floor 1',
            target = {
                width = 2.6,
                length = 2,
                heading = 334, 
            } 
        },

         -- ...

    },

2- Add the uniqe-elevatorID in hotel configuration

Elevators = {['uniqe-elevatorID'] = true, ['uniqe-elevatorID-2'] = true}, -- In sh_elevators.lua

Last updated