27.12.2016, 12:10
Quote:
After reload? What do you mean?
Remove animation after reloading? PHP код:
|
If I use this:
Код:
if(IsCrounching(playerid)) ApplyAnimation(playerid, "PYTHON", "python_crouchreload", 4.1, 0, 0, 0, -1, 1, 1); else ApplyAnimation(playerid, "PYTHON", "python_reload", 4.1, 0, 0, 0, -1, 1, 1);
It's work fine
But if player is aim,shotting and end the bullets...
Player make a anim to fast, i even can see that, reload weapon too fast
If I use this:
Код:
case 24: { if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_DUCK) { ApplyAnimation (playerid , "PYTHON" , "python_crouchreload" , 4.0 , 0 , 0 , 0 , 0 , 500); } else { ApplyAnimation (playerid , "PYTHON" , "python_reload" , 4.0 , 0 , 0 , 0 , 0 , 500); } }