23.12.2011, 03:33
Pawn Code:
I'm trying to make it the where if your not logged into the RCON it will show "~Command denied~" but I test it IG, when i'm not logged into the RCON, and it gives me the health, armour and the minigun.
pawn Код:
if (strcmp("/adminpack", cmdtext, true, 10) == 0)
{
if(IsPlayerAdmin(playerid))
{
SendClientMessage(playerid,0x0077BB00,"~Command denied~");
return 1;
}
{
SetPlayerHealth(playerid,100000);
SetPlayerArmour(playerid,100000);
GivePlayerWeapon(playerid,38,99999);
}
{
SendClientMessage(playerid, 0x0077BB00, "~Command Accepted~");
SendClientMessage(playerid, 0xAFAFAFAA, "Your hp has been set to 100000.");
SendClientMessage(playerid, 0xAFAFAFAA, "Your armour has been set to 100000.");
SendClientMessage(playerid, 0xAFAFAFAA, "You have recieved a minigun with 99999 bullets.");
SendClientMessage(playerid, 0xAFAFAFAA, "Enjoy your admin pack.");
}
return 1;
}