Scripting/Squirrel/Functions/Vehicle.RadioLocked: 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 Radio of the Vehicle is locked or not. == Syntax == '''Vehicle.RadioLocked''' == Arguements == '''N/A''' == Return value == * ''bool'' '''togg...")
 
No edit summary
 
Line 29: Line 29:
</source>
</source>


By Anik
 
== 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 Radio of the Vehicle is locked or not.

Syntax

Vehicle.RadioLocked

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.RadioLocked+"",player);
}
}
}
}


Related Functions