Template:GetHeliBladeDamageDisabled: 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 will return the current status whether helicopter blades do damage or not. == Syntax == <pre>GetCinematicBorder()</pre> == Arguments == '''N/A''' == Return...")
 
Line 3: Line 3:
== Syntax ==
== Syntax ==


<pre>GetCinematicBorder()</pre>
<pre>GetHeliBladeDamageDisabled()</pre>


== Arguments ==
== Arguments ==

Revision as of 12:36, 26 April 2016

This function will return the current status whether helicopter blades do damage or not.

Syntax

GetHeliBladeDamageDisabled()

Arguments

N/A

Return value

  • bool toggled - true or false

Example

This command will check whether the helicopter blades do damage or not.

function onPlayerCommand(player,cmd,text)
{
if(cmd=="getdamage")
{
MessagePlayer("Heli Blade Damage Status: "+GetHeliBladeDamageDisabled(),player);
}
}

Notes

Call onPlayerCommand were used in this example. More info about them in the corresponding pages.