SA-MP Forums Archive
Animation [HELP] - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Animation [HELP] (/showthread.php?tid=83445)



Animation [HELP] - Xpoint - 25.06.2009

Hi all!
I got this anim:

Код:
	if(strcmp(cmd, "/fatrun", true) == 0)
	{
  ApplyAnimation(playerid,"FAT","FatRun",4.1,0,1,1,1,1);
	return 1;
	}
But anim stops after he runs... i want that the anim dosnt stop and he keeps runing untill.



Re: Animation [HELP] - bigcomfycouch - 25.06.2009

Код:
ApplyAnimation(playerid,"FAT","FatRun",4.1,1,1,1,1,0);
Maybe? Not sure.


Re: Animation [HELP] - Xpoint - 25.06.2009

Ok it works... but on other anims like this:

Код:
	if(strcmp(cmd, "/sit1", true) == 0)
	{
  ApplyAnimation(playerid, "BEACH", "SitnWait_loop_W", 4.0, 0, 0, 0, 0, 1);
	return 1;
	}
It moves around the player... at example 2 sec it moves player a bit ... how to fix ?


Re: Animation [HELP] - bigcomfycouch - 25.06.2009

Код:
ApplyAnimation(playerid, "BEACH", "SitnWait_loop_W", 4.0, 1, 1, 1, 1, 0);
Just like the last one.


Re: Animation [HELP] - Xpoint - 25.06.2009

thanks.. i will try it out!


Re: Animation [HELP] - Xpoint - 25.06.2009

It keeps moving.. Like..

When the anim should stop.. it starts it again and moves a bit... How to fix it?


Re: Animation [HELP] - Xpoint - 25.06.2009

any one could help me?