Scripting [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: Scripting [HELP] (
/showthread.php?tid=166871)
Scripting [HELP] -
Karl1195 - 10.08.2010
Hello guys agian i got 2 questions =].
1] How to change the players run because its a bit shitty and i wanna change it.
2] How to make that when the player is talking with some one else him make the
"talk animation".
Thanks a lot.
Karl1195
Re: Scripting [HELP] -
DiddyBop - 10.08.2010
UsePedAnims(); under ongamemdoeinit for shitty running.
Re: Scripting [HELP] -
Karl1195 - 10.08.2010
noting...
Re: Scripting [HELP] -
[MWR]Blood - 10.08.2010
1)Add UsePlayerPedAnims(); under OnGameModeInit.
2)
pawn Код:
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.0,1,0,0,1,1);
Re: Scripting [HELP] -
Karl1195 - 10.08.2010
where should i put this mate?
Код:
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.0,1,0,0,1,1);
Re: Scripting [HELP] -
Karl1195 - 10.08.2010
and i put the UsePlayerPedAnims(); under where u told me exectly and it didn't work.. ;/ any tips i am using LARP [GM]
Re: Scripting [HELP] -
(.Aztec); - 10.08.2010
Quote:
Originally Posted by Karl1195
where should i put this mate?
Код:
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.0,1,0,0,1,1);
|
pawn Код:
public OnPlayerText(playerid, text[])
{
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.0,1,0,0,1,1);
return 1;
}