Template:GetHeliBladeDamageDisabled
This wiki is using an old backup from 2020
Some information may be old/missing
This function will return the current status whether helicopter blades do damage or not.
Syntax
GetCinematicBorder()
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.