SA-MP Forums Archive
[Ajuda] [BUG GTA] Andar atirando! - 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] [BUG GTA] Andar atirando! (/showthread.php?tid=625181)



[BUG GTA] Andar atirando! - SukMathcuck - 29.12.2016

Como o titulo do topico jб diz, como eu faзo para tirar um erro do GTA San Andreas?
Quote:

Pressione C, Depois W, Depois Espaзo e clique no botгo do mausedireito ao mesmo tempo.

Veja na parte: 2:05
Desse vнdeo: https://*********/ru1wTdkfi0U?t=2m56s


Respuesta: [BUG GTA] Andar atirando! - SammyJ - 29.12.2016

dк uma olhada na callback.
OnPlayerKeyStateChange

e na funзгo nativa.
GetPlayerKeys


Re: [BUG GTA] Andar atirando! - n0minal - 29.12.2016

Nome disso й slide bug.

https://sampforum.blast.hk/showthread.php?tid=402756

Nгo ajudo por PM, boa sorte.


Re: [BUG GTA] Andar atirando! - Pablo098 - 29.12.2016

Anti-slide bug

PHP код:
public OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
    if(
GetPVarInt(playerid"Slide") == && newkeys KEY_SPRINT && newkeys KEY_HANDBRAKE)
        
ApplyAnimation(playerid"GYMNASIUM""gym_jog_falloff"4.101100);
   
    return 
1;
}
public 
OnPlayerUpdate(playerid)
{
    new
       
Keysudlr;
    
GetPlayerKeys(playeridKeysudlr);
    if(
ud 0SetPVarInt(playerid"Slide"1);
    else 
SetPVarInt(playerid"Slide"0);
    return 
1;