[Ajuda] Desenvolvendo loja de Armas
#4

Quote:
Originally Posted by zSuYaNw
Посмотреть сообщение
Simples, utilize PVars!

PHP код:
public OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    if(
dialogid == 7000)
    {
        
        
// Criamos uma PVar (player variable:https://sampwiki.blast.hk/wiki/SetPVarInt)
        
SetPVarInt(playerid"lojaBALAS"strval(inputtext0));
        
        
ShowPlayerDialog(playerid7001DIALOG_STYLE_INPUT"Quantidade de Balas""Digite abaixo a quantidade de balas:""Comprar"#);
    
}
    if(
dialogid == 7001)
    {
        if(
response)
        {
            
// Agora iremos pegar a nossa PVar que criamos anteriormente com a funзгo GetPVarInt(https://sampwiki.blast.hk/wiki/GetPVarIn...9.52803955
            
GivePlayerWeapon(playeridGetPVarInt(playerid"lojaBALAS"), strval(inputtext));
            
            
// Deletando nossa PVar (https://sampwiki.blast.hk/wiki/DeletePVa...9.52803955
            
DeletePVar(playerid"lojaBALAS");
        }
    }
    return 
1;

As 2 funcionam do mesmo jeito nгo? '-'
Reply


Messages In This Thread
Desenvolvendo loja de Armas - by matheusdorado - 30.05.2016, 15:54
Re: Desenvolvendo loja de Armas - by focaximubh - 30.05.2016, 16:51
Re: Desenvolvendo loja de Armas - by zSuYaNw - 30.05.2016, 17:24
Re: Desenvolvendo loja de Armas - by focaximubh - 30.05.2016, 18:04
Re: Desenvolvendo loja de Armas - by zSuYaNw - 30.05.2016, 18:33
Re: Desenvolvendo loja de Armas - by matheusdorado - 30.05.2016, 19:09
Re: Desenvolvendo loja de Armas - by zSuYaNw - 30.05.2016, 20:18
Re: Desenvolvendo loja de Armas - by matheusdorado - 30.05.2016, 23:13

Forum Jump:


Users browsing this thread: 1 Guest(s)