ANIMS NOT VISIBLE, 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: ANIMS NOT VISIBLE, help. (
/showthread.php?tid=194621)
ANIMS NOT VISIBLE, help. -
Darklom - 30.11.2010
Well it seems the anims are perfectly fine but when it's done I (the player) can't see the anim I am doing, what can I do?
Код:
case 0:
{
ApplyAnimationEx(playerid,"PED","IDLE_CHAT",4.1,0,1,1,1,1);
}
case 1:
{
ApplyAnimationEx(playerid,"MISC", "Idle_Chat_02",4.1,0,1,1,1,1);
}
This is just one out of the many many anims
Re: ANIMS NOT VISIBLE, help. -
cessil - 30.11.2010
preload the anim library you're using, look at gl_actions for an example
Re: ANIMS NOT VISIBLE, help. -
Darklom - 30.11.2010
Agh tried a different script (filterscript) same problem, someone help.
Re: ANIMS NOT VISIBLE, help. -
Grim_ - 30.11.2010
You aren't looping the animation:
pawn Код:
ApplyAnimationEx(playerid,"PED","IDLE_CHAT",4.1,1,1,1,1,1);
Re: ANIMS NOT VISIBLE, help. -
Darklom - 30.11.2010
Quote:
Originally Posted by Grim_
You aren't looping the animation:
pawn Код:
ApplyAnimationEx(playerid,"PED","IDLE_CHAT",4.1,1,1,1,1,1);
|
Not the issue I checked, it's super annoying..
pawn Код:
// Drunk
if(strcmp(cmd, "/drunk", true) == 0) {
LoopingAnim(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
return 1;
}
Re: ANIMS NOT VISIBLE, help. -
Darklom - 01.12.2010
Any help would help!