SA-MP Forums Archive
[AJUDA] Anim - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Anim (/showthread.php?tid=664901)



[AJUDA] Anim - hurubuh - 15.03.2019

Por que quando digito o CMD da da ao player a animaзгo de HandSup?

PHP Code:
CMD:handsup(playerid)
{
ApplyActorAnimation(playerid"PED""handsup"4.100000);
SendClientMessage(playerid0xFF0000AA"[PDE]{FFFFFF} Para Sair De HandSup Use, /sairhandsup!");
return 
1;

Obs: A animaзгo nгo poder ser em SetPlayerAction


Re: [AJUDA] Anim - ipsLuan - 15.03.2019

ApplyActorAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0)

Pq serб?


Re: [AJUDA] Anim - hurubuh - 15.03.2019

Quote:
Originally Posted by ipsLuan
View Post
ApplyActorAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0)

Pq serб?
Nгo funcionou.


Re: [AJUDA] Anim - BrasileiroTop - 15.03.2019

PHP Code:
CMD:handsup(playerid

//ApplyActorAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0); // errado
ApplyPlayerAnimation(playerid"PED""handsup"4.100000); // certo
SendClientMessage(playerid0xFF0000AA"[PDE]{FFFFFF} Para Sair De HandSup Use, /sairhandsup!"); 
return 
1




Re: [AJUDA] Anim - hurubuh - 15.03.2019

Quote:
Originally Posted by BrasileiroTop
View Post
PHP Code:
CMD:handsup(playerid

//ApplyActorAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0); // errado
ApplyPlayerAnimation(playerid"PED""handsup"4.100000); // certo
SendClientMessage(playerid0xFF0000AA"[PDE]{FFFFFF} Para Sair De HandSup Use, /sairhandsup!"); 
return 
1

PHP Code:
Obrigado