View Single Post
  #2  
Old 06-06-2010, 04:38 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Are you familiar with the distance formula?



If not Google it and familiarize yourself with it, it's quite useful.

You don't really need to understand it in your case though.

PHP Code:
function hit(xyradius) {
  for (
temp.pl findNearestPlayers(xy)) {
    if (
dist(xypl.xpl.y) <= radius) {
      
pl.trigger("hit");
    }
  }
}

function 
dist(x1y1x2y2) {
  return (((
x2 x1) ^ 2) + ((y2 y1) ^ 2))) ^ 0.5;

__________________
Reply With Quote