[HELP]serious help requested.
#2

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;
}
Reply


Messages In This Thread
[HELP]serious help requested. - by Ignas1337 - 16.05.2009, 11:21
Re: [HELP]serious help requested. - by James_Alex - 16.05.2009, 12:16
Re: [HELP]serious help requested. - by whooper - 16.05.2009, 12:27
Re: [HELP]serious help requested. - by Ignas1337 - 16.05.2009, 12:36
Re: [HELP]serious help requested. - by Ignas1337 - 16.05.2009, 12:50
Re: [HELP]serious help requested. - by Ignas1337 - 17.05.2009, 09:52

Forum Jump:


Users browsing this thread: 1 Guest(s)