[HELP] Carspawn command
#6

Код HTML:
	if(strcmp(cmd, "/veh", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if (PlayerInfo[playerid][pAdmin] < 4)
			{
			    SendClientMessage(playerid, COLOR_GRAD1, "   you are not authorized to use that command!");
			    return 1;
			}
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
				return 1;
			}
			new car;
			car = strval(tmp);
			if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 or above 611 !"); return 1; }
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
				return 1;
			}
			new color1;
			color1 = strval(tmp);
			if(color1 < 0 || color1 > 252) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
				return 1;
			}
			new color2;
			color2 = strval(tmp);
			if(color2 < 0 || color2 > 252) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
			new Float:X,Float:Y,Float:Z;
			GetPlayerPos(playerid, X,Y,Z);
			new carid = CreateVehicle(car, X+2,Y,Z, 0.0, color1, color2, 60000);
			format(string, sizeof(string), "   Vehicle %d spawned.", carid);
			PutPlayerInVehicle(playerid, carid, 0);
			SendClientMessage(playerid, COLOR_GREY, string);
		}
		return 1;
	}
Reply


Messages In This Thread
[HELP] Carspawn command - by WThieves - 06.07.2010, 20:02
Re: [HELP] Carspawn command - by CAR - 06.07.2010, 20:45
Re: [HELP] Carspawn command - by TheGarfield - 06.07.2010, 20:46
Re: [HELP] Carspawn command - by WThieves - 06.07.2010, 21:56
Re: [HELP] Carspawn command - by CAR - 06.07.2010, 22:06
Re: [HELP] Carspawn command - by TheKingOfSamp - 06.07.2010, 22:57
Re: [HELP] Carspawn command - by WThieves - 07.07.2010, 11:43
Re: [HELP] Carspawn command - by CAR - 07.07.2010, 11:44
Re: [HELP] Carspawn command - by WThieves - 07.07.2010, 11:57
Re: [HELP] Carspawn command - by CAR - 07.07.2010, 12:07

Forum Jump:


Users browsing this thread: 1 Guest(s)