Pretraga

Pritisnite Enter za pretragu ili Escape za zatvaranje

Zaključano

[Pomoc] Veh

Započeo Emil
pre 11 godina
233
pregleda
4
postova
Ova tema je zaključana. Samo moderatori i administratori mogu odgovarati.
Emil
Shot Caller
pre 11 godina
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):
BelMiNN
Shot Caller
pre 11 godina
Posajli komandu,ovako ti ne moze niko pomoc.
Emil
Shot Caller
pre 11 godina
	}
if(strcmp(cmd, "/veh", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        if (PlayerInfo < 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] ");
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] ");
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] ");
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 = carid;
            PutPlayerInVehicle(playerid, carid, 0);
CreatedCar ++;
format(string, sizeof(string), "  Vozilo %d je stvoreno.", carid);
SendClientMessage(playerid, COLOR_GREY, string);
}
return 1;
Rudimental
OG Legend
pre 11 godina
Probaj ovako

if(strcmp(cmd, "/veh", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        if (PlayerInfo < 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] ");
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] ");
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] ");
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 = 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

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava