25.08.2016, 10:48
Hi all!
Why don't load weapons?? :/ PLS HELP ME
Код:
mysql_format(mysql, query, sizeof(query), "SELECT weaponid, ammo FROM player_weapons WHERE userid = %d;", pData[playerid][pID]); mysql_tquery(mysql, query, "OnLoadPlayerWeapons", "d", playerid);
Код:
forward OnLoadPlayerWeapons(playerid);
public OnLoadPlayerWeapons(playerid)
{
new weaponid, ammo;
for(new i, j = cache_get_row_count(mysql); i < j; i++)
{
weaponid = cache_get_row_int(i, 0, mysql);
ammo = cache_get_row_int(i, 1, mysql);
if(!(0 <= weaponid <= 46)) // check if weapon is valid (should be)
{
continue;
}
GivePlayerWeapon(playerid, weaponid, ammo);
}
return;
}


