Copy exports['nazu-bridge']:ShowScreenEffect(effect, msc)
exports['nazu-bridge']:ShowBanner(Title, SubTitle, DisplayTitle)
exports['nazu-bridge']:ShowCountDown(Red, Green, Blue, CountTime)
exports['nazu-bridge']:GTAMissionMessage(Picture, Sender, Subject, Message, PlaySound)
UseCase :
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)
Sample:
Copy exports['nazu-bridge']:ShowScreenEffect(effect, msc)
Copy Citizen.CreateThread(function()
exports['nazu-bridge']:ShowScreenEffect('SwitchOpenMichaelOut', 1000)
end)
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.
Sample:
Copy exports['nazu-bridge']:ShowBanner(Title, SubTitle, DisplayTime)
Copy Citizen.CreateThread(function()
exports['nazu-bridge']:ShowBanner('YOU WIN', 'Time: ' .. tostring(5.00) .. 'SEC', 4)
end)
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.
Sample:
Copy exports['nazu-bridge']:ShowCountDown(Red, Green, Blue, CountTime)
Copy Citizen.CreateThread(function()
exports['nazu-bridge']:ShowCountDown(255, 222, 23, 5)
end)
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.
Sample:
Copy exports['nazu-bridge']:GTAMissionMessage(Picture, Sender, Subject, Message)
Copy Citizen.CreateThread(function()
exports['nazu-bridge']:GTAMissionMessage('CHAR_HUNTER', 'Title Test', 'Subject Test', '', { "Text_Arrive_Tone", "Phone_SoundSet_Default" })
end)