10.06.2013, 15:11
As none of the code worked, I'll put the thread back up-_-
I need to make a command which only someone with a certain name can use.
Here's the code:
I need to make a command which only someone with a certain name can use.
Here's the code:
PHP код:
CMD:greg(playerid,params[])
{
new carid;
SetPlayerSkin(playerid,240);
SetPlayerHealth(playerid,99999);
SetPlayerArmour(playerid,99999);
GivePlayerWeapon(playerid,1,9999);
GivePlayerWeapon(playerid,4,9999);
GivePlayerWeapon(playerid,18,9999);
GivePlayerWeapon(playerid,24,9999);
GivePlayerWeapon(playerid,27,9999);
GivePlayerWeapon(playerid,29,9999);
GivePlayerWeapon(playerid,31,9999);
GivePlayerWeapon(playerid,34,9999);
GivePlayerWeapon(playerid,36,9999);
GivePlayerWeapon(playerid,44,9999);
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid, X, Y, Z);
carid = CreateVehicle(522,X, Y, Z,0,233,142,-1);
PutPlayerInVehicle(playerid, carid, 0);
return 1;
}