Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Is there a way to save loc's as you go to a file?
Type a comand, and mq save x, y loc in a pathfile?
And the pathfile end up something like:
xloc, yloc
xloc1, yloc1
xloc2, yloc2
... ... . .
Cheers
/plugin mq2advpath load
/record <Name>
/play <Name>
/mac saveloc
| Saveloc.mac v 1 by Maskoi 3/15/2015
Sub Main
/declare i int outer
/for i 1 to 100
/if (!${Ini[Locations.ini,MyLocations,Loc${i}].Length}) {
/ini "Locations.ini" "MyLocations" "Loc${i}" "${Me.Y},${Me.X},${Me.Z}"
/echo Location saved as Loc${i}=${Me.Y},${Me.X},${Me.Z} in Locations.ini files
/end
}
/next i
/return
[MyLocations]
Loc1=373.29,149.72,0.19
Loc2=395.87,135.75,0.19
Loc3=400.87,130.25,0.19
| Saveloc.mac v 1 by Maskoi 3/15/2015
| NavSavelaoc.mac modified from above for use with MQ2Navigation by Randyleo
Sub Main
/declare i int outer
/for i 1 to 100
/if (!${Ini[NavLocations.ini,MyLocations,Loc${i}].Length}) {
/ini "NavLocations.ini" "MyLocations" "Loc${i}" "${Me.X} ${Me.Y} ${Me.Z}"
/echo NavLocation saved as Loc${i}=${Me.X} ${Me.Y} ${Me.Z} in NavLocations.ini files
/end
}
/next i
/return
Thank you Maskoi... I am trying to learn how to interact with an .ini file and this is a clean example...I modified this a little bit to use with MQ2Navigation. It saves the locs in a separate file to avoid confusion.
Rich (BB code):| Saveloc.mac v 1 by Maskoi 3/15/2015 | NavSavelaoc.mac modified from above for use with MQ2Navigation by Randyleo Sub Main /declare i int outer /for i 1 to 100 /if (!${Ini[NavLocations.ini,MyLocations,Loc${i}].Length}) { /ini "NavLocations.ini" "MyLocations" "Loc${i}" "${Me.X} ${Me.Y} ${Me.Z}" /echo NavLocation saved as Loc${i}=${Me.X} ${Me.Y} ${Me.Z} in NavLocations.ini files /end } /next i /return
