[Pomoc] Veh


Započeo Emil, Januar 11, 2015, 14:33:29 POSLE PODNE

prethodna tema - sledeća tema

0 članova i 1 gost pregledaju ovu temu.

Skripta koju koristim: RB:HP
Detaljan opis problema: Ulogovan sam kao admin i kad kucam npr /veh 415 0 0 ili koji god id vozila nece da se spawna uvjek pise Vozilo 60000 je stvoreno ! i tako uvjek
Dio skripte:
Neke slike/video za lakse dobivanje pomoci(neobavezno):
LibertyHood otvaranje petak u 20 casova !

Posajli komandu,ovako ti ne moze niko pomoc.


Lack of planning on your part does not constitute an emergency on my part.

}
	if(strcmp(cmd, "/veh", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if (PlayerInfo[playerid][pAdmin] < 1340)
			{
			    SendClientMessage(playerid, COLOR_GRAD1, "Niste ovlasteni da koristite tu komandu!");
			    return 1;
			}
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /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_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /veh [id vozila] [boja1] [boja2]");
				return 1;
			}
			new color1;
			color1 = strval(tmp);
			if(color1 < 0 || color1 > 180) { 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_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /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 =(car, X,Y,Z, 0.0, color1, color2, 60000);
			CreatedCars[CreatedCar] = carid;
            PutPlayerInVehicle(playerid, carid, 0);
			CreatedCar ++;
			format(string, sizeof(string), "   Vozilo %d je stvoreno.", carid);
			SendClientMessage(playerid, COLOR_GREY, string);
		}
		return 1;
LibertyHood otvaranje petak u 20 casova !

Probaj ovako
if(strcmp(cmd, "/veh", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if (PlayerInfo[playerid][pAdmin] < 1340)
			{
			    SendClientMessage(playerid, COLOR_GRAD1, "Niste ovlasteni da koristite tu komandu!");
			    return 1;
			}
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /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_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /veh [id vozila] [boja1] [boja2]");
				return 1;
			}
			new color1;
			color1 = strval(tmp);
			if(color1 < 0 || color1 > 180) { 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_GRAD2, "{F3FF02}RB:RP CMD | {0049FF} /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; // ??
            PutPlayerInVehicle(playerid, carid, 0);
			CreatedCar ++;
			format(string, sizeof(string), "   Vozilo %d je stvoreno.", carid);
			SendClientMessage(playerid, COLOR_GREY, string);
		}
		return 1;


PS: Mani se strcmp za komande koristi ZCMD ili jos bolje YCMD