[HELP]My commands do no show in console
#1

I have created this command :
pawn Код:
if(strcmp(cmd, "/takedrugs", true) == 0 || strcmp(cmd, "/td", true) == 0)
    {
    format(string, sizeof(string), "Command: %s: %s", sendername2, cmdtext);
    SendCmdMessage(COLOR_YELLOW, string);
    if (PlayerLoggedIn[playerid] != 1)
    {
        SendClientMessage(playerid, COLOR_RED, "Error: You are not logged in");
        return 1;
    }
    if(gTeam[playerid] != TEAM_COP && PlayerInfo[playerid][pRank] == 1 || gTeam[playerid] != TEAM_ARMY && PlayerInfo[playerid][pRank] == 2)
    {
        SendClientMessage(playerid, COLOR_WHITE, "You are not in the cop team!");
        return 1;
    }
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
        SendClientMessage(playerid, COLOR_GREY, "USAGE: /takedrugs [playerid]");
        return 1;
    }
        giveplayerid = strval(tmp);
    if(giveplayerid == playerid)
    {
     SendClientMessage(playerid, COLOR_RED, "You are a law officer, you do not have any drugs.");
     return 1;
    }
    if(IsPlayerConnected(giveplayerid))
    {
   if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, "   You are a COP you don't have drugs!"); return 1; }
   if(giveplayerid != INVALID_PLAYER_ID)
   {
        format(string, sizeof(string), "Command: %s: %s", sendername2, cmdtext);
        SendCmdMessage(COLOR_YELLOW, string);
        if(giveplayerid != INVALID_PLAYER_ID)
        {
            if (ProxDetectorS(8.0, playerid, giveplayerid))
            {
                format(string, sizeof(string), "* You have taken away %s's Drugs.", giveplayer);
                SendClientMessage(playerid, COLOR_YELLOW, string);
                format(string, sizeof(string), "* Officer %s has taken away your Drugs.", sendername);
                SendClientMessage(giveplayerid, COLOR_YELLOW, string);
                PlayerInfo[giveplayerid][pDrugs] = 0;
            }
            else
            {
                SendClientMessage(playerid, COLOR_RED, "Error: That player is not near you !");
                return 1;
            }
        }
    }
    }
    else
    {
        SendClientMessage(playerid, COLOR_RED, "Error: That player is Offline !");
        return 1;
        }
    }
Everything works fine , but if a cop tipe it it doesn't show on my game server console why ?
Reply


Messages In This Thread
[HELP]My commands do no show in console - by [Aka]Dragonu - 04.12.2010, 16:34
Re: [HELP]My commands do no show in console - by Mike Garber - 04.12.2010, 16:41
Re: [HELP]My commands do no show in console - by [Aka]Dragonu - 04.12.2010, 16:44

Forum Jump:


Users browsing this thread: 1 Guest(s)