"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
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(playerid, killerid, reason)
{
SendDeathMessage(killerid,playerid,reason);
SetTimerEx("MorreuSpawnou", 2000, false, "i", playerid);
return 1;
}
public MorreuSpawnou(playerid)
{
new Random = random(sizeof(RandomSpawns));
ClearAnimations(playerid);
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 -
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