29.12.2014, 17:11
How to go through all the rows, (curses file)
sorry my bad englishh
sorry my bad englishh

new File:file;
file=fopen("YourFile.txt", io_read);
new string[128];
while(fread(file, string)) // Loop through each line in the file
{
//the row is stored in 'string', do whatever you want to do with it.
}
pawn Код:
|
new string[144], File:file = fopen("/Server/Registered Players.cfg", io_read);
if(file)
{
while(fread(file, string))
{
SendClientMessage(playerid, -1, string);
}
}
fclose(file);
pawn Код:
|
public OnPlayerText(playerid, text[])
{
new string[144], File:file = fopen(FILE_SWEARS, io_read);
if(file)
{
while(fread(file, string))
{
Censor(text, string);
}
}
fclose(file);
return 1;
}
public OnPlayerText(playerid, text[])
{
new str[32], File:file = fopen(FILE_SWEARS, io_read), pos;
while(fread(file, str))
{
pos = strfind(str, "\n", true, 0);
if(pos != -1) strdel(str, pos-1, pos+1);
if(strfind(text, str, true, 0) != -1)
{
Censor(text, string);
fclose(file);
return 0;
}
}
fclose(file)
return 1;
}
I debuged it and it seems fread also gets the newline character ( \n )
so in fact it looks for example "idiot\n" in the players text. I don't know if there's a better way to do it, but if you remove that character it works: pawn Код:
|