[Pedido] Render com a tecla Y
#1

Estou a procura de um codigo, o codigo й, a pessoa pressiona a tecla Y e ela levanta os braзos com uma animaзгo, tentei fazer e nгo consgui, alguem sabe?
Reply
#2

Funcao OnPlayerKeyStateChange Boa sorte
Reply
#3

Simples:
PHP код:
public OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
    if (
PRESSED(KEY_YES))
    {
        
SetPlayerSpecialAction(playerid10);
    }
    return 
1;

Se por acaso queira fazer com outra funзгo veja:
https://sampwiki.blast.hk/wiki/Keys
Reply
#4

Quote:
Originally Posted by viniciuship
Посмотреть сообщение
Simples:
PHP код:
public OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
    if (
PRESSED(KEY_YES))
    {
        
SetPlayerSpecialAction(playerid10);
    }
    return 
1;

Se por acaso queira fazer com outra funзгo veja:
https://sampwiki.blast.hk/wiki/Keys
Код:
#define PRESSED(%0) \
	(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
Reply
#5

Quote:
Originally Posted by ipsLeon
Посмотреть сообщение
Код:
#define PRESSED(%0) \
	(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
Obrigado leo, com sua ajuda de um define eu tive a soluзгo, tipo, agora eu queria saber como colocar, tipo, a pessoa sу pode render pelo Y caso esteja fora de um veiculo, como faзo isso?

meu codigo:
PHP код:
    if (PRESSED(KEY_YES)) //Handsup Y
    

        
SetPlayerSpecialAction(playeridSPECIAL_ACTION_HANDSUP); 
    } 
Reply
#6

Quote:
Originally Posted by SukMathcuck
Посмотреть сообщение
Obrigado leo, com sua ajuda de um define eu tive a soluзгo, tipo, agora eu queria saber como colocar, tipo, a pessoa sу pode render pelo Y caso esteja fora de um veiculo, como faзo isso?

meu codigo:
PHP код:
    if (PRESSED(KEY_YES)) //Handsup Y
    

        
SetPlayerSpecialAction(playeridSPECIAL_ACTION_HANDSUP); 
    } 
PHP код:
    if(!IsPlayerInAnyVehicle(playerid)) // Se o jogador nгo estiver em um veнculo, o cуdigo posterior serб executado.
    
{
        if (
PRESSED(KEY_YES)) //Handsup Y
        

            
SetPlayerSpecialAction(playeridSPECIAL_ACTION_HANDSUP); 
        }
    } 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)