SA-MP Forums Archive
Why animations for 0.3b don't work - 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: Why animations for 0.3b don't work (/showthread.php?tid=171262)



Why animations for 0.3b don't work - Karl1195 - 25.08.2010

Why the animations for 0.3b don't work... i even tried to download another type of anamations the only anim that works is /pee... they used to work for 0.3b can some one help?


Re: Why animations for 0.3b don't work - Jay_ - 25.08.2010

Check out https://sampwiki.blast.hk/wiki/ApplyAnimation

A new parameter was added to the function. You can resolve this issue by adding a 1 at the end of the function call.


Re: Why animations for 0.3b don't work - Karl1195 - 25.08.2010

Код:
// carjacked
    if(strcmp(cmd, "/carjacked1", true) == 0) {
		 LoopingAnim(playerid,"PED","CAR_jackedLHS",4.0,0,1,1,1,0);
         return 1;
    }
SO I SHOULD CHANGE THIS TO

Код:
	// carjacked
    if(strcmp(cmd, "/carjacked1", true) == 0) {
		 LoopingAnim(playerid,"PED","CAR_jackedLHS",4.0,0,1,1,1,1);
         return 1;
    }



But what about this?


Код:
 // Drunk
    if(strcmp(cmd, "/drunk", true) == 0) {
		LoopingAnim(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
		return 1;
    }



Re: Why animations for 0.3b don't work - Karl1195 - 25.08.2010

noting? help pleasee


Re: Why animations for 0.3b don't work - Karl1195 - 26.08.2010

still not working tried to add a [fs] but still noting working help please =[


Re: Why animations for 0.3b don't work - homijs - 26.08.2010

Can someone help with this??


Re: Why animations for 0.3b don't work - homijs - 27.08.2010

See thats why lots of peoples switch to MTA
They help..not like here


Re: Why animations for 0.3b don't work - wups - 27.08.2010

Replace all animation lines with 0,1); where 0); or 1);


Re: Why animations for 0.3b don't work - erik019 - 19.09.2010

yes but if i add +1 (,1); argument to the end after recompiling the FS i get warning: warning 202: number of arguments does not match definition
i compiled it with 0.3b includes...
btw what would be the problem? can someone help to me? :/


Re: Why animations for 0.3b don't work - Jacob74 - 19.09.2010

open up the include where ApplyAnimation is. change the 0 and the end to a 1.