/Destroycars problem
#6

Ryder I have command /veh
Код:
if(strcmp(cmd, "/veh", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if (PlayerInfo[playerid][pAdmin] < 1337)
			{
			    SendClientMessage(playerid, COLOR_GREEN, "   niste ovlasteni da koristite tu komandu!");
			    return 1;
			}
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GREEN, "Koriscenje: /veh [id vozila] [boja1] [boja2]");
				return 1;
			}
			new car;
			car = strval(tmp);
			if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   ID vozila ne moze biti ispod 400 ili preko 611 !"); return 1; }
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GREEN, "Koriscenje: /veh [id vozila] [boja1] [boja2]");
				return 1;
			}
			new color1;
			color1 = strval(tmp);
			if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   ID Boje ne moze biti ispod 0 ili preko 126 !"); return 1; }
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GREEN, "Koriscenje: /veh [id vozila] [boja1] [boja2]");
				return 1;
			}
			new color2;
			color2 = strval(tmp);
			if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   ID Boje ne moze biti ispod 0 ili preko 126 !"); return 1; }
			new Float:X,Float:Y,Float:Z;
			GetPlayerPos(playerid, X,Y,Z);
			new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2, 60000);
			CreatedCars[CreatedCar] = carid;
			CreatedCar ++;
			format(string, sizeof(string), "   Vozilo %d je stvoreno.", carid);
			SendClientMessage(playerid, COLOR_GREY, string);
		}
		return 1;
	}
Reply


Messages In This Thread
/Destroycars problem - by Sandek - 05.02.2011, 22:47
Re: /Destroycars problem - by Dumb - 05.02.2011, 23:01
Re: /Destroycars problem - by xRyder - 05.02.2011, 23:08
Re: /Destroycars problem - by Sandek - 05.02.2011, 23:43
Re: /Destroycars problem - by xRyder - 06.02.2011, 00:02
Re: /Destroycars problem - by Sandek - 06.02.2011, 10:54

Forum Jump:


Users browsing this thread: 2 Guest(s)