GS-E Ret Example Macro

HI Everyone,

This is my simple levelling wack-a-mole Ret macro. Its not efficient nor is it optimised for DPS. It is however an example of what a GS-E macro looks like for Legion with all the bells and whistles.

Sequences['Ret'] = {
specID = 70,
author = "Draik",
helpTxt = "Retribution Single Target macro - 3132233.",
icon = "INV_Sword_2H_AshbringerCorrupt",
StepFunction = GSStaticPriority,	
PreMacro = [[
/targetenemy [noharm][dead]    
]],  
'/cast Judgment',  
'/cast Crusader Strike',  
'/cast Blade of Justice',  
'/cast [combat]!Crusade',  
'/cast !Wake of Ashes',  
"/cast Templar's Verdict",   
PostMacro = [[
/use [combat]13
/use [combat]14
]],
}

This uses the Corrupted Ashbringer Icon for the macro and the GSStaticPriority line saves typing out the following Step Function

StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],

and how it works? any feedbacks?

it seems to do a pretty reasonable job (i.e. things seem to die reasonably fast), I made an equivalent AoE version by replacing Templar’s Verdict with Divine Storm which also seems ok.

The next step is to try and get the finisher to only go off after the target has been judged (as this will add c40% damage to the finisher). Maybe a cast sequence to tie judgement and the finisher together will help.

Yeah this was just for me to be able to walk around and hit things with. Its adequate but no where near optimal.

Here are mine from the pre-patch.

Single Target:

Sequences['ST_PRet'] = {
author='Sceptre',
specID=70,
helpTxt = 'Talents: 1111312',
icon='Spell_Paladin_TemplarsVerdict',
PreMacro=[[
]],
"/cast Blade of Justice",
"/cast [combat]!Crusade",
"/cast Crusader Strike",
"/cast Judgment",
"/cast Templar's Verdict",
PostMacro=[[
/use [combat]13
/use [combat]14
]],
}

AOE:

Sequences['AoE_PRet'] = {
author='Sceptre',
specID=70,
helpTxt = 'Talents: 1111312',
icon='Ability_Paladin_DivineStorm',
PreMacro=[[
]],
"/cast Blade of Justice",
"/cast [combat]!Crusade",
"/cast Crusader Strike",
"/cast Judgment",
"/cast Divine Storm",
PostMacro=[[
/use [combat]13
/use [combat]14
]],
}

anyone can help me ? i cant use all macro… i tried everythng but… not working…

If you are not useing an English Client you will need to translate all the spell names to their local equivalents. I am working on a translater but its a ton of workl.

i am using english client… but not beta…

Hello Everyone,
First I would like to thank Draik for all the hard work on the macros to get us all started on GS-E. I used Draik’s Ret macros as an example and made these 2 for Ret.

Sequences['DB_Ret2'] = {
specID = 70,
author = "Ken",
helpTxt = "Retribution Single Target macro - 1112111.",
icon = "INV_Sword_2H_AshbringerCorrupt",
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast Crusader Strike',
'/cast Blade of Wrath',
'/cast Judgment',
"/cast Templar's Verdict",
"/cast [combat]!Justicar's Vengeance",
'/cast [combat]!Avenging Wrath',
'/cast !Wake of Ashes',
PostMacro = [[
]],
}

AOE:

Sequences['DB_RetAoE2'] = {
specID = 70,
author = "Ken",
helpTxt = "Retribution AoE macro - 1112111.",
icon = "Ability_Paladin_DivineStorm",
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast Crusader Strike',
'/cast Blade of Wrath',
'/cast Judgment',
"/cast Divine Storm",
"/cast [combat]!Justicar's Vengeance",
'/cast [combat]!Avenging Wrath',
'/cast !Wake of Ashes',
PostMacro = [[
]],
}

Thank you again Draik for the hard work and try these out and have fun

[quote quote=29963]anyone can help me ? i cant use all macro… i tried everythng but… not working…

[/quote]
All this comes down to logic. We need to systematically work through what you are doing and what you are missing. Can you tell me what you have tried, the version of GS-E you are using and any custom changes you have made?