additional Note:
When swapping Class is enabeled, it takes about 21 minutes (almost twice as much than without) to accomplish all 10 Dailys with this waypoint.
Question for you on this daily script. How is the bot able to click on the quest item 5 times in a row without waiting? Playing that part manually requires me to wait for some time for it to "respawn" but the bot is able to do it 5 times in a row. Does this method work with other quests or is it a bug? I tried it with a quest where you pick grass but it didn't work because the grass was gone.
function checkToDoMore()
yrest(500)
if questsDone() and questtype == "daily" then
if usereset == true and maxPlayerLevel > player.Level then
inventory:update();
player:update();
if inventory:itemTotalCount(202434) > 0 then --daily reset tickets
inventory:useItem(202434);
yrest(500)
__WPL:setWaypointIndex(__WPL:findWaypointTag("getquest"))
else
__WPL:setWaypointIndex(__WPL:findWaypointTag("allDone"))
end
elseif publicafterdaily == true then
questtype = "public"
__WPL:setWaypointIndex(__WPL:findWaypointTag("getquest"))
else
__WPL:setWaypointIndex(__WPL:findWaypointTag("allDone"))
end
elseif questsDone() and questtype == "public" then
__WPL:setWaypointIndex(__WPL:findWaypointTag("getquest"))
end
end
tried the 0.2 Version for lvl my second class.
Only Problem is that the char is not walking back to npc to change class to high class again and then accept the quest again.