DK DW macro I am trying to work on help

Sequences['DKpvp'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
    ]],
    '/cast [combat] Anti-Magic Shell
    '/cast [combat] Pillar of Frost',
	'/castsequence Obliterate,Frost Strike,Obliterate,Obliterate',
	'/cast Howling Blast',
	'/cast [combat] Empower Rune Weapon',
	'/cast [combat] Asphyxiate',
	'/cast [combat] Mind Freeze',
    PostMacro = [[
    /use [combat] 13
    /use [combat] 14
/startattack
]],
}

Having major issues with this. Whenever I can get it to run it will run the macro but it puts it all in chat also. I can run my other macros and they run fine but they don’t put anything in the chat channel. Also sometimes I get errors when starting the game and it gives me errors saying something is not loading right with Sequences.lua and Gnome has been shut down. I remove this macro from my Sequences.lua and Gnome works as it is suppose to. Thanks in advance for help.

This is my very first macro I am trying to work on and more for PvP. I just started playing and my DK is only 70th level. I have tried to take things out of macros that I have seen on this website in hopes of making this work but have been unsuccessful.

This should work. I would suggest making a separate hotkey for asphyxiate and mindfreeze and commenting those two lines out of this.

Sequences["DKpvp"] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/cast [combat] Anti-Magic Shell
/cast [combat] Pillar of Frost
    ]],
	'/castsequence Obliterate,Frost Strike,Obliterate,Obliterate',
	'/cast Howling Blast',
	'/cast [combat] Asphyxiate',
	'/cast [combat] Mind Freeze',
    PostMacro = [[
/cast [combat] Empower Rune Weapon
/use [combat] 13
/use [combat] 14
/startattack
]],
}

[quote quote=22262]This should work. I would suggest making a separate hotkey for asphyxiate and mindfreeze and commenting those two lines out of this.

Sequences["DKpvp"] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/cast [combat] Anti-Magic Shell
/cast [combat] Pillar of Frost
    ]],
	'/castsequence Obliterate,Frost Strike,Obliterate,Obliterate',
	'/cast Howling Blast',
	'/cast [combat] Asphyxiate',
	'/cast [combat] Mind Freeze',
    PostMacro = [[
/cast [combat] Empower Rune Weapon
/use [combat] 13
/use [combat] 14
/startattack
]],
}
```[/quote]


Would you put Asphyxiate and Mind Freeze together on the same key or would you put them each on their own. Also if I took those out of this macro would I just delete or would I have to comment them out some how?