Template:GetHeliBladeDamageDisabled: Difference between revisions
Jump to navigation
Jump to search
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...") |
m (Anik moved page GetHeliBladeDamageDisabled to Template:GetHeliBladeDamageDisabled: The Function should be in Game Server Settings) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
<pre> | <pre>GetHeliBladeDamageDisabled()</pre> | ||
== Arguments == | == Arguments == |
Latest revision as of 12:38, 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.