Problem rank
#2

There's an example how to use it - https://sampforum.blast.hk/showthread.php?tid=627520

Place where calling LoadRank function:
Code:
mysql_format(MySQL, query, sizeof(query), "SELECT * FROM rankname");
mysql_tquery(MySQL, query, "LoadRank", #, #);
public LoadRank();
Code:
forward LoadRank();
public LoadRank()
{
	new results = cache_num_rows();
	if(results > 0)	// if there is any results
	{
		for(new i = 0; i < results; i++)
		{
			cache_get_value(i, "name of variable in database", yourStringVariable, size of string); // string
			cache_get_value_int(i, "name of variable in database", yourIntVariable); // saving value to the variable
			cache_get_value_float(i, "name of variable in database", yourFloatVariable); // saving value to the variable
		}
		print("Ranks were read");
	}
	else 	// There is no results
	{

	}
	return 1;
}
Reply


Messages In This Thread
Problem rank - by KamilPolska - 01.04.2019, 15:46
Re: Problem rank - by YenTy - 02.04.2019, 12:07
Re: Problem rank - by KamilPolska - 02.04.2019, 17:00
Re: Problem rank - by KamilPolska - 02.04.2019, 18:25
Re: Problem rank - by YenTy - 02.04.2019, 18:48
Re: Problem rank - by KamilPolska - 02.04.2019, 19:21
Re: Problem rank - by KamilPolska - 02.04.2019, 21:12
Re: Problem rank - by YenTy - 02.04.2019, 21:41
Re: Problem rank - by KamilPolska - 02.04.2019, 22:56
Re: Problem rank - by KamilPolska - 03.04.2019, 16:46
Re: Problem rank - by Logic_ - 03.04.2019, 18:04
Re: Problem rank - by KamilPolska - 03.04.2019, 18:36
Re: Problem rank - by KamilPolska - 04.04.2019, 14:46
Re: Problem rank - by KamilPolska - 04.04.2019, 18:10
Re: Problem rank - by Logic_ - 04.04.2019, 18:43
Re: Problem rank - by KamilPolska - 05.04.2019, 16:26

Forum Jump:


Users browsing this thread: 1 Guest(s)