warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetPlayerSirenState
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Gets the siren state of the player's vehicle.
Parameters
Name | Description |
---|---|
playerid | The ID of the player. |
Return Values
Returns the vehicle siren state.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/siren", true))
{
if (!IsPlayerInAnyVehicle(playerid))
{
return 1;
}
new bool:sirenState = GetPlayerSirenState(playerid);
SendClientMessage(playerid, 0xFFFF00FF, "Vehicle siren state: %s", sirenState ? "On" : "Off");
return 1;
}
return 0;
}
Related Functions
- SetVehicleParamsSirenState: Turn the siren for a vehicle on or off.
- ToggleVehicleSirenEnabled: Turn the siren for a vehicle on or off.
- IsVehicleSirenEnabled: Checks if a vehicle siren is on or off.
- GetVehicleSirenState: Gets the siren state of the vehicle.