Also, you don't need to repeat the same NPC ID like you did:
Code:
plugin::SpawnMixedFormation($npc, 15, 15, 15, 10, 15, 1259, 1259, 1259, 1259, 1259);
If you want the whole squad to be the same NPC, you can just do this:
Code:
plugin::SpawnMixedFormation($npc, 15, 15, 15, 10, 15, 1259);
My example was just showing that you can mix in multiple NPCs if you want to have some variety. There is no limit to how many NPC IDs you can mix in.
And instead of quest::broadcast(), try using quest::we(), which is for world emotes. Here is the example:
Code:
quest::we(13, "War! War! War is upon Norrath! Venkars forces have been spotted in the Greater Faydark! We must drive them back or we risk the loss of Felwithe and the Greater Faydark!");
When using a quest function, make sure it is on this list:
http://www.eqemulator.net/wiki/wikka...=QuestTutorial
Or here if it is a quest object:
http://www.eqemulator.net/wiki/wikka...a=QuestObjects