12.05.2010, 14:14
Usa a funзгo GetDistanceBetweenPlayers:
Код:
stock GetDistanceBetweenPlayers(playerid,playerid2) //By Slick (Edited by Sacky) { new Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2; new Float:dis; GetPlayerPos(playerid,x1,y1,z1); GetPlayerPos(playerid2,x2,y2,z2); dis = floatsqroot((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1)+(z2-z1)*(z2-z1)); return floatround(dis); }