Im not sure if anyone else had problems, but I could not get my bot to mine. It would only target nodes and then do nothing. So, using actools I made a quick fix. AC Tools can be found using google.
Code: Select all
// Harvest bot Mining quick fix - Quicktime.
// This is a quickfix to bots which will not mine a node,
// but Just target them.
// Open up Xunleashed with eq2, and just leave this running in the background.
SetActiveWindow EverQuest II (mar 8 2007 10:03:05) USER OPTIMIZED: SOEBuild=xxxxx
Constants
// X = 1, to create a constant loop.
X=1
End
While $X=1
// 3 = The hotkey for the type of node you want to mine,
// IE, if you want to mine Cobalt cluster from red rock,
// Go you would have to set the hotkey bar with mining on
// to the primary bar, and make sure that it is the third key.
//
// If you want to change which key you use, change 'keys 3' to 'keys x'
//(x= key you want).
// Or if you want to change which skill you want to use, IE use foresting
// move the skill (foresting etc)
// to space three on the primary hotbar. THIS IS PRETTY STRAIGHT
//FORWARD.
Keys 3
Delay 3000
// Delay 3000 seems a pretty ok number for one node, but you might
//want to change this.
End