Where are the brackets missing? I couldn't solve it can anyone help?
error 010: invalid function or declaration
error 010: invalid function or declaration
Code:
public OnPlayerUpdate(playerid)
{
new Float:animX, Float:animY, Float:animZ;
new anim = GetPlayerAnimationIndex(playerid);
GetPlayerPos(playerid, animX, animY, animZ);
if((anim >= 1538) && (anim <= 1542) && animZ > 5)
{
TogglePlayerControllable(playerid, false);
SetPlayerPos(playerid, 1941.1534,-1100.2391,-23.7885);
ShowPlayerDialog(playerid, DIALOG_PRAVILA,DIALOG_STYLE_MSGBOX,"Anti-Cheat", "{FFCC00}[Anticheat]"WHITE"[Anti-Cheat] You Have Been Banned for using Fly Hacks Bye Bye!!!","Ok","");
BanEx(playerid, "Fly Hack");
}
return 1;
}