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
(Created page with "This function returns if the Siren on Vehicle is on or not. == Syntax == '''Vehicle.Siren''' == Arguements == '''N/A''' == Return value == * ''bool'' '''toggled''' - '''tr...")
 
No edit summary
Line 28: Line 28:
}
}
</source>
</source>
By Anik

Revision as of 15:56, 2 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);
}
}
}
}