SA-MP Forums Archive
"bug" ao morrer - 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: "bug" ao morrer (/showthread.php?tid=662665)



"bug" ao morrer - txrrrr - 07.01.2019

Alguйm sabe me dizer como arrumar isso?
quando meu boneco morre ele faz uma animaзгo de morte, depois ele spawn e faz outra animaзгo de morte.

https://*********/RHArwpaSOXc


Re: "bug" ao morrer - PedroH - 07.01.2019

Codigo?


Re: "bug" ao morrer - txrrrr - 07.01.2019

public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid,playerid,reason);
new Random = random(sizeof(RandomSpawns));
SetPlayerInterior(playerid, 10);
SetPlayerSkin(playerid, 230);
SetPlayerPos(playerid, RandomSpawns[Random][0], RandomSpawns[Random][1], RandomSpawns[Random][2]);
SetPlayerFacingAngle(playerid, RandomSpawns[Random][3]);
return 1;
}


Re: "bug" ao morrer - PedroH - 07.01.2019

Do OnPlayerSpawn.


Re: "bug" ao morrer - txrrrr - 07.01.2019

Um amigo meu conseguiu me ajudar aqui.
tem discord, pedro?


Re: "bug" ao morrer - PedroH - 07.01.2019

Sim mas n lembro qual й. Tou pelo celular agora


Re: "bug" ao morrer - txrrrr - 07.01.2019


Coloquei isso que um amigo me mandou.


Re: "bug" ao morrer - PedroH - 07.01.2019

Quote:
Originally Posted by txrrrr
View Post

Coloquei isso que um amigo me mandou.
Ou voce poderia as instruзoes da stock em onPlayerSpawn.


Re: "bug" ao morrer - txrrrr - 07.01.2019

tem discord, pedro?


Re: "bug" ao morrer - AutoMatic2 - 07.01.2019

Se nгo der certo use esse comando antes de mandar o player para o spawn.

PHP Code:
ClearAnimations(playerid); 
Tbm troque seu SetTimer para SetTimerEx.

PHP Code:
public OnPlayerDeath(playeridkilleridreason)
{
    
SendDeathMessage(killerid,playerid,reason);
    
SetTimerEx("MorreuSpawnou"2000false"i"playerid);
    return 
1;
}
public 
MorreuSpawnou(playerid)
{
    new 
Random random(sizeof(RandomSpawns));
    
ClearAnimations(playerid);
    
SetPlayerInterior(playerid10);
    
SetPlayerSkin(playerid230);
    
SetPlayerPos(playeridRandomSpawns[Random][0], RandomSpawns[Random][1], RandomSpawns[Random][2]);
    
SetPlayerFacingAngle(playeridRandomSpawns[Random][3]);
    return 
1;




Re: "bug" ao morrer - Bruno13 - 07.01.2019

Porque vocк estб setando a posiзгo do jogador apуs ele morrer? Sem nexo. Vocк deveria й setar o SpawnInfo e assim que ele respawnar ele irб para lб, se esse for o objetivo.


Re: "bug" ao morrer - AutoMatic2 - 07.01.2019

Quote:

Porque vocк estб setando a posiзгo do jogador apуs ele morrer? Sem nexo. Vocк deveria й setar o SpawnInfo e assim que ele respawnar ele irб para lб, se esse for o objetivo.

Sim, falei isso em algum post atras, que tbm o SetPlayerPos nгo da no OnPlayerDeath apenas SpawnInfo. O Meu da certo tirando as animaзгo dps que morre e colocando SpawnInfo.


Re: "bug" ao morrer - txrrrr - 07.01.2019

Consegui resolver galera, obrigado!
@AutoMatic2 tem discord?


Re: "bug" ao morrer - AutoMatic2 - 08.01.2019

Quote:

Consegui resolver galera, obrigado!
@AutoMatic2 tem discord?

Yes!

Augusto
#4330