[ajuda]/noticias
#1

Boas pessoal,
hoje fiz um comando /noticias mas queria que tipo um player /noticias e enquanto a noticia dura, nгo se possa fazer comandos que utilizem o radio do tipo:/noticias /entrevistar.
Tкm aqui o comando /noticias:
pawn Код:
if(strcmp(cmd, "/noticias", true) == 0)
        {
            if(IsPlayerConnected(playerid))
            {
                if(PlayerInfo[playerid][pFaction] != 255 && DynamicFactions[PlayerInfo[playerid][pFaction]][fType] == 4)
                {
                    if(NewOnDuty[playerid] == 0)
                    {
                        new length = strlen(cmdtext);
                        while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        SendClientMessageToAll(COLOR_LIGHTYELLOW2,"[INFO:] Para ouvires as noticias ou comunicados tens de ligar o radio.");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "______________________[TRV-News]________________________");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "              ***Jingle da TRV-News***");
                        NewOnDuty[playerid] = 1;
                    }
                    else
                    {
                        new length = strlen(cmdtext);
                        while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "              ***Jingle da TRV-News***");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "_________________________________________________________");
                        NewOnDuty[playerid] = 0;
                    }
                }
            }
            return 1;
        }
Alguem sabe como o fazer?
Reply
#2

alguйm em me pode ajudar a fazer isto?
Reply
#3

fazes tipo:

no topo do gm

pawn Код:
new podecomando[MAX_PLAYERS];
e depois metes a variavel em 1 e se tiver em 1 nao se pode usar mais o comando tipo assim:
pawn Код:
if(strcmp(cmd, "/noticias", true) == 0)
         {
            if(podecomando[playerid] == 1) return SendClientMessage(playerid,LIGHTGREEN,"Nao pode usar o comando");
            if(IsPlayerConnected(playerid))
            {
                if(PlayerInfo[playerid][pFaction] != 255 && DynamicFactions[PlayerInfo[playerid][pFaction]][fType] == 4)
                {
                    if(NewOnDuty[playerid] == 0)
                    {
                        new length = strlen(cmdtext);
                        while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        SendClientMessageToAll(COLOR_LIGHTYELLOW2,"[INFO:] Para ouvires as noticias ou comunicados tens de ligar o radio.");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "______________________[TRV-News]________________________");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "              ***Jingle da TRV-News***");
                        NewOnDuty[playerid] = 1;
                        podecomando[playerid] = 1;
                    }
                    else
                    {
                        new length = strlen(cmdtext);
                        while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "              ***Jingle da TRV-News***");
                        SendClientMessageToAll(COLOR_LIGHTGREEN, "_________________________________________________________");
                        NewOnDuty[playerid] = 0;
                        podecomando[playerid] = 0;
                    }
                }
            }
            return 1;
        }
mas altera como kiseres...
Reply
#4

O problema й que vai ser sу para esse player, mesmo assim vai dar um erro que depois de fazer uma vez ja nгo vai dar vai dar este erro "Nao pode usar o comando" depois de fazer /noticias, a unica maniera й Max_Players menos o que fez o comando.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)