09.09.2012, 09:59
Alright, got a fix for it, may not be very well, but it fixes my problem.
I have tested it for one weapon/slot only for now, but I am sure it will work for every weapon.
What I did was store ammo in a variable.
Instead of giving player ammo, which I want, I gave him ammo, max clip can hold like
And when he want to reload, he would have to press a key, probably KEY_YES, then I calculated the ammo he needed to refill his clip and subtracted that ammo from the variable.
Full code with which it was tested (for one weapon only) is
More things we may add are
I have tested it for one weapon/slot only for now, but I am sure it will work for every weapon.
What I did was store ammo in a variable.
pawn Код:
new ammo=330;
pawn Код:
GivePlayerWeapon(playerid,WEAPON_AK47,30);
pawn Код:
ApplyAnimation(playerid,"RIFLE","RIFLE_load",2,0,1,1,0,1000,1);
new rem = GetPlayerAmmo(playerid);
GivePlayerWeapon(playerid,WEAPON_AK47,-rem);
GivePlayerWeapon(playerid,WEAPON_AK47,30);
ammo-=30-rem;
pawn Код:
#include <a_samp>
#include <ZCMD>
#include <sscanf2>
new ammo=330;
public OnGameModeInit()
{
AddPlayerClass(0,0,0,0,0,0,0,0,0,0,0);
}
public OnPlayerSpawn(playerid)
{
GivePlayerWeapon(playerid,WEAPON_AK47,30);
ammo-=30;
return 1;
}
CMD:r(playerid,params[])
{
#pragma unused params
ApplyAnimation(playerid,"RIFLE","RIFLE_load",2,0,1,1,0,1000,1);
new rem = GetPlayerAmmo(playerid);
GivePlayerWeapon(playerid,WEAPON_AK47,-rem);
GivePlayerWeapon(playerid,WEAPON_AK47,30);
ammo-=30-rem;
new msg[20];
format(msg,20,"New Ammo : %d",ammo);
SendClientMessage(playerid,-1,msg);
return 1;
}
- Checking if Player is crouching/standing
- Geeting Player Armed Weapon