[Pedido] Chat Ativar/Chat Desativar
#3

pawn Код:
#include <a_samp>

new Chat;

public OnPlayerText(playerid, text[])
{
    if(Chat == 0)
    {
        return 1;
    }
    else return 0;
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/ativachat", cmdtext, true, 10) == 0)
    {
        if(IsPlayerAdmin(playerid))
        {
            if(Chat == 0)
            {
                SendClientMessage(playerid, COLOR, "Chat ativado");
                Chat = 1;
                return 1;
            }
            else SendClientMessage(playerid, COLOR, "O chat jб estб ativado");
        }
        else SendClientMessage(playerid, COLOR, " admins only");
        return 1;
    }
    if (strcmp("/desativachat", cmdtext, true, 13) == 0)
    {
        if(IsPlayerAdmin(playerid))
        {
            if(Chat == 1)
            {
                SendClientMessageToAll(COLOR, "Chat desativado");
                Chat = 0;
                return 1;
            }
            else  SendClientMessage(playerid, COLOR, "O chat jб estб desativado");
        }
        else SendClientMessage(playerid, COLOR, " admins only ");
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
Chat Ativar/Chat Desativar - by Sti - 01.09.2013, 03:37
Re: Chat Ativar/Chat Desativar - by Falcon. - 01.09.2013, 03:43
Re : Chat Ativar/Chat Desativar - by Matnix - 01.09.2013, 03:48
Re : Chat Ativar/Chat Desativar - by ThiagoMK - 01.09.2013, 14:06
Re: Re : Chat Ativar/Chat Desativar - by Juniiro3 - 01.09.2013, 14:25

Forum Jump:


Users browsing this thread: 1 Guest(s)