[Ajuda] bloquear player falar durante tutorial
#2

Faзa uma variбvel quando ele registrar й ir para o tutorial vc coloca


PHP код:
new bool:VendoTutorial[MAX_PLAYERS]; // Topo bool trabalha com true ou false
VendoTutorial[playerid] = true// Quando ele й lanзado para ver o tutorial.
// Public
public OnPlayerText(playeridtext[])
{
    if(
VendoTutorial[playerid] == true)
    {
        
SendClientMessage(playerid, -1"| ERRO | Vocк nгo pode falar durante o tutorial!");
        return 
0;
    }
    return 
1;
}
// Se nгo tiver essa public cria no final do GameMode ou antes dos comandos CMD:
public OnPlayerCommandReceived(playeridcmd[], params[], flags)
{
    if(
VendoTutorial[playerid] == true)
    {
        
SendClientMessage(playerid, -1"| ERRO | Vocк nгo pode digitar um comando vendo o tutorial!");
        return 
0;
    }
    return 
1;
}
// Quando terminar o tutorial vc coloca
VendoTutorial[playerid] = false
Essa public sу se usa se vc usar a include zcmd ou pawn.cmd

Nгo tenho certeza se usa a public OnPlayerCommandReceived mas testa ai!
Reply


Messages In This Thread
bloquear player falar durante tutorial - by Uguinho - 08.08.2018, 20:56
Re: bloquear player falar durante tutorial - by SIZET - 08.08.2018, 21:08
Re: bloquear player falar durante tutorial - by Uguinho - 08.08.2018, 21:12
Re: bloquear player falar durante tutorial - by HelderPT - 08.08.2018, 21:13
Re: bloquear player falar durante tutorial - by Uguinho - 08.08.2018, 21:31

Forum Jump:


Users browsing this thread: 1 Guest(s)