Pissing on another player
#8

Theres an stock named IsPlayerInRange, let me find it

pawn Код:
stock IsPlayerInRange(playerid, Float:Range, Float:Z_Range, Float:tar_x, Float:tar_y, Float:tar_z) // checks if player is in range of a point
{
    new bool:care_z = true, Float:player_x, Float:player_y, Float:player_z, Float:radius_xy, Float:radius_z;
    GetPlayerPos(playerid, player_x, player_y, player_z);
    radius_xy = floatsqroot(floatadd(floatpower(floatsub(player_x,tar_x),2.0),floatpower(floatsub(player_y,tar_y),2.0)));
    radius_z = floatsqroot(floatadd(floatpower(radius_xy,2.0),floatpower(floatsub(player_z,tar_z),2.0)));
    if(radius_z > Z_Range && radius_xy < radius_z)
    {
        care_z = false;
    }
    if(radius_xy <= Range && care_z)
    {
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
Pissing on another player - by Cypress - 22.09.2010, 20:46
Re: Pissing on another player - by Cameltoe - 22.09.2010, 20:51
Re: Pissing on another player - by Cypress - 22.09.2010, 20:56
Re: Pissing on another player - by Cameltoe - 22.09.2010, 21:04
Re: Pissing on another player - by Cypress - 23.09.2010, 10:30
Re: Pissing on another player - by Retardedwolf - 23.09.2010, 10:34
Re: Pissing on another player - by Desert - 23.09.2010, 11:41
Re: Pissing on another player - by Cameltoe - 23.09.2010, 12:58
Re: Pissing on another player - by Scenario - 23.09.2010, 13:06
Re: Pissing on another player - by Claude - 23.09.2010, 14:30
Re: Pissing on another player - by Cameltoe - 23.09.2010, 15:45
Re: Pissing on another player - by Mike_Peterson - 23.09.2010, 17:09
Re: Pissing on another player - by Cameltoe - 23.09.2010, 17:15
Re: Pissing on another player - by Cypress - 04.11.2010, 12:37
Re: Pissing on another player - by Cameltoe - 05.11.2010, 06:17

Forum Jump:


Users browsing this thread: 1 Guest(s)