wiki API not complete - 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: wiki API not complete (/showthread.php?tid=10698) |
wiki API not complete - dark_wolf - 02-06-2015 it looks like the api documentattion in the wiki is not complete. So i found in the quest lua a Inventory:BuyShopItem but this API call is not mentioned in the Wiki at least I did not find it. So is there a way to get the actual supported API? Thanks RE: wiki API not complete - Ace - 02-06-2015 Most things are in the Dev module. I started updating the wiki yesterday, but obviously not complete yet. RE: wiki API not complete - Kyle - 02-14-2015 Any idea if eorzea time is inclued in API , Ace ? RE: wiki API not complete - drewlt - 02-15-2015 local et = EorzeaTime() gEorzeaTime = tostring(et.hour)..":"..(et.minute < 10 and "0" or "")..tostring(et.minute) Taken out of ffxiv.lua :) RE: wiki API not complete - Kyle - 02-15-2015 thx dude |