18.04.2009, 15:43
Quote:
Originally Posted by <__Ǝthan__>
pawn Код:
|
[quote=<__Ǝthan__> ]
pawn Код:
if(strcmp(cmdtext, "/weaponpackadmin", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
SetPlayerArmour(playerid,100.0);
GivePlayerWeapon(playerid, 24, 10000);
GivePlayerWeapon(playerid, 32, 10000);
GivePlayerWeapon(playerid, 36, 10000);
GivePlayerWeapon(playerid, 3, 10000);
GivePlayerWeapon(playerid, 27, 10000);
GivePlayerWeapon(playerid, 41, 10000);
}
else
{
SendClientMessage(playerid, color, "You Cannot Use This Command As You Are Not Admin!"); // Replace color with a color of your choice
}
return 1;
}