Mysql bug
#1

I have 2 players then the textdraw show the one who have less money than other

PHP код:
stock Topcash()
{
    
mysql_tquery(mysql ,"SELECT Username,Money FROM players WHERE ID ORDER BY Money LIMIT 1;""ShowBestCash","");
    return 
true;
}
forward ShowBestCash();
public 
ShowBestCash()
{
      new 
rows;
    
cache_get_row_count(rows);
    if(
rows)
    {
        new 
playername[35];
        new 
playermoney;
        new 
str[1303];
        
cache_get_value_index(00playername);
        
cache_get_value_name_int(0,"Money",playermoney);
        
cache_get_value_index_int(0,1playermoney);
        
format(strsizeof(str), "~b~~h~N~b~~h~e~b~~h~~h~w~b~~h~~h~s~w~:~y~~h~%s~w~ Is the reachest player (~r~%d~r~~h~ cash~w~)~n~~n~"playernameplayermoney);
        
TextDrawSetString(Textdraw7,str);
        
TextDrawShowForAll(Textdraw7);
    }
    return 
1;

Reply


Messages In This Thread
Mysql bug - by Loinal - 10.02.2017, 22:05
Re: Mysql bug - by kloning1 - 10.02.2017, 22:14
Re: Mysql bug - by Vince - 10.02.2017, 23:30
Re: Mysql bug - by Loinal - 11.02.2017, 09:03
Re: Mysql bug - by Loinal - 11.02.2017, 11:06
Re: Mysql bug - by Loinal - 11.02.2017, 17:54
Re: Mysql bug - by Macronix - 11.02.2017, 22:01
Re: Mysql bug - by Loinal - 12.02.2017, 18:29
Re: Mysql bug - by Macronix - 12.02.2017, 18:38
Re: Mysql bug - by Loinal - 16.02.2017, 09:02

Forum Jump:


Users browsing this thread: 1 Guest(s)