Scripting/Squirrel/Functions/Vehicle.Siren: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary
No edit summary
 
Line 28: Line 28:
}
}
</source>
</source>
== Related Functions ==
{{Scripting/Squirrel/Functions/Vehicle_Functions}}
[[Category:Scripting/Squirrel/Functions/Vehicle_Functions]]

Latest revision as of 22:04, 30 January 2017

This function returns if the Siren on Vehicle is on or not.

Syntax

Vehicle.Siren

Arguements

N/A

Return value

  • bool toggled - true or false

Example

function onPlayerCommand( player, cmd, text )
{
if ( cmd == "checkcar" )
{
if ( !text ) MessagePlayer("Syntax: /" + cmd + " [Vehicle ID]", player );
else {
local veh = FindVehicle( text.tointeger() );
if ( !veh ) MessagePlayer("ERROR --> Invalid Vehicle/ID.", player );
else{
MessagePlayer(veh.Siren+"",player);
}
}
}
}

Related Functions