Need help with car spawning command
#1

Hello, I have a command that I use for spawning cars, but the thing is, when i use it, there is a problem that arises.

For example; if I type /spawn buffalo, it tells me that that car model / name was not found, but the gamemode compiles properly.

Code :

pawn Код:
new aVehicleNames[212][] =
{
    {"Landstalker"},
    {"Bravura"},
    {"Buffalo"},
    {"Linerunner"},
    {"Perrenial"},
    {"Sentinel"},
    {"Dumper"},
    {"Firetruck"},
    {"Trashmaster"},
    {"Stretch"},
    {"Manana"},
    {"Infernus"},
    {"Voodoo"},
    {"Pony"},
    {"Mule"},
    {"Cheetah"},
    {"Ambulance"},
    {"Leviathan"},
    {"Moonbeam"},
    {"Esperanto"},
    {"Taxi"},
    {"Washington"},
    {"Bobcat"},
    {"Mr Whoopee"},
    {"BF Injection"},
    {"Hunter"},
    {"Premier"},
    {"Enforcer"},
    {"Securicar"},
    {"Banshee"},
    {"Predator"},
    {"Bus"},
    {"Rhino"},
    {"Barracks"},
    {"Hotknife"},
    {"Trailer 1"},
    {"Previon"},
    {"Coach"},
    {"Cabbie"},
    {"Stallion"},
    {"Rumpo"},
    {"RC Bandit"},
    {"Romero"},
    {"Packer"},
    {"Monster"},
    {"Admiral"},
    {"Squalo"},
    {"Seasparrow"},
    {"Pizzaboy"},
    {"Tram"},
    {"Trailer 2"},
    {"Turismo"},
    {"Speeder"},
    {"Reefer"},
    {"Tropic"},
    {"Flatbed"},
    {"Yankee"},
    {"Caddy"},
    {"Solair"},
    {"Berkley's RC Van"},
    {"Skimmer"},
    {"PCJ-600"},
    {"Faggio"},
    {"Freeway"},
    {"RC Baron"},
    {"RC Raider"},
    {"Glendale"},
    {"Oceanic"},
    {"Sanchez"},
    {"Sparrow"},
    {"Patriot"},
    {"Quad"},
    {"Coastguard"},
    {"Dinghy"},
    {"Hermes"},
    {"Sabre"},
    {"Rustler"},
    {"ZR-350"},
    {"Walton"},
    {"Regina"},
    {"Comet"},
    {"BMX"},
    {"Burrito"},
    {"Camper"},
    {"Marquis"},
    {"Baggage"},
    {"Dozer"},
    {"Maverick"},
    {"News Chopper"},
    {"Rancher"},
    {"FBI Rancher"},
    {"Virgo"},
    {"Greenwood"},
    {"Jetmax"},
    {"Hotring"},
    {"Sandking"},
    {"Blista Compact"},
    {"Police Maverick"},
    {"Boxville"},
    {"Benson"},
    {"Mesa"},
    {"RC Goblin"},
    {"Hotring Racer A"},
    {"Hotring Racer B"},
    {"Bloodring Banger"},
    {"Rancher"},
    {"Super GT"},
    {"Elegant"},
    {"Journey"},
    {"Bike"},
    {"Mountain Bike"},
    {"Beagle"},
    {"Cropdust"},
    {"Stunt"},
    {"Tanker"},
    {"Roadtrain"},
    {"Nebula"},
    {"Majestic"},
    {"Buccaneer"},
    {"Shamal"},
    {"Hydra"},
    {"FCR-900"},
    {"NRG-500"},
    {"HPV1000"},
    {"Cement Truck"},
    {"Tow Truck"},
    {"Fortune"},
    {"Cadrona"},
    {"FBI Truck"},
    {"Willard"},
    {"Forklift"},
    {"Tractor"},
    {"Combine"},
    {"Feltzer"},
    {"Remington"},
    {"Slamvan"},
    {"Blade"},
    {"Freight"},
    {"Streak"},
    {"Vortex"},
    {"Vincent"},
    {"Bullet"},
    {"Clover"},
    {"Sadler"},
    {"Firetruck LA"},
    {"Hustler"},
    {"Intruder"},
    {"Primo"},
    {"Cargobob"},
    {"Tampa"},
    {"Sunrise"},
    {"Merit"},
    {"Utility"},
    {"Nevada"},
    {"Yosemite"},
    {"Windsor"},
    {"Monster A"},
    {"Monster B"},
    {"Uranus"},
    {"Jester"},
    {"Sultan"},
    {"Stratum"},
    {"Elegy"},
    {"Raindance"},
    {"RC Tiger"},
    {"Flash"},
    {"Tahoma"},
    {"Savanna"},
    {"Bandito"},
    {"Freight Flat"},
    {"Streak Carriage"},
    {"Kart"},
    {"Mower"},
    {"Duneride"},
    {"Sweeper"},
    {"Broadway"},
    {"Tornado"},
    {"AT-400"},
    {"DFT-30"},
    {"Huntley"},
    {"Stafford"},
    {"BF-400"},
    {"Newsvan"},
    {"Tug"},
    {"Trailer 3"},
    {"Emperor"},
    {"Wayfarer"},
    {"Euros"},
    {"Hotdog"},
    {"Club"},
    {"Freight Carriage"},
    {"Trailer 3"},
    {"Andromada"},
    {"Dodo"},
    {"RC Cam"},
    {"Launch"},
    {"Police Car (LSPD)"},
    {"Police Car (SFPD)"},
    {"Police Car (LVPD)"},
    {"Police Ranger"},
    {"Picador"},
    {"S.W.A.T. Van"},
    {"Alpha"},
    {"Phoenix"},
    {"Glendale"},
    {"Sadler"},
    {"Luggage Trailer A"},
    {"Luggage Trailer B"},
    {"Stair Trailer"},
    {"Boxville"},
    {"Farm Plow"},
    {"Utility Trailer"}
};
The above was for the car names.

