oi_read
#1

salvation;

Can you help me get to code in yrace? I think that only the user yrace can help!


infact its not change the variable in my fs

Код:
public LoadRace(tmp[])
{






 	new string[256];
 	new race_name[50];
	format(race_name, sizeof(race_name), "%s.type", tmp);
	new File:gfile = fopen(race_name, io_read);
	fread(gfile, string, model = strval(string));
	model = string[100];
	fclose(gfile);

	if(model == 0)
	{
	format(ystring,128,"[INFO]: une course a pied se prйpare!");
	return 1;
	}
	else if(model == 1)
	{
	format(ystring,128,"[INFO]: une course de voiture se prйpare!");
	return 1;
	}
	else if(model == 2)
	{
	format(ystring,128,"[INFO]: une course de moto se prйpare!");
	return 1;
	}
 	SendClientMessageToAll(COLOR_YELLOW,ystring);

thx
Reply
#2

i did not undestand what your problem was
Reply
#3

My problem is that the variable model stays on 0 and thus sends the same message: s

Can you try to meter in yrace? pleaase
Reply
#4

Код:
public LoadRace(tmp[])
{
   new string[256];
   new race_name[50];
   format(race_name, sizeof(race_name), "%s.type", tmp);
   new File:gfile;
   gfile = fopen(race_name, io_read);
   fread(gfile, string, sizeof(string));
   fclose(gfile);

   if(strfind(string, "0", true) == 0)
   {
     format(ystring,128,"[INFO]: une course a pied se prйpare!");
   }
   else if(strfind(string, "1", true) == 0)
   {
     format(ystring,128,"[INFO]: une course de voiture se prйpare!");
   }
   else if(strfind(string, "2", true) == 0)
   {
     format(ystring,128,"[INFO]: une course de moto se prйpare!");
   }
   SendClientMessageToAll(COLOR_YELLOW,ystring);
   return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)