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
(→Syntax) |
m (Anik moved page GetHeliBladeDamageDisabled to Template:GetHeliBladeDamageDisabled: The Function should be in Game Server Settings) |
(No difference)
|
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.