Installation
⚠️

For Developers Only

Installing Types

To be able to use the bridge types copy the .vscode into the root of your resource

ℹ️

You need the vscode extension Lua Language Server coded by Lua published by sumneko

vscodeextension

types

Using The Bridge

To be able to load the bridge you need to add the following to your fxmanifest.lua

ℹ️

Change The Name Of The Bridge To Whatever You Named Your Bridge

lua54 'yes'
use_experimental_fxv2_oal 'yes'
bridge 'reFlow-Bridge'
 
-- If you want to disable a single module (Not Required)
bridge_disable 'target'
 
-- If you want to disable a multiple modules (Not Required)
bridge_disable { 'target', 'zone' }
 
shared_scripts {
    '@reFlow-Bridge/bridge.lua',
}
 
-- If You Are Using Language Files Included The Following
files {
    'locales/*.json', 
}

Module Names

  • database Disables Database Module
  • framework Disables Framework Module
  • inventory Disables Inventory Module
  • target Disables Target Module
  • zone Disables Zone Module
  • locale Disables Locale Module