Thought I'd share the waypoint I made for this daily. I pretty much only do this quest for alts I don't give a crap about or when I'm in a hurry, since butterfly daily is worth way more xp.
Waypoint can be started at Heffner Snoop, Jinners' Camp, or the quest giver (Fiona Andus)
Script will prompt you for options of what to do after completion, then go.
Works well enough to pick both sides of the road, obviously going off of whatever's closest.
This area supports only up to 2-3 people at a time before things get too competitive, so be respectful of others
Feedback appreciated!
v1.1 Changelog:
Fixed a waypoint where it was running into a blockade at the edge of Jinners Camp (never make a wp file with graphics on Low...)
Fixed the code for Transport: Heffner Camp spell (will properly cast if available, or print a message if on cooldown)
Add options to run back to Jinners Camp instead of only being able to teleport away
Add option to connect minigames on to the end of this, starting with "mgsurv" which is what I've renamed rock5's survival game waypoint.
Edit waypoint file and change "survivalwpfile" at the top of the onLoad section to something else if you have it named ferently.
Minigame Connect option only works if you chose to run back and take snoop to silverspring at the end.
Try RoMScript('CastSpellByName("Transport: Heffner Camp")'). That worked for me. If it doesn't for you, then maybe try sendMacro instead of RoMScript. Good Luck.
local dqCount = RoMScript("Daily_count()");
if 10 > dqCount then
-- do daily quest
else
inventory:update()
if inventory:itemTotalCount(202434) > 0 then
inventory:useItem(202434)
-- do daily quest
else
error("Dailies completed")
end
end
Would have to adapt it for the script you want to use it in but this should at least give you an idea.