SA-MP Forums Archive
Need help!!! /veh command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need help!!! /veh command (/showthread.php?tid=290110)



Need help!!! /veh command - Phantomkiller - 14.10.2011

Hello, I have Godfather GM.
I noticed that there is no command /veh [ID][Color1][Color2].
Can somebody post that command for Godfather GM?
Pls Answer...


Re: Need help!!! /veh command - Chris_Morrison - 14.10.2011

try this
pawn Код:
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 > 126) { 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 > 126) { 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,Y,Z, 0.0, color1, color2, 60000);
            CreatedCars[CreatedCar] = carid;
            CreatedCar ++;
            format(string, sizeof(string), "   Vehicle %d spawned.", carid);
            SendClientMessage(playerid, COLOR_GREY, string);
        }
        return 1;
    }



Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

Tnx, ill try that...


Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

D:\Ganja Rol3Play... By PhAnToM\gamemodes\ganjarp.pwn(27987) : error 017: undefined symbol "CreatedCar"
D:\Ganja Rol3Play... By PhAnToM\gamemodes\ganjarp.pwn(2798 : error 017: undefined symbol "CreatedCar"
D:\Ganja Rol3Play... By PhAnToM\gamemodes\ganjarp.pwn(2798 : warning 215: expression has no effect

Do i need something
Код:
new CreatedCar
?


Re: Need help!!! /veh command - Chris_Morrison - 14.10.2011

try add this
pawn Код:
new CreatedCars[100];



Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

k, just a sec


Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

I enter and i cant start car,


Re: Need help!!! /veh command - sleepysnowflake - 14.10.2011

-.-"

I suppose you have to type /start or something to start ya car in GF ?


Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

Doesent matter cuz admin can unfreeze



Re: Need help!!! /veh command - Phantomkiller - 14.10.2011

I should press Shift or Type /engine but im frozen...