DerDevHD / Lifts

A fivem script resource which allows you to add lifts/elevators to your server. No ESX is required

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lifts

A fivem script resource which allows you to add lifts/elevators to your server. No ESX is required.

Setup

The setup is quite easy.

  1. Downlaod the latest release
  2. Drag the script into your server resources
  3. Add start lifts to your server.cfg
  4. Configure the script
    • Change your locale
      At the time, only german or english is supported
    • Add new lifts
      Example
      { vector3(135.45, -763.8, 45.8), vector3(135.45, -763.8, 234.2) } -- FIB Building
  5. Done

Example configuration

Config = {}

Config.Locale = 'en'

Config.AllowSounds = true

Config.Lifts = {{
        vector3(135.45, -763.8, 45.8),
        vector3(135.45, -763.8, 234.2)
    },{ -- FIB Building
        vector3(471, -985, 30.7),
        vector3(464, -984.2, 35.9),
        vector3(464, -984.2, 39.9)
    } -- Police Station
}

Adding new locales

locale.lua

Locale.IDENTIFIER = {
    usage = "example usage",
    topfloor = "example error message 1",
    bottomfloor = "example error message 2"
}

config.lua

Config.Locale = "identifier"

If you have suggestions for new locales, please open an issue.

Contact

Discord: DerDevHD#5411
Discord Server: Coming Soon

About

A fivem script resource which allows you to add lifts/elevators to your server. No ESX is required

License:GNU General Public License v3.0


Languages

Language:Lua 100.0%