Custom StepFunction and multispells

Hi All,

i used the old GSE a lot and finally started using the new GSE. I am running into issues though.

My old script is this, esentially my stepfunction is 1,2,1,2,1,3,4 and 1 casts my off GCD spells.

Sequences["Rotation"] = {
	StepFunction = [[
		i = i or 1
		if i == 7 then
		step = 4
		i = 1
		elseif i ==6 then
		step = 3
		i = 7
		elseif i ==5 then
		step = 1
		i = 6
		elseif i ==4 then
		step = 2
		i = 5
		elseif i ==3 then
		step = 1
		i = 4
		elseif i ==2 then
		step = 2
		i = 3
		elseif i ==1 then
		step = 1
		i = 2
		end
	]],	
	-- Macro 1
	[[
/cast Mangle; /cast Ironfur; /cast Barkskin	
	]],	
	-- Macro 2
	[[
/cast Thrash
	]],
	-- Macro 3
	[[
/cast Frenzied Regeneration
	]],	
	-- Macro 4
	[[
/castsequence Moonfire,Swipe,Swipe,Swipe,Swipe
	]],
}

when i import, i cant a) have a custom step function ( 1,1,2,1,2,3,1,2,3,4 i dislike has you get long gaps between 1 presses) and i cant cast multiple spells in the same cast. currently the best i can achieve is this

dWZmcaGEbuVuG8wvHxtjMPa1SPOlR4MiLFjk3gG)PkzNs1Ej7gX(b1pfK(lLu9BQCyidvuzWanCK4GQs9yPCmvoUayHiPLIuTyLYYf5HcINIAzu16OKYevvAQqzYcPPlzycQUQq4zkvxNcTrbOTkGSzHOTtjPtdYSOuFwu14a0ifQMMqz0ckFdQoPQOZsjX1uvCEk45k5CQQCxvvToHP(jo(7UvIicRt7Di0dvDVWehFmPycrSiM4iJymK5qQL4Z(L9l7x2E7D7t8BJvyUK4VOKfaisGftFqrdLyAqBIPHigrMpj1KS6qkihrufhFmPiwmnul5c0KwqoYsyQFct9tCwdTkyW99FhU6EXzn0QGbXXX)au9DXzn0QGbVF(WbEQhtCwdTQ1eaJdPnWG(Bhh)SHb93oo(zdd6VDC8Zgge4p)joyNJsWqaGkXFeNZTkAOwYjm1pXzn0QGb9EGNxL44dkQ2e3NMfTjM6ywAtmDis(tBIXsqeltDIQyUgkb0iPvqoI4CjixcQmioOXa9XCqRryQeJLGiwMYlQIPdrY71M4Ggd5sZAjm1pXzfkLFQHmamad(G4cdLa8)r0bf9VP6EXzn0QGbFqCr6saS29hg8tmG4QeNln0qTKtyQFIZAOvbd69aJ5vjoehGnujQQujMPmTNFv)cpM4NnhrS4VtKiJML6NkvsaHANYUU_MACRO
Talents 1,?,?,?,2,3,1

This macro contains 1 macro version. This Sequence was exported from GSE 2.4.05.

Macro Version 1

Step Function: Priority

Pre Macro: Frenzied Regeneration

KeyPress: Bear Form

Main Sequence: Moonfire, Ironfur, Thrash, Mangle, Swipe

Post Macro: Barkskin

the sequence is

/cast Mangle
/cast Thrash
/cast Ironfur
/castsequence Swipe, Swipe, Swipe, Moonfire

how can i add a custom step sequence. and add my ironskin casts to other spells?