SA-MP Forums Archive
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: Animation... (/showthread.php?tid=331052)



Animation... - Gooday - 03.04.2012

Whats the anim at: 0:48

http://www.youtube.com/watch?v=V4fZ_...3asI9E3YYwk%3D

*Fall off anim...
I would like a CMD like "fall" and apply this anim


Re: Animation... - blank. - 03.04.2012

Код:
CMD:fall(playerid)
	{
	if(IsPlayerInAnyVehicle(playerid)) { return 1; }
	new animname[128],animlib[128];
	GetAnimationName(1209,animlib,sizeof(animlib),animname,sizeof(animname));
	ApplyAnimation(playerid,animlib,animname,4,0,0,0, 1,0,1);
	return 1;
	}