How to detect if a vehicle is in water?
#3

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;
}
By Ballu Miaa

check if that works
Reply


Messages In This Thread
How to detect if a vehicle is in water? - by SyntaxQ - 01.03.2014, 11:22
Re: How to detect if a vehicle is in water? - by Smileys - 01.03.2014, 11:32
Re: How to detect if a vehicle is in water? - by ReD_HunTeR - 01.03.2014, 11:33
Re: How to detect if a vehicle is in water? - by Zex Tan - 01.03.2014, 11:41
Re: How to detect if a vehicle is in water? - by SyntaxQ - 01.03.2014, 11:43

Forum Jump:


Users browsing this thread: 2 Guest(s)