25.06.2011, 18:47
hello!
this stock again not working.
what's the problem ?
here the stock:
thank's for the helper (:
this stock again not working.
what's the problem ?
here the stock:
pawn Код:
stock GetPlayerLevel(playerid)
{
new vreturn[256],query[256];
format(query,256,"SELECT 'Level' FROM 'Users' WHERE Nick='%s'",GetName(playerid));
mysql_query(query);
mysql_store_result();
if(mysql_retrieve_row() == 1)
{
new buffer[10];
mysql_fetch_field_row(buffer, "Level");
format(vreturn,256,"%d",strval(buffer));
}
mysql_free_result();
return strval(vreturn);
}