Endless Online - A Free MMORPG!

Auto Walk Run Lock SCAR Script

This script was made in SCAR Divi 3.13.

program AutoWalkRunLock;
//
// This script will automatically hold down the arrow key
// of your choice. Think of this as a "Run Lock" feature
// that you see in many other MMOs.
//
// http://eomix.blogspot.com
//
begin
FindWindow('Endless Online')
ActivateClient
repeat
if(IsKeyDown('u'))then //press U to walk up
repeat
SendArrow(0);
until (IsKeyDown('s')); //press S to stop walking
if(IsKeyDown('d'))then //press D to walk down
repeat
SendArrow(2);
until (IsKeyDown('s')); //press S to stop walking
if(IsKeyDown('l'))then //press L to walk left
repeat
SendArrow(3);
until (IsKeyDown('s')); //press S to stop walking
if(IsKeyDown('r'))then //press R to walk right
repeat
SendArrow(1);
until (IsKeyDown('s')); //press S to stop walking
until (IsKeyDown('e')); //press E to end script
End.


No comments:

Post a Comment