Page 1 of 1

demonstrate battle (taz daily) to lev secondary lev 61+

Posted: Mon Jun 24, 2013 12:37 am
by raider4ever
What this bot does is when you start at taz it will complete the daily then walk to the housemaid switch and walk back and turn in and so forth

if you want to use it then you may want to change the numbers that indicate the class your switching to

ex. RoMScript("ExchangeClass(8,4)")

change those numbers to what class you need that is warden / rouge 8,4 sorry i dont know any other classes

Re: demonstrate battle (taz daily) to lev secondary lev 61+

Posted: Mon Jun 24, 2013 1:28 am
by rock5
You could use the bot constants for the classes but they are off by 1 so you have to add 1.

Code: Select all

RoMScript("ExchangeClass("..CLASS_WARDEN+1..","..CLASS_ROGUE+1..")")
Or to make it easier for users

Code: Select all

primary = CLASS_WARDEN
secondary = CLASS_ROGUE

RoMScript("ExchangeClass("..primary+1..","..secondary+1..")")