MMOMinion
[Raid][Normal]Alexander 11 Heart of Creator - 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: Sense Profiles (https://www.mmominion.com/forumdisplay.php?fid=182)
+---- Thread: [Raid][Normal]Alexander 11 Heart of Creator (/showthread.php?tid=17421)

Pages: 1 2


[Raid][Normal]Alexander 11 Heart of Creator - foxhound - 10-19-2016

Name : Alexander 11 Heart of Creator
Difficulty : Normal

Last Updated: 19/10/2016

Profile Setup : put the a11n.lua file in FFXIVMinion\LuaMods\Sense\profiles folder



Read about Sense here : http://www.mmominion.com/thread-17263.html
More about Sense API : http://wiki.mmominion.com/doku.php?id=se...sample_api


almost everything in A11 normal, except prey target (very soon)

you can edit the file and change /echo to /party if needed, very useful

known issue
-in 2nd phase it will say "Spread" when a player have "Prey" , this is due to using the same action id by boss, if you're a healer watch this
-it will say "kill add" when shield is up, while its TRUE but some players want "kill shield" instead


i created this profile as healer, it will be sufficient for any role but plz tell for any role-specific stuff you think is needed

Open for suggestion / request


to-do list (if requested/needed)
-auto dodge for Optical Sight aoe (3rd kind)
-auto ride the ark
-auto target tank buster target (if healer)
-auto target Prey'd target (if healer)
-laser warning
-photon


RE: [Raid][Normal]Alexander 11 Heart of Creator - ogogo - 10-19-2016

i will try thx


RE: [Raid][Normal]Alexander 11 Heart of Creator - Zanci - 10-19-2016

Hi,
if i don't need a Text for shout or something like that, then i use " -- " before that line?

Greetings


RE: [Raid][Normal]Alexander 11 Heart of Creator - foxhound - 10-19-2016

(10-19-2016, 04:04 PM)Zanci Wrote:  Hi,
if i don't need a Text for shout or something like that, then i use " -- " before that line?

Greetings

yes put -- before the line

but dont do it in the same line with { or } mark to be safe, unless you know what you're doing


RE: [Raid][Normal]Alexander 11 Heart of Creator - Zanci - 10-19-2016

Code:
triggers = {
        --[[{     detect_chat = "FoxhoundTest",
            sound = "Profile Alex 10",
            helper_image = "Profile Alex 10",
            --runcode = "SendTextCommand('/echo Profile Alex 10.')"
        },]]
        {     detect_action = 6832,
            sound = "Stay away from buttons",
            helper_image = "Stay away from buttons",
            --runcode = "SendTextCommand('/echo Stay away from buttons.')",
        },

So far not tried if it works.


RE: [Raid][Normal]Alexander 11 Heart of Creator - foxhound - 10-19-2016

(10-19-2016, 05:46 PM)Zanci Wrote:  
Code:
triggers = {
        --[[{     detect_chat = "FoxhoundTest",
            sound = "Profile Alex 10",
            helper_image = "Profile Alex 10",
            --runcode = "SendTextCommand('/echo Profile Alex 10.')"
        },]]
        {     detect_action = 6832,
            sound = "Stay away from buttons",
            helper_image = "Stay away from buttons",
            --runcode = "SendTextCommand('/echo Stay away from buttons.')",
        },

So far not tried if it works.

you want to cancel the whole "stay away from buttons" thing ? sound and image
you should add -- before each line
Code:
{    
      --detect_action = 6832,
      --sound = "Stay away from buttons",
      --helper_image = "Stay away from buttons",
      --runcode = "SendTextCommand('/echo Stay away from buttons.')",
},
or add --[[ code ]] to the whole thing
example
Code:
--[[{
     detect_action = 6832,
     sound = "Stay away from buttons",
     helper_image = "Stay away from buttons",
     runcode = "SendTextCommand('/echo Stay away from buttons.')",
},]]



RE: [Raid][Normal]Alexander 11 Heart of Creator - Zanci - 10-19-2016

I only like to disable SendTextCommand.


RE: [Raid][Normal]Alexander 11 Heart of Creator - foxhound - 10-19-2016

(10-19-2016, 05:56 PM)Zanci Wrote:  I only like to disable SendTextCommand.

then the code you mention should work, try reload lua/reload bot


RE: [Raid][Normal]Alexander 11 Heart of Creator - Ace - 10-19-2016

You can also just delete the runcode piece entirely.


RE: [Raid][Normal]Alexander 11 Heart of Creator - MisterSerene - 10-20-2016

Thx for the profiles Foxhound!!!

How (or with what) do you get the detect_action values?