Animation Bug - 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: Animation Bug (
/showthread.php?tid=428965)
Animation Bug -
Omirrow - 07.04.2013
Animation does not appear in others
How can I solve?
One of these;
pawn Код:
if(strcmp(cmdtext, "/riot", true) == 0)
{
ApplyAnimation(playerid,"RIOT","RIOT_ANGRY",4.1,1,1,1,1,1);
return 1;
}
Re: Animation Bug -
iJumbo - 07.04.2013
??
Re: Animation Bug -
Omirrow - 07.04.2013
One of these;
pawn Код:
if(strcmp(cmdtext, "/riot", true) == 0)
{
ApplyAnimation(playerid,"RIOT","RIOT_ANGRY",4.1,1,1,1,1,1);
return 1;
}
Re: Animation Bug -
ryansheilds - 07.04.2013
What do you mean it doesn't appear in others? If you mean you're trying to use the animation but it doesn't work try using the CMD twice or preload the animation.
Or try:
pawn Код:
ApplyAnimation(playerid, "RIOT", "RIOT_ANGRY", 4.1, 0, 0, 0, 0, 0, 1);
Re: Animation Bug -
Omirrow - 07.04.2013
Thank you.