16.05.2009, 12:16
you can use files example
pawn Код:
public SaveThing()
{
new File:Tfile;
Tfile = fopen("thing.cfg", io_write);
new str[256];
format(str, sizeof(str), "%s", mything);
fwrite(Tfile, str);
fclose(Tfile);
return 1;
}
public LoadThig()
{
new File:Tfile;
Tfile = fopen("thing.cfg", io_read);
return 1;
}