Is Object in front of player?
#1

How can i detect if a player is in front of an object?
Reply
#2

IsPlayerInArea function
Reply
#3

Quote:
Originally Posted by Jefff
Посмотреть сообщение
IsPlayerInArea function
IsPlayerInArea doesn't look the angle of the player/object
Reply
#4

GetPlayerCameraFrontVector should work to detect where exactly does the player look at.
Reply
#5

I need that the Angle of the player is in front of an object and not the Player camera.
Reply
#6

So just create area in front of object and next
if(IsPlayerInArea(areaid))
{
// code
}
Reply
#7

The problem is the same Jeff : how to detect where the "front of object" is ?
Reply
#8

Quote:
Originally Posted by Jefff
Посмотреть сообщение
So just create area in front of object and next
if(IsPlayerInArea(areaid))
{
// code
}
Doing this I still have to see if the player is in front of the object
Reply
#9

use GetPlayerCameraFrontVector and check X And Y object pos. If X and Y camera = X and Y object bla bla bla
Reply
#10

Give this a shot you can use a value higher than 150.0 if you want.

pawn Код:
stock IsPlayerInFrontOfPoint(playerid, Float:x, Float:y, Float:z, Float:dist=150.0)
{
    new Float:px, Float:py, Float:pz;
    GetPlayerPos(targetid, px, py, pz);//my pos
    GetXYInFrontOfPlayer(targetid,px,py,dist);
    if(GetDistance(x,y,z,px,py,pz) <= dist)return 1;
    return 0;
}
Reply


Forum Jump:


Users browsing this thread: