23.05.2016, 16:08
i'ts not work good,
PHP код:
new File:file = fopen("IsPlayerInArea.ini", io_read);
if (!file) return 0;
new line[MAX_AREAS],
Float:Pos[6];
while (fread(file, line))
{
sscanf(line, "p<,>ffffff", Pos[0], Pos[1], Pos[2], Pos[3], Pos[4], Pos[5]);
printf("%f, %f, %f, %f, %f, %f", Pos[0], Pos[1], Pos[2], Pos[3], Pos[4], Pos[5]);
if(IsPlayerInArea(playerid, Pos[0], Pos[1], Pos[2], Pos[3], Pos[4], Pos[5]))
{
SendClientMessage(playerid, 0xFF0000FF, "You in area!");
}
}
fclose(file);