The actual command is this:

pawn Код:
if(!strcmp(cmdtext, "/vspawn", true, 2))
    {
        new Float:x, Float:y, Float:z, vehicle, Float:a;
    new spawned;
        if(strlen(cmdtext[3]) == 0) return SendClientMessage(playerid, red, "You didn't give a vehicle name");
        if(strval(cmdtext[3]) == 0)
        {
            for(new i; i < 211; i++) if(strfind(aVehicleNames[i], cmdtext[3], true) != -1)
            {
                vehicle = i + 400;
                break;
            }

            if(vehicle == 0) return SendClientMessage(playerid, red, "That vehicle name was not found");
        }
        else
        {
            if(strval(cmdtext[3]) < 400 || strval(cmdtext[3]) > 611) return SendClientMessage(playerid, red, "That vehicle ID does not exist");
            vehicle = strval(cmdtext[3]);
        }

        GetPlayerFacingAngle(playerid, a);
        GetPlayerPos(playerid, x, y, z);

        x += (5 * floatsin(-a, degrees)); // credits to ******
        y += (5 * floatcos(-a, degrees)); // credits to ******

        if(spawned != 0) DestroyVehicle(spawned);

        spawned = CreateVehicle(vehicle, x, y, z, a + 90, -1, -1, -1);
        LinkVehicleToInterior(spawned, GetPlayerInterior(playerid));

        format(string, sizeof(string), "You have spawned a %s", aVehicleNames[vehicle - 400]);
        SendClientMessage(playerid, green, string);
        return 1;
    }
Any help would be appreciated.

P.s. My guess is that it is getting stuck at :

pawn Код:
if(vehicle == 0) return SendClientMessage(playerid, red, "That vehicle name was not found");
Reply


Messages In This Thread
Need help with car spawning command - by Hiitch - 20.09.2009, 16:19
Re: Need help with car spawning command - by [NYRP]Mike. - 20.09.2009, 16:28
Re: Need help with car spawning command - by Hiitch - 20.09.2009, 16:30
Re: Need help with car spawning command - by GTA_Rules - 20.09.2009, 17:13

Forum Jump:


Users browsing this thread: 4 Guest(s)