Ce code est invalide.
new check[3], compteur;
check[0] = "2352.2813,-1658.7698,13.3791",
check[1] = "2344.8572,-1605.7319,21.9796",
check[2] = "2301.2695,-1564.3423,15.1716";
Ainsi que celui ci
if (IsPlayerInRangeOfPoint(playerid, 5.0, check[compteur]))
Il faudrait plutôt faire ça
new compteur;
new Float:check[3][3] = {
{2352.2813,-1658.7698,13.3791},
{2344.8572,-1605.7319,21.9796},
{2301.2695,-1564.3423,15.1716}
};
et
if (IsPlayerInRangeOfPoint(playerid, 5.0, check[compteur][0], check[compteur][1], check[compteur][2]))