Fenworth
Member
- Joined
- Feb 20, 2014
- RedCents
- 203¢
I updated an old macro by Disasteroid and Razkle to max out your Safe Fall skill. It runs you up and down a steep hill right next to the PoK stone in Butherblock and stops when your skill is maxed. It uses MQ2Nav so you need to have the plugin loaded and updated meshes.
1. Copy macro to your Macroquest2/Macros directory
2. Run your toon to Butcherblock Mountains, easiest to use the PoK stone
3. Run the macro: /mac safefall
4. Watch your safe fall skill advance.
1. Copy macro to your Macroquest2/Macros directory
2. Run your toon to Butcherblock Mountains, easiest to use the PoK stone
3. Run the macro: /mac safefall
4. Watch your safe fall skill advance.
Code:
| safefall.mac
| Updated 2020.09.30
| Author: Originally Disasteroid & Razkle, updated by Fenworth
| This macro will run up and down a hill near the PoK book in Butcherblock Mtns until safe fall is maxed.
Sub Main
/declare i int local
/while (${Me.Skill["Safe Fall"]} < ${Me.SkillCap["Safe Fall"]}) {
|Simple, yet effective. But wait, there's more!
/nav locxyz -331.93 1916.15 191.22
/while (${Navigation.Active}) {
/delay 5
/doevents
}
|If you call now, we'll add free to your order, running down the hill!
/nav locxyz -390.96 1798.83 2.73
/while (${Navigation.Active}) {
/delay 5
/doevents
}
}
/return

