| Property | Value |
|---|---|
| Native Name | IS_UIAPP_RUNNING_BY_HASH |
| Hash | 0x4E511D093A86AD49 |
| Return Type | BOOL |
| Build | 1207 |
| Parameters | appNameHash (Hash) |
Description: Checks to see if the specified UI app is currently running by its hash.
Usage
Lua (Direct):
local result = IsUiappRunningByHash(appNameHash)
Lua (Hash):
local result = Citizen.InvokeNative(0x4E511D093A86AD49, appNameHash)
Examples
if IsUiappActiveByHash(`PAUSE_MENU`) then
CloseUiappByHashImmediate(`PAUSE_MENU`)
end