[Ajuda] CMD pra OnPlayerKeyStateChange
#1

Existe alguma forma de eu connectar este comando em CMD da include: zmcd na public OnPlayerKeyStateChange ?

PHP код:
CMD:exemplo(playerid)
{
  return 
1;
}
public 
OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
 
//Quero conectar o CMD Exemplo aqui dentro
 
return 1;

da outra forma eu sei fazer, mas gostaria de saber se da em CMD !

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    if (
strcmp("/mycommand"cmdtexttrue10) == 0)
    {
        
// Do something here
        
return 1;
    }
    return 
0;
}
public 
OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
 
OnPlayerCommandText(playerid"/Mycommand");
 return 
1;

Reply
#2

pawn Код:
public OnPlayerKeyStateChange( playerid, newkeys, oldkeys )
{
    //OnPlayerCommandText( playerid, "/Mycommand" );
    cmd_mycommand( playerid );

    return 1;
}
Reply
#3

Lembrando que o caso acima funciona se vocк nгo tiver usado params[]
Reply
#4

Se nгo me engano, tem que adicionar NULL

pawn Код:
cmd_meucomando(playerid, "");
Reply
#5

Obrigado, funcionou sim, +Reps
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)