pawn Код:
CMD:postulados(playerid, params[])
{
new string[64]; // Create the string to store the read text in
new File:example = fopen("Postulados.txt", io_read); // Open the file
while(fread(example, string)) //reads the file line-by-line
{
}
fclose(example);
return 1;
}