Jump to content
  • 0

Question

Posted

Ajutatima si pe mn va rog cu un totorial cu care sa bag comanda /fpk cu care un admin poate da afara un membru/lider al factiunii! Va rog ajutatima!

2 answers to this question

Recommended Posts

Posted

uite:

   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] >= 4 || PlayerInfo[playerid][pHelper] == 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;
						result[0] = toupper(result[0]);
						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;
						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.