18.08.2011, 19:31
Quote:
|
could some one make a commands so if i typed /mini id get a minigun. But i want it to be an admin only command.
|
PHP код:
YCMD:minigun(playerid, params[], help)
{
#pragma unused params
#pragma unused help
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "You are not authorized to use that command!");
GivePlayerWeapon(playerid, 38, 9999999);
return 1;
}
PHP код:
CMD:minigun(playerid, params[])
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "You are not authorized to use that command!");
GivePlayerWeapon(playerid, 38, 9999999);
return 1;
}


