Need help with my Vehicle System
#7

I tried something, now it keeps saying it isnt a saved vehicle

pawn Код:
command(setcarcolor, playerid, params[])
{
    new col1, col2;
    if(sscanf(params, "dd", col1, col2))
    {
        if(Player[playerid][AdminLevel] >= 4)
        {
            SendClientMessage(playerid, WHITE, "SYNTAX: /setcarcolor [color1] [color2]");
        }
    }
    else
    {
        if(Player[playerid][AdminLevel] >= 4)
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                for(new i = 0; i < MAX_VEHICLES; i++)
                {
                    new string[128];
                    {
                        format(string, sizeof(string), "Vehicles/Vehicle_%d.ini", i);
                    }
                    if(fexist(string))
                    {
                        if(Vehicles[i][CarID] == GetPlayerVehicleID(playerid))
                        {
                            Vehicles[i][Col1] = col1;
                            Vehicles[i][Col2] = col2;
                            ChangeVehicleColor(i, col1, col2);
                            SaveExistingVehicle(i);
                        }
                        else
                        {
                            SCM(playerid, RED, "WTFFFFFFFFFFFFFF");
                        }
                    }
                    else
                    {
                        SendClientMessage(playerid, WHITE, "This is not a saved car!");
                    }
                }
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Need help with my Vehicle System - by Flashlight - 01.02.2013, 16:06
Re: Need help with my Vehicle System - by Stefand - 01.02.2013, 21:17
Re: Need help with my Vehicle System - by Kirollos - 01.02.2013, 22:23
Re: Need help with my Vehicle System - by Threshold - 01.02.2013, 22:26
Re: Need help with my Vehicle System - by Flashlight - 02.02.2013, 11:45
Re: Need help with my Vehicle System - by Flashlight - 02.02.2013, 11:54
Re: Need help with my Vehicle System - by Flashlight - 02.02.2013, 12:08
Re: Need help with my Vehicle System - by Flashlight - 02.02.2013, 13:07
Re: Need help with my Vehicle System - by Threshold - 02.02.2013, 13:58
Re: Need help with my Vehicle System - by Stefand - 02.02.2013, 16:53

Forum Jump:


Users browsing this thread: 1 Guest(s)