How do I change playertopoint to accept any Z cordinate?
#1

if(PlayerToPoint(5,playerid,X,Y,))
So if the player is to point X,Y, with any Z cordinate?


Код:
public PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
{
  if(IsPlayerConnected(playerid))
	{
		new Float:oldposx, Float:oldposy, Float:oldposz;
		new Float:tempposx, Float:tempposy, Float:tempposz;
		GetPlayerPos(playerid, oldposx, oldposy, oldposz);
		tempposx = (oldposx -x);
		tempposy = (oldposy -y);
		tempposz = (oldposz -z);
		//printf("DEBUG: X:%f Y:%f Z:%f",posx,posy,posz);
		if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
		{
			return 1;
		}
	}
	return 0;
}
Reply
#2

Quote:
Originally Posted by Seif_
Remove the Z checks?
lol figured out by self but thanks for answer
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)