|
Registered User
Last Online: 08-21-2009 03:27 PM
Join Date: Nov 2005
Location: Michigan.
Posts: 2,485
Rep Power: 7 Rep Points: 31
Points: 146,889.01
Bank: 0.00
Total Points: 146,889.01
|
Elona's Reach 55 Monk Bot
Code:
function main()
a = Random(100, 150)
b = Random(161, 165)
RandomSleep(15000, 16000)
MouseClick("left", a, b, 2)
RandomSleep(1000, 2000)
Send("{ENTER}")
RandomSleep(13000, 16000)
Send("8")
RandomSleep(2500, 3500)
Send("7")
RandomSleep(2500, 3500)
Send("v")
RandomSleep(500, 1000)
Send("{SPACE}")
RandomSleep(15000, 16000)
Send("j")
RandomSleep(500, 1000)
Send("f")
RandomSleep(400, 800)
Send("6")
RandomSleep(2500, 3500)
Send("5")
RandomSleep(3500, 4500)
Send("{w down}")
RandomSleep(5800, 6200)
Send("{w up}")
RandomSleep(400, 600)
Send("1")
RandomSleep(400, 800)
Send("{e down}")
RandomSleep(3000, 3500)
Send("{e up}")
RandomSleep(500, 700)
Send("{w down}")
RandomSleep(7300, 7500)
Send("{w up}")
RandomSleep(500, 600)
Send("1")
RandomSleep(500, 700)
Send("{q down}")
RandomSleep(9600, 9800)
Send("{q up}")
RandomSleep(400, 600)
Send("1")
RandomSleep(1500, 2000)
Send("2")
end
function fight()
RandomSleep(2000, 3000)
Send("1")
RandomSleep(1500, 2000)
Send("2")
RandomSleep(2000, 3000)
Send("3")
RandomSleep(2000, 3000)
Send("4")
RandomSleep(2000, 3000)
Send("2")
RandomSleep(1500, 2000)
Send("1")
RandomSleep(2000, 3000)
Send("2")
RandomSleep(1500, 2000)
Send("1")
RandomSleep(2000, 3000)
Send("2")
RandomSleep(1500, 2000)
Send("1")
RandomSleep(2000, 3000)
Send("2")
RandomSleep(1500, 2000)
Send("1")
RandomSleep(2500, 3500)
Send("2")
RandomSleep(7000, 9000)
Send("1")
RandomSleep(2000, 3000)
end
function loot()
Send("o")
RandomSleep(500, 800)
Send("{SPACE}")
RandomSleep(500, 800)
Send("o")
RandomSleep(500, 800)
Send("{SPACE}")
RandomSleep(500, 800)
Send("o")
RandomSleep(500, 800)
Send("{SPACE}")
RandomSleep(500, 800)
Send("o")
RandomSleep(500, 800)
Send("{SPACE}")
RandomSleep(500, 800)
Send("o")
RandomSleep(500, 800)
Send("{SPACE}")
RandomSleep(500, 800)
end
function travel()
Send("m")
RandomSleep(700, 1000)
a = Random(565, 575)
b = Random(315, 325)
c = Random(1, 2)
if (c == 1) then
MouseClick("left", a, b, 1)
RandomSleep(200, 400)
Send("{Space}")
else
MouseClick("left", a, b, 2)
end
end
WinActivate("Guild Wars")
Sleep(10000)
while true do
main();
fight();
loot();
travel();
end
--##############################################################################
--Settings:
--Skills:
--1. Protective Spirit
--2. Healing Breeze
--3. Shield of Judgment
--4. Symbol of Wrath
--5. Blessed Signet
--6. Mending
--7. Balthazar's Spirit
--8. Blessed Aura
--Attributes:
--Healing Prayers: 9
--Smiting Prayers: 15
--Favor of the Gods: 12
--Protection Prayers: 9
--Graphical Settings:
--Interfacesize: Larger
--Set enter dialog like in the picture
--Resolution: 1024*768
--Ingame bindings:
--Move Left: q
--Move Right: e
--Target next ally: v
--Action: space
--Target yourself: f
--Drop Item: j
--Target next item: o
--Map: m
--/Settings
--##############################################
The instructions are in the latter part of the code. The original creator is Term!nX from ePvPers. This is a MoveIT bot.
|