Spruce Logs - 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: Gather Profiles (https://www.mmominion.com/forumdisplay.php?fid=179) +---- Thread: Spruce Logs (/showthread.php?tid=16711) |
Spruce Logs - RedXvi - 06-22-2016 Can any one help me make a .LUA for gathering Spruce logs i have tried a failed so many times Thanks RE: Spruce Logs - kidz14 - 06-22-2016 (06-22-2016, 06:58 AM)RedXvi Wrote: Can any one help me make a .LUA for gathering Spruce logs i have tried a failed so many times Well first of all you start by gather all the information on spruce logs, from what i can see it spawns once an erozean day @ 9am in Coerthas Central Highlands @ Providence Point in slot 6, so making a profile for just spruce logs would be kind of a waist. But here we go, start by going to where the node spawns, the open the teleporter under Lua Modules in the game, this modual will give you the map id and your current x,y,z,h position, so for this case i get a map id of 155, and my x,y,z,h is 397.23 | 307.32 | -359.32 | 2.75, now we can make the gathering profile. All gathering profiles start of like this... Code: local obj1 = { Now lets get our task 1 setup for spruce logs.... Code: local obj1 = { the x,y,z,h positions are correct now thx to sebbs, you should be able to use all the info above to build whatever you need now. RE: Spruce Logs - RedXvi - 06-22-2016 Thanks for your help RE: Spruce Logs - sebbs - 06-22-2016 Code: [2053] = { RE: Spruce Logs - kidz14 - 06-22-2016 There ya go sebbs gave you the x,y,z,h position from his profile, and you can use all my info to make whatever you need now. RE: Spruce Logs - RedXvi - 06-25-2016 Thanks for all your help |