Blood DK Lvling Macro

Hi guys, I am looking for a GS macro that does not use [Outbreak]. Can anyone please help? Once I reach 81 and get outbreak. I checked the current macros but they all seem to use outbreak unless its just me that is doing something stupid.

Thanks

It’s Fairly Simple to modify a L100 macro to work while levelling by commenting out the spells you cant yet use
For example I grabbed the one posted by Beef Wellington and Commented out Outbreak and Soul reaper, as these spells aren’t available until later

Sequences['BloodDKT'] = {
StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Bone Shield
]],
	-- '/castsequence reset=combat Outbreak,Blood Boil',
	'/cast [combat] Blood Boil',
	'/cast Death Strike',
	-- '/cast Soul Reaper',
	'/cast Death Coil',
	'/cast Death Strike',
	'/cast Death Strike',
	'/cast Plague Leech',
	'/cast Death Strike',
	'/cast Death Coil',
PostMacro = [[
/startattack
]],
}

Sequences['BloodDKTAoe'] = {
StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Bone Shield
]],
	-- '/castsequence reset=target Outbreak,Blood Boil',
	'/cast [combat] Blood Boil',
	'/cast Death Strike',
	'/cast Death Coil',
	'/cast Blood Boil',
	'/cast Death Strike',
PostMacro = [[
/startattack
]],
}