28.09.2013, 02:09
Hello i am showing you today how to make gunpack for cops and robbers
So Clearly its very easy and you can actually do with it fun
So Clearly its very easy and you can actually do with it fun
pawn Код:
CMD:gunpack1(playerid, params[]);
{
if(GetPlayerScore(playerid) >= 300); //its the score that you need to use this command
{
GivePlayerWeapon(playerid, 22, 100); // you may change the weaps here
GivePlayerWeapon(playerid, 25, 100);
GivePlayerWeapon(playerid, 29, 100);
SendClientMessage(playerid, 0xFF0055, "You Have Used GunPack1");
}
else return SendClientMessage(playerid, 0xFFFFFF, "You do not have enough score to use this command.");
return 1;
}