Jump to content

Question

Posted

sunt foarte insistent cu topicurile dar invat si eu... as dori si eu comanda /fpk nu stiu cum sa o fac...Multumesc celora ce mau ajutat si ma ajuta:)

3 answers to this question

Recommended Posts

Posted

//-----------------------[COMANDA-AFK]--------------------------------------------

    if(strcmp(cmd, "/fpk", true) == 0)

    {

    if(IsPlayerConnected(playerid))

    {

    tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /fpk [id/name] [PKer]");

return 1;

}

giveplayerid = ReturnUser(tmp);

if (PlayerInfo[playerid][pAdmin] >= 3)

{

if(IsPlayerConnected(giveplayerid))

{

    if(giveplayerid != INVALID_PLAYER_ID)

    {

    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));

GetPlayerName(playerid, sendername, sizeof(sendername));

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;

if(!strlen(result))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /fpk [id/name] [PKer]");

return 1;

}

      format(string, sizeof(string), "[AdminCMD] : %s Was FactionPKed by Admin %s - PKer: %s", giveplayer, sendername, (result));

                        SendClientMessageToAll(0x5EFB6EFF, string);

                        format(string, sizeof(string), "You were FactionPKed by Admin %s, you are kicked out of your faction.",sendername);

        SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);

                        PlayerInfo[giveplayerid][pMember]=0;

                        PlayerInfo[giveplayerid][pLeader]=0;

                        PlayerInfo[giveplayerid][pRank] = 0;

PlayerInfo[giveplayerid][pChar] = 0;

PlayerInfo[giveplayerid][pTeam] = 0;

gTeam[giveplayerid] = 0;

new rand = random(sizeof(CIV));

SetSpawnInfo(giveplayerid, gTeam[giveplayerid], CIV[rand],0.0,0.0,0.0,0,0,0,0,0,0,0);

PlayerInfo[giveplayerid][pModel] = CIV[rand];

MedicBill[giveplayerid] = 0;

SpawnPlayer(giveplayerid);

return 1;

}

}

}

else

{

format(string, sizeof(string), "  %d is not an active player.", giveplayerid);

SendClientMessage(playerid, COLOR_GRAD1, string);

}

}

return 1;

    }

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.