View Single Post
  #1  
Old 12-13-2012, 02:43 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
Speed Hack detect

Hey guys, this is the first script I've released publicly. It nothing special at all, just thought it would maybe be useful to some. Thanks to Chris for supplying a distance formula. Thanks to scriptless for helping slim it down, and making it more efficient.

PHP Code:
//I will leave it up to you to apply checks for staff members,
//so staff don't end up logged or jailed.
//#CLIENTSIDE
function onCreated() {
  
this.x1 player.x;
  
this.y1 player.y;
  
setTimer(1);
}

function 
onTimeOut() {
  
dist(this.x1this.y1player.xplayer.y);
  
// set the values to current position
  
this.x1 player.x;
  
this.y1 player.y;
  
setTimer(1);
}

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

function 
CheckDist(dist) {
  if (
dist 15) {
     
//This is where you put an action for speed hackers.
     //Logging it, or sending them to jail are good ideas.
  
}


Last edited by Stowen; 12-13-2012 at 04:16 PM..
Reply With Quote