Old Resources
nazu-bridge
Welcome to nazu-bridge documentation.
Category
FREEESCROWEDHaven't bought yet?
Installation
Download the dependencies
Download main resource
Copy and paste this on your server.cfg
# you need to ensure first before ensure nabu-bridge
ensure ox_lib
# Nazu Bridge
ensure nazu-bridge
Done
enjoy it !
Exports
Client side exports
ShowScreenEffect
Method to show Banner Scale Form.
The first argument is the name of the effect The second argument is the display time of the effect in msc. (int type)
exports['nazu-bridge']:ShowScreenEffect(effect, msc)
sample.lua
Citizen.CreateThread(function()
exports['nazu-bridge']:ShowScreenEffect('SwitchOpenMichaelOut', 1000)
end)

ShowBanner
Method to display Banner Scale Form.
- Title as the first argument.
- The second argument is the subtitle.
- The third argument is the time to draw in msc.
exports['nazu-bridge']:ShowBanner(Title, SubTitle, DisplayTime)
sample.lua
Citizen.CreateThread(function()
exports['nazu-bridge']:ShowBanner('YOU WIN', 'Time: ' .. tostring(5.00) .. 'SEC', 4)
end)

ShowCountDown
Method to display Count Down Scale Form
- The first argument is the value of Red in RGB.
- The second argument is the RGB Green value.
- The third argument is an RGB Blue value.
exports['nazu-bridge']:ShowCountDown(Red, Green, Blue, CountTime)
sample.lua
Citizen.CreateThread(function()
exports['nazu-bridge']:ShowCountDown(255, 222, 23, 5)
end)

GTAMissionMessage
Methods to display GTA Notify's ScaleForm
- The first argument is a string of Picture.
- Title as the second argument.
- Subject as the third argument.
- Message as the fourth argument.
exports['nazu-bridge']:GTAMissionMessage(Picture, Sender, Subject, Message)
sample.lua
Citizen.CreateThread(function()
exports['nazu-bridge']:GTAMissionMessage('CHAR_HUNTER', 'Title Test', 'Subject Test', '', { "Text_Arrive_Tone", "Phone_SoundSet_Default" })
end)
