Thread: Cheat Windows
View Single Post
  #18  
Old 12-13-2012, 02:31 PM
Stowen Stowen is offline
Graalian since '01
Join Date: Sep 2005
Location: Massachusets, USA
Posts: 156
Stowen will become famous soon enough
Send a message via AIM to Stowen Send a message via MSN to Stowen
Alright guys, so I used the formula for distance that Chris has supplied me with and it works great. I get a constant moving speed of 10. Not sure what the measurement for speed on Graal would be LOL but I got 10. That's enough for me to do my work. Anyways, here's the script if anybody wishes to use it themselves.

PHP Code:
//#CLIENTSIDE

function onCreated() {
onTimeOut();
}

function 
onTimeOut() {
this.x1 player.x;
this.y1 player.y;
sleep(1);
this.x2 player.x;
this.y2 player.y;
dist(this.x1this.y1this.x2this.y2);
}

function 
dist(x1y1x2y2) { 
  
this.dist = (((x1 x2) ^ 2) + ((y1 y2) ^ 2)) ^ 0.5;
  
player.chat this.dist;
  
setTimer(0.05);

Reply With Quote