• 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

Question - Project Illusion

Set a buff for spell the spell "Project Illusion: Disabled" , it will only cast if it exists/is ready.... which it only is if it's set to disabled. the AA id is the same for either enabled/disabled but you get NULL for ${Me.AltAbility[Project Illusion: Disabled]} if you have it enabled
 
My goal is to provide a normally self only buff "an Illusion" to the list of buffs and it cast on the group as if it were any other Quickness buff. Providing an argument like my example will not work even if Project Illusion is enabled.

BuffsOn=1
BuffsSize=1
Buffs1=Illusion: Fire Elemental|CLR|ROG|SK|ENC|BRD

Project Illusion will stay enabled or disabled until it is manually changed.
 
as in kiss won't cast the illusion because it's self only?

I dont use kiss on my enc, but a quick test it casts it' no worries with proper flags.

I think all you're missing is |CLASS..

so Buffs1=Illusion: Fire Elemental|CLASS|CLR|ROG|SK|ENC|BRD
 
Last edited:
What version?
I literally just fired up an empty ini and added the illusion to it and it cast it for |MA tag

I used version 11. 001
 
Same version.
You are right ! |MA and |ME work.

I can not get the following to work:

|CLASS|SK|CLR|BRD|ROG|ENC
|Melee|Caster

I was missing the |CLASS| to begin with. Thank you.
 
it is from the main kiss article, is every chance is was depreciated with the kiss11 overhaul. I am not sure sorry
 
Buffs1=command:/cast 2|Dual|Illusion: Fire Elemental|CLASS|sk,rog,clr,enc,brd

This will target nothing and spam the second spell gem.

Buffs1=Illusion: Fire Elemental|CLASS|SK,ROG,CLR,ENC,BRD

Does nothing

Buffs1=Illusion: Fire Elemental|MELEE|CASTER

This will cast on me only - Only if I target myself

Buffs1=Illusion: Fire Elemental|CLASS|MELEE|CASTER

Does nothing

Buffs1=Illusion: Fire Elemental|MA

This will target MA and cast- This works but I want it to cast on all of my characters


Buffs1=Illusion: Fire Elemental|MELEE

Does Nothing

Buffs1=Illusion: Fire Elemental|CASTER

This will cast on me only - Only if I target myself
 
Last edited:
Has anyone figure this out yet? been trying to get this to cast on my zerkers, I can only get the 2 to work
Illusion: Iksar|ME
Illusion: Iksar|MA


if I do
Illusion: Iksar|MELEE
Illusion: Iksar|CLASS|SK|BER|ENC

nothing works but sometimes it will cast on chanter only. I've looked at the kiss info page and done it exactly as it says. also tried all the option in other posts above. it just wont cast on my berserkers.
any help on this would be great thanks in advance
 
Old bump but I ran into the same issue.

Because it's by default a self-buff, kiss won't cast on others (with the exception of the MA tag, I guess)

Here's a solution to cast the halfling illusion on someone every 60 minutes, it's not pretty but it works:

Buffs1=command:/multiline ; /mqp on; /stopcast; /if (!${Defined[halfee]}) /declare halfee timer global; /target pc toonname; /timed 20 /casting 0594 gem8; /varset halfee 36000; /timed 200 /mqp off|Cond6

Cond6=(${halfee} == NULL)

Replace toonname with your character's name, and 0594 with the spell id you prefer. If you want to cast on more characters, adjust the /timed accordingly. Here's one for most everyone in my group:

Buffs9=command:/multiline ; /mqp on; /stopcast ; /if (!${Defined[halfee]}) /declare halfee timer global; /target pc toon1; /timed 20 /casting 0594 gem8; /timed 150 /target pc toon2; /timed 160 /casting 0594 gem8; /timed 250 /target pc toon3; /timed 260 /casting 0594 gem8; /timed 350 /target pc toon4; /timed 360 /casting 0594 gem8; /varset halfee 36000; /timed 500 /mqp off|Cond6
 
Last edited by a moderator:
Question - Project Illusion

Users who are viewing this thread

Back
Top
Cart