SA-MP Forums Archive
A little-big problem with my car choosing script - 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: A little-big problem with my car choosing script (/showthread.php?tid=430281)



A little-big problem with my car choosing script - [XST]O_x - 13.04.2013

So I've been working on this car choosing script (Pressing arrows to switch cars) but it seems like only the first car appears, and the next ones fail to.
pawn Код:
new vehNewPlayerChoose[][][] = {
{401, "Bravura"},
{404, "Perenniel"},
{466, "Glendale"},
{526, "Fortune"},
{527, "Cadrona"},
{529, "Willard"},
{542, "Clover"},
{546, "Intruder"},
{549, "Tampa"}
};

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    new str[100];
    if(isPlayerChoosingVehicle[playerid])
    {
        DestroyVehicle(playerVeh[playerid]);
        if(PRESSED(KEY_ANALOG_LEFT))
        {
            if(curVeh[playerid] == 0) {
                curVeh[playerid] = sizeof vehNewPlayerChoose;
                playerVeh[playerid] = CreateVehicle(vehNewPlayerChoose[curVeh[playerid]][0][0], vehPos_X, vehPos_Y, vehPos_Z, 45.0, -1, -1, -1);
            }
            else if(curVeh[playerid] > 0) playerVeh[playerid] = CreateVehicle(vehNewPlayerChoose[--curVeh[playerid]][0][0], vehPos_X, vehPos_Y, vehPos_Z, 45.0, -1, -1, -1);

            format(str, sizeof(str), "Car: %d %s", vehNewPlayerChoose[curVeh[playerid]][0][0], vehNewPlayerChoose[curVeh[playerid]][1]);
            SendClientMessage(playerid, COLOR_BLUE, str);
        }
        else if(PRESSED(KEY_ANALOG_RIGHT))
        {
            if(curVeh[playerid] == sizeof vehNewPlayerChoose) {
                curVeh[playerid] = 0;
                playerVeh[playerid] = CreateVehicle(vehNewPlayerChoose[curVeh[playerid]][0][0], vehPos_X, vehPos_Y, vehPos_Z, 45.0, -1, -1, -1);
            }
            else if(curVeh[playerid] < sizeof vehNewPlayerChoose) playerVeh[playerid] = CreateVehicle(vehNewPlayerChoose[++curVeh[playerid]][0][0], vehPos_X, vehPos_Y, vehPos_Z, 45.0, -1, -1, -1);

            format(str, sizeof(str), "Car: %d %s", vehNewPlayerChoose[curVeh[playerid]][0][0], vehNewPlayerChoose[curVeh[playerid]][1]);
            SendClientMessage(playerid, COLOR_BLUE, str);
        }
    }
    return 1;
}
Weird thing is - the message appears correctly (according to the model ID and the vehicle name by slot), so it seems like the only part that fails is the actual vehicle creation.
Only the first vehicle shows up, but the next ones won't.


Re: A little-big problem with my car choosing script - AndreT - 13.04.2013

Why vehNewPlayerChoose[curVeh[playerid]][0][0]?

To access 404 for example, vehNewPlayerChoose[1][0] would suffice, for example. vehNewPlayerChoose is an array containing arrays containing an integer and an array.


Re: A little-big problem with my car choosing script - [XST]O_x - 13.04.2013

Quote:
Originally Posted by AndreT
Посмотреть сообщение
Why vehNewPlayerChoose[curVeh[playerid]][0][0]?

To access 404 for example, vehNewPlayerChoose[1][0] would suffice, for example. vehNewPlayerChoose is an array containing arrays containing an integer and an array.
Because else it returns a tag mismatch error.