Feral PTR Macro "Testing"

Hello All

Im trying to make a st and AoE Macro…

So i would love to get some feedback, to make the macros even better…

Talent’s: 2-2-3-1-1-2-3

Macros:

Sequences['Feral-ST'] = {
specID = 103,
author = "Jimmy",
helpTxt = "2231123",
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]
/castsequence [@player,nostance:2] Cat Form(Shapeshift)
/cast [nostealth,nocombat] Prowl
/stopattack [stealth]
]],
'/castsequence [combat,nostealth] Rake,Shred,Shred,Rake,Shred,Rip',
'/castsequence [combat,nostealth] Shred,Rake,Shred,Shred,Rake,Ferocious Bite',
PostMacro = [[
/startattack
/cast Tiger's Fury
/use [combat]13
/use [combat]14
]],
}

Sequences['Feral-AoE'] = {
specID = 103,
author = "Jimmy",
helpTxt = "2231123",
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]
/castsequence [@player,nostance:2] Cat Form(Shapeshift)
/cast [nostealth,nocombat] Prowl
/stopattack [stealth]
]],
'/castsequence [combat,nostealth] Thrash,Swipe,Swipe,Thrash,Swipe,Rip',
'/castsequence [combat,nostealth] Swipe,Thrash,Swipe,Swipe,Thrash,Ferocious Bite',
PostMacro = [[
/startattack
/cast Tiger's Fury
/use [combat]13
/use [combat]14
]],
}

Hawe Fun…

Jimmy