Hallo,
hab ein kleines Problem mit meinem Script. Ich habe ne Zone. Geht. In die Zone sollen nur Leute mit dem Police und Soldaten Skin. Andere sollen ne Message erhalten.
public IsPlayerInArea(playerid, Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if(IsPlayerInArea(playerid,217.8673,-1255.2234,412.9872,-1034.9280))
if((GetPlayerSkin(playerid) == 282))
if (x > minx && x < maxx && y > miny && y < maxy)return 1;
else
{
GameTextForPlayer(playerid,"~r~TODESZONE",4000,1);
}
}
return 1;
}
Error: error 010: invalid function or declaration
Was is das falsch?