[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.1, 0, 0, 0, 0, 0);
SendClientMessage(playerid, 0xFF0000AA, "[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
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.1, 0, 0, 0, 0, 0); // certo
SendClientMessage(playerid, 0xFF0000AA, "[PDE]{FFFFFF} Para Sair De HandSup Use, /sairhandsup!");
return 1;
}
Re: [AJUDA] Anim -
hurubuh - 15.03.2019
Quote:
Originally Posted by BrasileiroTop
PHP Code:
CMD:handsup(playerid)
{
//ApplyActorAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0); // errado
ApplyPlayerAnimation(playerid, "PED", "handsup", 4.1, 0, 0, 0, 0, 0); // certo
SendClientMessage(playerid, 0xFF0000AA, "[PDE]{FFFFFF} Para Sair De HandSup Use, /sairhandsup!");
return 1;
}
|