Endless Online - A Free MMORPG!

Right Click Queue Spells SCAR Script

This script was made in SCAR Divi 3.13.

program RightClickQueueSpells;
//
// This program queues a spell by clicking the right mouse button.
// By default it will queue the spell slotted for the F8 key.
// Press CTRL+ALT+S at any time to end this script.
//
// http://eomix.blogspot.com
//
begin
FindWindow('Endless Online')
ActivateClient
repeat
if (IsMouseButtonDown(False)) then
keydown(119);
Wait(20);
keyup(119);
Wait(10);
until(false)
keyup(119);
end.

No comments:

Post a Comment