GS 'Simple' Combat Single and Combat AOE Macro

Forgot /cancelaura Blade Flurry on single target macro

Sequences[“Rogueboss”] = {
PreMacro = [[
/cancelaura Blade Flurry
/targetenemy [noharm][dead]
/cast [nocombat,nostealth] stealth
/stopattack [stealth]
/startattack [nostealth]
/cast [stealth] ambush
/cast [stealth] Cheap shot
]],
‘/castsequence reset=target Revealing Strike,Slice and Dice,null’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Eviscerate’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/castsequence reset=35 Revealing Strike,Slice and Dice’,
PostMacro = [[
/cast [combat] Adrenaline Rush
/use [combat]14
/cast Blood Fury
/use Kafa Press
/startattack
]],
}

Unfortunately, this doesn’t work. I create the macro in game but the macro field doesn’t populate. It’s an empty macro. Doing the same method (copy text into sequencer file, save file, launch game, create macro with proper name) works with other macros on this site.

Try again! It would be great if this worked! :slight_smile:

hi… that macro work but u need put that symbol ’ and delete all others (´ and `)–» dont work :smiley:

Sequences[‘Rogueboss’] = {
PreMacro = [[
/cancelaura Rajada de Lâminas
/targetenemy [noharm][dead]
/cast [nocombat,nostealth] Furtividade
/stopattack [stealth]
/startattack [nostealth]
/cast [stealth] Emboscar
/cast [stealth] Golpe Baixo
]],
‘/castsequence reset=target Golpe Revelador,Retalhar,null’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/cast Eviscerar’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/cast Golpe Sinistro’,
‘/castsequence reset=35 Golpe Revelador,Retalhar’,
PostMacro = [[
/cast [combat] Adrenalina
/use [combat]14
/cast Fúria Sangrenta
/use Kafa Press
/startattack
]],
}

This is my i just change all symbols and work for me and spam TAB for all lanes have symbols

It didn’t work for me. I’m not sure exactly what symbol you are talking about - are you talking about the tilde “`”?

I copied your code and changed the text to english. It didn’t work.

Got it. There are two problems.

  1. This symbol was wrong: ’
  2. Luis meant to say you must tab over all of the /cast entries.

Here. This works for me:

Sequences[‘Rogueboss’] = {
PreMacro = [[
/cancelaura Blade Flurry
/targetenemy [noharm][dead]
/cast [nocombat,nostealth] stealth
/stopattack [stealth]
/startattack [nostealth]
/cast [stealth] ambush
/cast [stealth] Cheap shot
]],
‘/castsequence reset=target Revealing Strike,Slice and Dice,null’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Eviscerate’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/cast Sinister Strike’,
‘/castsequence reset=35 Revealing Strike,Slice and Dice’,
PostMacro = [[
/cast [combat] Adrenaline Rush
/use [combat]14
/cast Blood Fury
/use Kafa Press
/startattack
]],
}

[quote quote=22225]Got it. There are two problems.

  1. This symbol was wrong: ‘ 2. Luis meant to say you must tab over all of the /cast entries.
    Here. This works for me:
    Sequences[‘Rogueboss’] = { PreMacro = [[ /cancelaura Blade Flurry /targetenemy [noharm][dead] /cast [nocombat,nostealth] stealth /stopattack [stealth] /startattack [nostealth] /cast [stealth] ambush /cast [stealth] Cheap shot ]], ‘/castsequence reset=target Revealing Strike,Slice and Dice,null’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/cast Eviscerate’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/cast Sinister Strike’, ‘/castsequence reset=35 Revealing Strike,Slice and Dice’, PostMacro = [[ /cast [combat] Adrenaline Rush /use [combat]14 /cast Blood Fury /use Kafa Press /startattack ]], }
    [/quote]

Posts here don’t keep formatting. The problem is with the tabbing. In Notepad++, make sure the entries are colored correctly and the “’” is correctly marked.

working perfectly for me, make proving ground silver like a piece of cake, thanks

Perhaps I’m pulling up a old tread, but… I guess people still don’t read how to post macro’s on this site.

When you are typing in this box, were i type this. Above you see a white bar with multiple buttons with words.
The last two (2) buttons are important.
When you post a macro sequence,
You first hit the code-button, press enter.
copy & paste or write your sequence
When you are ready with the macro, you hit the close tags button, press enter.
Now you can type the rest of your comment or click submit to post your reply or tread.

Examples:
Without code box (black box):
Sequences[“Rogue-CRRec”] =
“/targetenemy [dead]”,
or
‘/targetenemy [dead]’,

With code box:


Sequences["Rogue-CRRec"] = {
"/targetenemy [dead]",
or
'/targetenemy [dead]',

This is why all the sequences which are not posted in a black box don’t work.