Thread: Math Help
View Single Post
  #12  
Old 01-29-2007, 09:03 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
HTML Code:
//#CLIENTSIDE
function onCreated()
{
  this.onTimeout();
}
function onTimeout()
{
  if (mousex in |player.x - 5, player.x + 5| && mousey in |player.y - 5, player.y + 5|)
  {
    //Do Direction...and drop effect
  }
  showimg(200, this.curImage, mousescreenx, mousescreeny);
  changeimgvis(200, 3);
}

Last edited by Chandler; 01-29-2007 at 10:13 PM..
Reply With Quote