![]() |
bug on MissingBuffs? - 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: bug on MissingBuffs? (/showthread.php?tid=12512) |
bug on MissingBuffs? - Skive - 06-29-2015 i think there is a bug with the MissingBuffs, it always return true. There is no documentation on the MissingBuffs, so i am assuming the 1st para is the player, 2nd para is the buff id and 3rd is the second left on the buff. I was using the monk assister and i realise it always show Demolish. so i did a check using either d( MissingBuffs(Player,"246",50)) and d( MissingBuffs(Player,"246",1)) it always return true, even when the buff has 20+ sec. The funny thing is, it seem to be working with bard windbite and vem strike but not Monk Demolish.. Ah now i know why, is a bug on ace Assister, he written Player instead of target.... Well really need documentation on these kind of function u guys provide. really stupid posting this kind post zzz RE: bug on MissingBuffs? - CuteDragon - 06-29-2015 https://en.wikipedia.org/wiki/No_such_thing_as_a_stupid_question Keep that in mind ;) Esp. with no documentation. RE: bug on MissingBuffs? - Ace - 06-29-2015 MissingBuffs is a lua function that we created, so the documentation is already pre-existing so to speak, as are most of our functions really. The API handles the basics, the lua API turns them into most of what you see being used. In ffxiv_helpers.lua (currently line 1212): Code: function HasBuffs(entity, buffIDs, dura, ownerid) |