Removing the on use trinket from a macro

I am currently using a macro that is working well, but I want to remove the on use trinket from it. It will automatically use the trinket on its own and that is not the best use for it.

Here is the macro I use:

Sequences[‘VengeanceRotting’] = {
Author=“Razielle@Turalyon”,
SpecID=581,
Talents = “1222331”,
Default=1,
MacroVersions = {
[1] = {
StepFunction = “Priority”,
KeyPress={
“/targetenemy [noharm][dead]”,
},
PreMacro={
},
“/castsequence [nochanneling] Soul Carver, Soul Carver”,
“/cast Immolation Aura”,
“/castsequence [nochanneling] Shear, Shear, Shear”,
“/cast Fracture”,
“/cast [@player] Sigil of Flame”,
“/cast Immolation Aura”,
“/cast [@player] Sigil of Flame”,
“/cast Fracture”,
PostMacro={
},
KeyRelease={
},
},
},
}

It works really well and I am grateful for it, but I would really like to make the change to not firing my trinket off on cd.

Thank you for your time.

I don’t think it cut and pasted correctly, but I am sure everyone gets the idea of it :slight_smile:

You have not set a use trinket on use, however, if you look through GS options, you will see there is a use first and second trinket switched on by default. You will need to uncheck these.

Also your lines of:
“/castsequence [nochanneling] Soul Carver, Soul Carver”,
“/castsequence [nochanneling] Shear, Shear, Shear”,

Are EXACTLY the same as /cast Soul Carver and /cast Shear
having multiple of the same spell in a castsequence is defunct because once it uses one spell it moves to the next one on that line when the line is visited again so your doing soul carver rest of the macro soul carver.

Won’t mean that you catch those skills more often.

Like this then??

Sequences['VengeanceRotting'] = {
Author="Razielle@Turalyon",
  SpecID=581,
  Talents = "1222331",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast Soul Carver",
        "/cast Immolation Aura",
        "/cast Shear",
        "/cast Fracture",
        "/cast [@player] Sigil of Flame",
        "/cast Immolation Aura",        
        "/cast [@player] Sigil of Flame",
        "/cast Fracture",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

…and thank you for the trinket information! You really helped me there!

Yup that’s fine :slight_smile:

I will edit your posts so they are code boxed.

Basically to do it hit code in the text box, paste and hit code again and that will place a code box.

Pasting without this changes the quotations and breaks the macro… causes pages and pages of people trying to fix it and make it worse

Ok I am sorry about that. These are my first posts here. I don’t want to confuse anyone.
I appreciate you helping me and fixing that.
Oh, one more question if I may. I have noticed some have “/cast [nochanneling] Blade Dance”, for example.
Is the [nochanneling] something I should have on my macro?

Vengeance has nothing which channels so it’s fine.
Havoc has Eye Beam so using the nochanneling conditional means that you can use it without other skills interrupting it so in your macro… no

You have been extremely helpful.
Thank you so very much, Chernovog.

Ok, Last question. If I wanted to use Sigil of Chains instead of Concentrated Sigils for my 106 talent, based on the above macro I could just use this…

Sequences['Vengeance_no_Sigil'] = {
Author="Razielle@Turalyon",
  SpecID=581,
  Talents = "1222331",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast Soul Carver",
        "/cast Immolation Aura",
        "/cast Shear",
        "/cast Fracture",
        "/cast Immolation Aura",        
        "/cast Fracture",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

I hit code and code again! Not sure what happened there!

Can you please fix the code to show up correctly? I have tried to edit it numerous times without the desired effect.

You have the correct code at the beginning of the macro now you just need to add it at the end of the macro and it will complete the box for you

In the macro editor you can explicitly force a macro NOT to use a trinket irrespective of your GSE options by Trinket1=false and Trinket2=false in the area with KeyPress.

This is shown in the GUI as an empty box.

Cymiric, I just can’t seem to get it to show correctly on the website. When I hit “edit” and I click the screen, the “code” button disappears!

I am sorry for the trouble, especially since you have all been so helpful.

I actually got it to show up correctly!!!

I have no idea what I did differently from before, but at least the code is corrected now!