[Ajuda] Setando armas in-game
#7

Quote:
Originally Posted by Diggie
Посмотреть сообщение
Se as linhas consultadas na database existem.




Nem dб pra fazer isso aн mano, eu nгo tenho a versгo R39 do MySQL. Tф com a ъltima versгo e o gamemode tб todo na ъltima versгo. cache_get_field_content_int jб nгo existe mais.
Realmente, cache_get_field_content_int й arcaica para a sua versгo. Fazendo as devidas alteraзхes fica da seguinte forma:

PHP код:
forward SetandoArmas(playerid);
public 
SetandoArmas(playerid)
{
    new 
rows;
    
cache_get_row_count(rows);
    if(
rows)
    {
        for(new 
013i++)
        {
            new 
strWeapon[64];
            
format(strWeapon64"pWeapon%d"i+1);//Formatando a string para acessar o campo pWeapon consultado
            
cache_get_value_name_int(0strWeaponPlayerInfo[playerid][pWeapon][i]);
            
format(strWeapon64"pAmmo%d"i+1);//Formatando a string para acessar o campo pAmmo consultado
            
cache_get_value_name_int(0strWeaponPlayerInfo[playerid][pAmmo][i]);
            
GivePlayerWeapon(playeridPlayerInfo[playerid][pWeapon][i], PlayerInfo[playerid][pAmmo][i]);
        }
    }

Quote:
Originally Posted by GSantana
Посмотреть сообщение
nгo deveria ser
PHP код:
if(row 0) {} 
??
Uma condiзгo com uma variбvel sem qualquer operador й a mesma coisa que:

Код:
if(var < 0 || var > 0)//Para nъmeros
if(var == true)//Para variбveis lуgicas
Reply


Messages In This Thread
Setando armas in-game - by Diggie - 03.09.2018, 21:00
Re: Setando armas in-game - by Diggie - 03.09.2018, 23:10
Re: Setando armas in-game - by iHollyZinhO - 03.09.2018, 23:39
Re: Setando armas in-game - by GSantana - 03.09.2018, 23:53
Re: Setando armas in-game - by Diggie - 03.09.2018, 23:56
Re: Setando armas in-game - by GSantana - 03.09.2018, 23:58
Re: Setando armas in-game - by iHollyZinhO - 04.09.2018, 00:06
Re: Setando armas in-game - by Diggie - 04.09.2018, 00:50
Re: Setando armas in-game - by Diggie - 04.09.2018, 00:59
Re: Setando armas in-game - by iHollyZinhO - 04.09.2018, 01:05

Forum Jump:


Users browsing this thread: 3 Guest(s)