- Joined
- Feb 9, 2017
- RedCents
- 1,387¢
Nice addon. You could do a check for the campfire. Another check for aggro.Made some changes others might like.
[CODE title="Avoid getting stuck on bar."]
-- Change to loc near Gubli instead of spawn. Comment out spawn line with --
--mq.cmd('/nav spawn gubli')
mq.cmd('/squelch /nav locyxz -437 -230 -12')
-- Add step to side before move to bar.
-- Insert above the nav loc listed.
mq.cmd('/nav locyxz -435 -234 -12')
moving()
mq.delay(1500)
mq.cmd('/squelch /nav locyxz -432 -257 -12')
-- Replace spawn gubli with loc. Comment out spawn line with --
--mq.cmd('/nav spawn gubli')
mq.cmd('/squelch /nav locyxz -437 -230 -12')
--Replace spawn gubli with loc. Comment out spawn line with --
--mq.cmd('/nav spawn gubli')
mq.cmd('/squelch /nav locyxz -437 -230 -12')
[/CODE]
[CODE title="Remove getting stuck behind tiger kit table"]
-- Replace spawn with loc. Updates at loc. Comment out spawn line with --
--mq.cmd('/nav spawn poker')
mq.cmd('/nav locyxz -125 539 -13')
moving()
mq.delay(1500)
[/CODE]
[CODE title="Cut 5 mins off runtime"]-- Make sure your fellowship campfire is set up in PoK near Qeynos stone.
-- Inserts directly after spawn poker change listed above, and before the /travelto qeynos2 line.
-- Port to Campfire in PoK to save time.
mq.cmd('/makemevisible')
mq.cmd('/casting "Fellowship Registration Insignia" Item -maxtries|2')
zoning(202)
mq.delay(1500)
mq.cmd('/travelto qeynos2')
[/CODE]
Code:
if mq.TLO.Me.Fellowship.Campfire() and mq.TLO.FindItem("Fellowship Registration Insignia").TimerReady() == 0 and not mq.TLO.Me.Hovering() then
mq.cmd('/makemevisible')
mq.cmd('/casting "Fellowship Registration Insignia" Item -maxtries|2')




That's great! I didn't know about putting 'ACTIVE' in quotes instead of true/false. Sosimple...