[Pedido] Como hospedar quantas balas uma..
#1

Como faзo para hospedar quantas balas da eagle que o player tem na mгo em uma variavel?

Obrigado a todos.
Reply
#2

https://sampwiki.blast.hk/wiki/GetPlayerWeaponData
Reply
#3

https://sampwiki.blast.hk/wiki/GetPlayerAmmo eu acho que й essa funзгo.
Reply
#4

https://sampwiki.blast.hk/wiki/GetPlayerWeaponData
Reply
#5

Quote:
Originally Posted by Supera
View Post
Tentei fazer assim:
pawn Code:
new Balas[1];
    GetPlayerWeaponData(playerid, 2, 24, Balas[0]);
Deu o seguinte erro:
pawn Code:
error 035: argument type mismatch (argument 3)
Ajuda
Quote:
Originally Posted by matheus_alcapone
View Post
https://sampwiki.blast.hk/wiki/GetPlayerAmmo eu acho que й essa funзгo.
Nгo й isso ... Mas oque vale й a intenзгo
Reply
#6

PHP Code:

playerid The ID of the player whose weapon data you wish to retrieve 
slot The weapon slot to get data 
for (0-12
&
weapons Variable to store the weapon IDpassed by reference 
&ammo Variable to store the ammopassed by reference 
Traduza.
Reply
#7

@Edit
pawn Code:
new Arma[13][2] ;
for(new i = 0; i != 13; i++)
{
        GetPlayerWeaponData(playerid,i,Arma[i][0],Arma[i][1]);
}
Reply
#8

pawn Code:
CMD:balaseagle(playerid) {

    new
        Arma,
        pStr[35],
        Bala
    ;

    GetPlayerWeaponData(playerid, 2, Arma, Bala);


    if ( Arma == 22 ) {
        format(pStr, 35, "Vocк tem %i balas de eagle!", Bala);
        SendClientMessage(playerid, -1, pStr);
    }
    else
        SendClientMessage(playerid, -1, "Vocк nгo tem uma eagle!");

    return true;
}
Reply
#9

Queria fazer algo mais ou menos assim:
pawn Code:
new bala1,bala2,bala3,bala4;
   
    GetPlayerWeaponData(playerid, 2, 24, bala1);
    GetPlayerWeaponData(playerid, 3, 25, bala2);
    GetPlayerWeaponData(playerid, 5, 31, bala3);
    GetPlayerWeaponData(playerid, 6, 34, bala4);
   
    pDados[playerid][Eagle]  = bala1;
    pDados[playerid][M4]     = bala2;
    pDados[playerid][Shot]   = bala3;
    pDados[playerid][Sniper] = bala4;
Reply
#10

pawn Code:
GetPlayerWeaponData(playerid, 2, Arma, Bala);
playerid -> Id do player

2 -> Slot

Arma -> Variбvel para armazenar o ID da arma

Bala -> Variбvel que armazena o numero de ballas

Informaзхes dos Slots e ID das armas: https://sampwiki.blast.hk/wiki/Weapons

As vezes ler um pouco faz bem!
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)