Quote:
Originally Posted by zSuYaNw
Simples, utilize PVars!
PHP код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 7000)
{
// Criamos uma PVar (player variable:https://sampwiki.blast.hk/wiki/SetPVarInt)
SetPVarInt(playerid, "lojaBALAS", strval(inputtext0));
ShowPlayerDialog(playerid, 7001, DIALOG_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(playerid, GetPVarInt(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? '-'