Thursday, December 11, 2008

LotRO Bot: Grind and Loot Bot

There are many useful exploits, hacks and bots for Lord of the Rings Online at Strategy Freaks. Use this bot below as a function, when ur mob is dead, select it with F10, then send U command

This example is for 1024x768 Window Mode, but can be easily edited

and then run:

This code will first find the Loot Window which popups
And then search for loot you select in the values at start!

Code:

AutoIt Version: 3.2.4.9
Author: Lorefiendel

Script Function:
Function to implent into your LOTR Bot.

; Script Start - Add your code below here

; Activate Game Window
$winwake=WinExists ( "The Lord of the Rings Onlineâ„¢: Shadows of Angmarâ„¢" )
if $winwake=0 then
Exit
endif
if $winwake=1 then
WinActivate ( "The Lord of the Rings Onlineâ„¢: Shadows of Angmarâ„¢" )
endif

;What To Loot Options Maybe Retrive These From A Ini file on each function run?
$hpot=1
$mpot=1
$craft=1
$yellow=1
$purple=1
$blue=1

;Find Loot Window
$coord = PixelSearch( 0, 137, 1015, 503, 0x13109D, 1 )
If Not @error Then
MouseMove ( $coord[0], $coord[1] , 10 )
$loot=1
$lx1=$coord[0]-54

Read more...

If you have searched a number of macros sites but still don't know what to choose, you can read the LotRO macro review articles.

LotRO Bot

Strategy Freak is a unique community that seeks to master LotRO and to discover all its hidden secrets, here is LotRO bot I've found from the site.

=============================================================

sleep(3000)
While 1 = 1


;keep pressing backspace until a target is aqquired
while PixelGetColor(626,121) <> 0x111095
send("{BACKSPACE}")
Sleep(random(1,2)*1000)
WEnd

;while target is aqquired
;also check to see if target is out of range by seeing if it has looped more than 100 times
$i = 0
While PixelGetColor(626,121) = 0x111095 AND $i <> 50

;use piercing cry
send(4)
Sleep(random(1,2)*300)
;use herald's strike
send(1)
Sleep(random(1,2)*300)
;use ballard of vigour
send(3)
Sleep(random(1,2)*300)

if PixelGetColor(345,79) <> 0x2CE30E Then
send(2)
Sleep(random(1,2)*1000)
EndIf

$i = $i+1
WEnd

;check to see if health is full
While PixelGetColor(381,79) <> 0x2CE30E
Sleep(random(1,2)*1000)
WEnd

Read more...

Wednesday, December 10, 2008

LotRO Bot: Auto Grinding

Hundreds of players run a LotRO bot that levels their characters overnight. Strategy Freaks is a supplier for all of them, as well as the Auto Grinding bots below.
=============================================================

What the script does?

Basically this bot rely totally on your pet doing all of the grinding, while you play a support role. I tested this on a level 5 Lore Master using the Raven. The script will

Click on the button telling your pet to go into agressive mode and therefore attack any nearby enemies, in this case I have placed the shortcut into button seven. The script "send(7)" is the telling the bot to press this button. You can easily change this to another button if you wish.


If the morale of your pet falls below a predetermined level you will cast Beacon of Hope to heal it. The script

if PixelGetColor( 439, 137) <> 0x30F310 Then
send(6)
sleep(Random(4,5)*1000)


does this. You obviously will have to configure this for your respective computer setup (my beacon of hope is in the 6 button slot).

The script will also cast sign of power on the enermy.

send(3)
sleep(Random(4,5)*1000)


Setting up I suggest standing somewhere with lot of non aggro mob which respawn quickly. For testing I stood around the Ole East Past where there are lots of Brood. Also in the Combat settings make sure you "enable skill target forwarding" and before running the script have yourself target your pet.

Read more...