Ok well i guess this would qualify as a share, because its only 1 boss, its decent worthy of a small-medium sized raid...Feel free to change the Messages if you like but gimme a little credit seeing how this is my first script that I didnt require help making. (Fairly easy though) 
Anzort the DeathBringer:
Code:
function SBV_Atk(pUnit)
pUnit:FullCastSpell(30510)
end
function Cleave_Atk(pUnit)
pUnit:CastSpellOnTarget(31779, pUnit:GetMainTank())
end
function VB_Atk(pUnit)
pUnit:FullCastSpellOnTarget(22709, pUnit:GetRandomPlayer(0))
end
function Anzort_OnCombat(pUnit, Event)
pUnit:SendChatMessage(12, 0, "I will Destroy you,for my Master Doom Lord Kazzak!")
pUnit:RegisterEvent("SBV_Atk",25000, 0)
pUnit:RegisterEvent("Cleave_Atk",10000, 0)
pUnit:RegisterEvent("VB_Atk",15000, 0)
end
function Anzort_OnLeave(pUnit, Event)
pUnit:RemoveEvents();
pUnit:SendChatMessage(12, 0, "I Can't, Be, Beaten!!")
end
function Anzort_OnDied(pUnit, Event)
pUnit:SendChatMessage(12, 0, "Lord Kazzak!, these travellers have defeated me! Please forgive my Failure!")
pUnit:SendChatMessage(11, 0, "I am only the beginning, Go to outland If you so please, but I warn you, you shall not last a second against Doom Lord Kazzak at your current level...You are Not Prepared!")
end
RegisterUnitEvent(74000, 1, "Anzort_OnCombat")
RegisterUnitEvent(74000, 2, "Anzort_OnLeave")
RegisterUnitEvent(74000, 4, "Anzort_OnDied")
and the sql file is here:
Anzort_the_DeathBringer.sql - FileFront.com
Im sorry but this is my first share, EVER so its not very well done, next time though ill be sure to put the .lua and .sql files into a .rar zip, so you can just download it all in one package... Just gotta get the hang of this sharing/release thing.