SA-MP Forums Archive
Robber animation? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Robber animation? (/showthread.php?tid=354383)



Robber animation? - Sajeevan - 26.06.2012

Hi,

Is there anybody, who knows a robbery animation, if there are. Please reply with the code thanks


Re: Robber animation? - Strech - 28.06.2012

pawn Код:
CMD:robman(playerid, params[])

        {

        ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0); // Rob

        return 1;

    }
Check this out sir.


Re: Robber animation? - phillip875 - 29.06.2012

Don't forget to clear the animation with a /stopanimation or something (some animations make players stuck)

pawn Код:
CMD:clearanims(playerid,params[])
{
    ClearAnimations(playerid);
    return 1;
}