Help with getdistance
#3

Quote:
Originally Posted by //exora
Remove the define.

pawn Код:
stock GetDistanceBetweenPlayers(playerid,playerid2) //By Slick (Edited by Sacky)
{
    new Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2;
    new Float:tmpdis;
    GetPlayerPos(playerid,x1,y1,z1);
    GetPlayerPos(playerid2,x2,y2,z2);
    tmpdis = floatsqroot(floatpower(floatabs(floatsub(x2,x1)),2)+floatpower(floatabs(floatsub(y2,y1)),2)+floatpower(floatabs(floatsub(z2,z1)),2));
    return floatround(tmpdis);
}
Thank you very much, is my problem going to be fixed because i added that in? or do i have to edit my code.
Reply


Messages In This Thread
Help with getdistance - by ruckfules99 - 26.04.2010, 20:37
Re: Help with getdistance - by woot - 26.04.2010, 20:45
Re: Help with getdistance - by ruckfules99 - 26.04.2010, 22:51

Forum Jump:


Users browsing this thread: 1 Guest(s)