Is it possible to replace 1 with "Yes"?
#2

Replace with "Yes" at Gun License?

If yes, take this:
pawn Код:
CMD:showid(playerid, params[])
{
    new Player;
    new gunlicensetext[5];
    if(pInfo[playerid][GunLic] == 1)
    {
        gunlicensetext = "Yes";
    }
    else
    {
        gunlicensetext = "No";
    }
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFF0000AA, "ERROR: You are not a RCON Admin!");
    else if (sscanf(params, "u", Player)) return SendClientMessage(playerid, COLOR_LIGHTBLUE, "[INFO] /showid [Playerid/PartOfName");
    else if (Player == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED2, "[INFO]{FFFFFF}: Invalid ID.");
    else
    {
        new string[125];
        SendClientMessage(Player,COLOR_LIGHTBLUE,"====================================================");
        format(string,sizeof(string),"|| Name : %s || || Gun License : %s ||",RemoveUnderScore(playerid),gunlicensetext);
        SendClientMessage(Player,COLOR_GRAY,string);
        if (pInfo[playerid][LSPD] >= 1)
        {
            SendClientMessage(Player,COLOR_GRAY,"Organization: Los Santos Police Department");
            SendClientMessage(Player,COLOR_LIGHTBLUE,"====================================================");
        }

    }
    return 1;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)