23.06.2011, 20:29
pawn Код:
if (strcmp(cmd, "/read", true) == 0)
{
new str[100]; //Increase if needed
new File:example = fopen("procurados.txt", io_read);
while(fread(example, str))
{
format(string, sizeof(string), "%s %s", string, str);
}
fclose(example);
printf("%s",string);
SendClientMessage(playerid, -1, string);
return 0x01;
}