• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Problem - Casting Group Panther only when it falls off.

magetheory

New member
Joined
May 3, 2020
RedCents
30¢
Version of KissAssist.mac?
12.002
When did your problem start?
When I moved it to DPS instead of BUFFS.
Character Role?
  1. Assist
What class is having this issue?
  1. Shaman
How often does this issue occur?
Always
So I want panther to be able to cast in combat, but if I leave it in buffs it refuses to cast while someone has aggro. I decided to try putting it in dps instead and it works, it just decides to cast panther every new mob even if there's still duration left on the initial cast. So I decided to try a condition where it should only cast if Talisman of the Panther isn't up.

INI:
[CODE]DPS2=Talisman of the Panther|99|Cond1

Cond1=${Me.Buff[Talisman of the Panther].ID} == NULL

This is the DPS entry and the condition I made, but it doesn't seem to be checking to see if panther is up.

I'm new to trying kissassist and making my own conditions, so any feedback would be appreciated on how to make this work.

Thanks
 
Cond1=!${Me.Buff[Talisman of the Panther].ID}

If there's no id the buff doesn't exist. No need for a true/false comparison. Can treat it directly as a boolean.
Thanks for the quick response, I just changed it to

INI:
DPS2=Talisman of the Panther|99|Cond1
Cond1=${Me.Buff[Talisman of the Panther].ID}

and am still having the same problem.

Do I need to add something else?
 
You left the ! out before the $ which means it's looking for it not existing. !$ is the same thing as looking to see if it equals false.

Buff Exists Check:
Code:
${Me.Buff[Talisman of the Panther].ID}

Buff Doesn't Exist Check:
Code:
!${Me.Buff[Talisman of the Panther].ID}
 
You left the ! out before the $ which means it's looking for it not existing. !$ is the same thing as looking to see if it equals false.

Buff Exists Check:
Code:
${Me.Buff[Talisman of the Panther].ID}

Buff Doesn't Exist Check:
Code:
!${Me.Buff[Talisman of the Panther].ID}
Works like a charm now.

Thanks a ton.
 
Problem - Casting Group Panther only when it falls off.

Users who are viewing this thread

Back
Top
Cart