omgbbqpwnage
nice 1 ty
omgbbqpwnage
nice 1 ty
how do you update zolo fighter without having to do all the setup again? thank you in advance![]()
Copy zolofighter.exe and script.js from the new zip file and replace the old ones. Remember your old zolofighter.exe is renamed. You have to rename the new one.
+Rep for hard work![]()
wowpanda, i keep getting this error when i ask for it to start
1:6:31 water not defined in any defact tags 112
1:6:31 after main water not defined in any defact tags 112
could u explain the solution? i haven't come across this problem with the previous ones, just 8.4.3
Thanks.. I really love this bot![]()
Great release and a good bot for a free one!
very nice bot
Someone please help me with this
http://www.zolohouse.com/wow/wowFigh...ermagetut.html
in that link, you see that the first picture on the page has 4 tabs, labeled: Main, Waypoint, Fising, and Reg.
On mine, those aren't there, they just get cut off.
Is that normal, what do I do?
The tutorial is old, just learn to click around and you'll find everything.
yah after deleting all the explanations of each action on the script, i easily found out my own mistake while i was editing. Turned out i was lacking a space between "combatseq=" and "act:"Skelliton, that means action water which is been used is not been defined.
You can either add that action "water" yourself, or use the pre-made binding scripts instead of your own.
Thanks for the help though, very appreciated.
I hate it when its that simple :S
Ok...
I've got an incredibly n00bish question here! Now, I've looked at the zolofighter website and scanned this thread; I just couldn't find an answer.
My question... (drumroll please)... Is zolofighter a waypoint bot only or can a botted toon be added to a party and assist others (ex: a healbot)?
Thanks!
@Krushiev, there was a healbot written by pillowpants, but I am not sure its current status. It should be easy to write a simple healbot via script, the idea is, set the bot to defend mode (so it won't follow any waypoint), and make a profile simlar to avbot, in that, it select a target, and in a loop, follows the target, heal the target and invoke combat to fend off attacks.
i.e
var healTarget = me.target;
while (wowjs.wowBotRun) {
me.wowRunTo(healTarget.x, healTarget.y);
var pct = healTarget.health/healTarget.maxhealth;
if (pct < 0.5) wowjs.wowDoFightAction("heal");
me.wowOneFight();
me.wowSleep(500);
}
make sure to define the heal action in your bindings file.