Perma Sprint while gathering - Printable Version +- MMOMinion (https://www.mmominion.com) +-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87) +--- Forum: [DOWNLOADS] Addons, Lua Modules, Navigation Meshes.. (https://www.mmominion.com/forumdisplay.php?fid=90) +---- Forum: I Need Help with LUA coding! (https://www.mmominion.com/forumdisplay.php?fid=104) +---- Thread: Perma Sprint while gathering (/showthread.php?tid=20187) |
Perma Sprint while gathering - punkerdunkerz - 12-22-2017 Hello all, I am wondering if there is a command to have my bot use perma sprint at certain areas while gathering. I think it would be something close to [Use Perma Sprint] = True For example, I want to use sprint at #27 but not at #28 [27] = { --Water 2 ["type"] = "mining"; ["timeout"] = 2500; ["radius"] = 100; ["minlevel"] = 1; ["maxlevel"] = 70; ["item1"] = "Water Shard"; ["mapid"] = 140; ["pos"] = { ["x"] = 134.397; ["y"] = 50.381; ["z"] = -204.792; }; ["condition"] = { ["ItemCount(7) < 972"] = true; }; ["complete"] = { ["ItemCount(7) >= 972"] = true; }; }; [28] = { --Water 3 ["type"] = "mining"; ["timeout"] = 2500; ["radius"] = 100; ["minlevel"] = 1; ["maxlevel"] = 70; ["item1"] = "Water Shard"; ["mapid"] = 140; ["pos"] = { ["x"] = 292.831; ["y"] = 63.072; ["z"] = -250.353; }; ["condition"] = { ["ItemCount(7) < 1467"] = true; }; ["complete"] = { ["ItemCount(7) >= 1467"] = true; }; }; |