# Common questions

<details>

<summary>Does it work with other phones than QB-PHONE ?</summary>

Yes You can, All you have to do is write the notification mail function or event in the config.lua:

```lua
function SendUberEatsDeliveryMail(id, name, package)
	TriggerServerEvent('qb-phone:server:sendNewMail', {
        sender = name,
        subject = 'Delivery '..package,
        message = 'Hey, if you are interested we have a pending delivery with id : '..id.." for you.",
        button = {}
    })
end
```

</details>

<details>

<summary>Can I use Other Emotes ?</summary>

Yes You can export or trigger Any Emotes You want

No need to change anything in here, if you are using rpemotes.

```lua
function PlayUberEatsEmote(emote)
	if emote == "c" then
		-- emote = "cancel" for example
		-- Replace it with the Cancel emote you want 
		-- Replace it with the emote you want
	end
	
	-- the others are in the config

	-- You can use any exports or trigger any event you want to...
	TriggerEvent('animations:client:EmoteCommandStart', {emote})
end
```

</details>

<details>

<summary>Problem with rpemotes  !</summary>

if you  have any problems with rpemotes make sure that you have changed  the framework on its config.lua (line 58 ) to this&#x20;

```lua
    -- Used for few framework dependent things. Accepted values: "qb-core", false
    Framework = 'qb-core',
```

</details>


---

# 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://zat-scripts.gitbook.io/zat-scripts/qbcore/uber-eats/common-questions.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.
