22.09.2015, 14:43
(
Последний раз редактировалось iTakelot; 22.09.2015 в 20:39.
)
Nгo testei mas acho que isso funciona.
nem tinha percebido, editei o post vlw por me avisar.
PHP код:
command(municao, playerid, params[])
{
new ammotheplayer;
new ammo = GetPlayerAmmo(playerid);
new arma = GetPlayerWeapon(playerid);
if (sscanf(params, "i", ammotheplayer))
{
SendClientMessage(playerid,0xFF0000FF,"USO: /Municao [Quantia]");
return 0;
}
SetPlayerAmmo(playerid, arma, ammo+ammotheplayer);
new w_data[13][2],str[250];
for(new a = 0; a < 13; a++)
{
GetPlayerWeaponData(playerid, a, w_data[a][0], w_data[a][1]);
format(str, sizeof(str),"Sua compra foi efetuada vejб abaixo algumas informaзoes:");
format(str, sizeof(str),"Armamento para slot: %i: armas: (%i), numero de muniзгo: (%i)", a, w_data[a][0], w_data[a][1]);
SendClientMessage(playerid,-1,str);
}
return 1;
}