detect vehicle is in water
#2

You can only check if the player is in a vehicle and the vehicle is in the water by the available codes on the forums. If you want to do that. You will need to make a custom function which will check the pos of the vehicle with all the water areas. I tried to code you a function. It is untested. Maybe it will work. I am not sure.

pawn Код:
stock IsVehicleInWater(vehicleid)
{
        new Float:water_areas[][] =
        {
                {25.0,  2313.0, -1417.0,        23.0},
                {15.0,  1280.0, -773.0,         1082.0},
                {15.0,  1279.0, -804.0,         86.0},
                {20.0,  1094.0, -674.0,         111.0},
                {26.0,  194.0,  -1232.0,        76.0},
                {25.0,  2583.0, 2385.0,         15.0},
                {25.0,  225.0,  -1187.0,        73.0},
                {50.0,  1973.0, -1198.0,        17.0}
        };
        for(new t=0; t < sizeof water_areas; t++)
        if(GetVehicleDistanceFromPoint(vehicleid,water_areas[t][1],water_areas[t][2],water_areas[t][3]) <= water_areas[t][0]) return 1;
    return 0;
}
Reply


Messages In This Thread
detect vehicle is in water - by COL - 20.01.2014, 18:33
Re: detect vehicle is in water - by Ballu Miaa - 20.01.2014, 19:38
Re: detect vehicle is in water - by Vince - 20.01.2014, 20:22
Re: detect vehicle is in water - by Ballu Miaa - 20.01.2014, 20:29
Re: detect vehicle is in water - by COL - 24.01.2014, 17:19
Re: detect vehicle is in water - by Memoryz - 24.01.2014, 17:37

Forum Jump:


Users browsing this thread: 1 Guest(s)