# Exports Guide

{% hint style="info" %}
**Client Side Exports**
{% endhint %}

```lua
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 :&#x20;

{% hint style="info" %}
**ShowScreenEffect**
{% endhint %}

**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)

<figure><img src="https://970917987-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FlYp987zqVt3J8sCRO5bL%2Fuploads%2Figg9MLbAY4lm2fFzz5sc%2F%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202024-08-01%20175218.jpg?alt=media&#x26;token=8e784545-493a-449f-8554-c278932efd00" alt=""><figcaption></figcaption></figure>

Sample:

```lua
exports['nazu-bridge']:ShowScreenEffect(effect, msc)
```

```lua
Citizen.CreateThread(function()
    exports['nazu-bridge']:ShowScreenEffect('SwitchOpenMichaelOut', 1000)
end)
```

***

{% hint style="info" %}
**ShowBanner**
{% endhint %}

**Method to display Banner Scale Form.**

1. Title as the first argument.
2. The second argument is the subtitle.
3. The third argument is the time to draw in msc.

<figure><img src="https://970917987-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FlYp987zqVt3J8sCRO5bL%2Fuploads%2FM9HB4tbtmPAa07VijwSg%2F%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202024-08-01%20175048.jpg?alt=media&#x26;token=7b8aa429-b009-4ac2-9e7c-4fe3ae7e56c1" alt=""><figcaption></figcaption></figure>

Sample:

```lua
exports['nazu-bridge']:ShowBanner(Title, SubTitle, DisplayTime)
```

```lua
Citizen.CreateThread(function()
    exports['nazu-bridge']:ShowBanner('YOU WIN', 'Time: ' .. tostring(5.00) .. 'SEC', 4)
end)
```

***

{% hint style="info" %}
**ShowCountDown**
{% endhint %}

**Method to display Count Down Scale Form**

1. The first argument is the value of Red in RGB.&#x20;
2. The second argument is the RGB Green value.&#x20;
3. The third argument is an RGB Blue value.

<figure><img src="https://970917987-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FlYp987zqVt3J8sCRO5bL%2Fuploads%2FBBGgxaSFBkpv6yIAsCZI%2F%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202024-08-01%20175130.jpg?alt=media&#x26;token=1ca3b88e-3270-4ddb-9d97-908e08be9274" alt=""><figcaption></figcaption></figure>

Sample:

```lua
exports['nazu-bridge']:ShowCountDown(Red, Green, Blue, CountTime)
```

```lua
Citizen.CreateThread(function()
    exports['nazu-bridge']:ShowCountDown(255, 222, 23, 5)
end)
```

***

{% hint style="info" %}
**GTAMissionMessage**
{% endhint %}

**Methods to display GTA Notify's ScaleForm**

1. The first argument is a string of Picture.&#x20;
2. Title as the second argument.&#x20;
3. Subject as the third argument.&#x20;
4. Message as the fourth argument.

<figure><img src="https://970917987-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FlYp987zqVt3J8sCRO5bL%2Fuploads%2FKpserTDvF1bEnmpXvDst%2F%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202024-08-01%20175142.jpg?alt=media&#x26;token=f8eeb3c9-6105-4408-802f-824dfa24df2f" alt=""><figcaption></figcaption></figure>

Sample:

```lua
exports['nazu-bridge']:GTAMissionMessage(Picture, Sender, Subject, Message)
```

```lua
Citizen.CreateThread(function()
    exports['nazu-bridge']:GTAMissionMessage('CHAR_HUNTER', 'Title Test', 'Subject Test', '', { "Text_Arrive_Tone", "Phone_SoundSet_Default" })
end)
```

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nazumod-or-script.gitbook.io/re-cord/scripts/nazu-bridge/exports-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
