MMOMinion

Full Version: SENSE O4s Trigger need HELP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
i am trying atm to write a sense profile for o4s and trigger stuff which dosent seems to work, but i have no clue why :-(
would be nice when anyone could give me a bit support in that and tell me what i doing wrong :-/

for inner and out
Code:
{   detect_action = 9292, -- Inner Laser
            detect_delay = 0,
            {   detect_function = "return HasBuffs(Player,1382)", -- Beyond Death
                detect_delay = 0,
                sound = "Inside",
            },
            {   detect_function = "return MissingBuff(Player,1382)", -- no Beyond Death
                detect_delay = 0,
                sound = "Outside",
            },
        },

for colo mechanics
Code:
{   detect_action = 9233 or 9235, -- Color Mechanic
            detect_delay = 0,
            {   detect_function = "return HasBuffs(Player,1381) and MissingBuff(Player,1382)", -- White Antilight -- no Beyond Death
            detect_delay = 0,
            sound = "purple",
            },
            {   detect_function = "return HasBuffs(Player,1381) and HasBuffs(Player,1382)", -- White Antilight -- Beyond Death
            detect_delay = 0,
            sound = "blue",
            },
            {   detect_function = "return HasBuffs(Player,1380) and MissingBuff(Player,1382)", -- Black Antilight -- no Beyond Death
            detect_delay = 0,
            sound = "blue",
            },
            {   detect_function = "return HasBuffs(Player,1380) and HasBuffs(Player,1382)", -- Black Antilight -- Beyond Death
            detect_delay = 0,
            sound = "purple",
            },
        },
nvm find the bug by my self =)