Index: trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp (revision 90)
+++ trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp (revision 205)
@@ -111,4 +111,19 @@
 }
 
+/*#####
+## go_gilded_brazier (Paladin First Trail quest (9678))
+#####*/
+
+bool GOHello_gilded_brazier(Player *player, GameObject* _GO)
+{
+    if (player->GetQuestStatus(9678) == QUEST_STATUS_INCOMPLETE)
+    {
+        Creature *Stillblade = player->SummonCreature(17716, 8106.11, -7542.06, 151.775, 3.02598, TEMPSUMMON_DEAD_DESPAWN, 60000);
+        if (Stillblade)
+            ((CreatureAI*)Stillblade->AI())->AttackStart(player);
+    }
+    return true;
+};
+
 void AddSC_ghostlands()
 {
@@ -132,3 +147,8 @@
     newscript->pGossipSelect = &GossipSelect_npc_rathis_tomber;
     m_scripts[nrscripts++] = newscript;
+
+    newscript = new Script;
+    newscript->Name = "go_gilded_brazier";
+    newscript->pGOHello = &GOHello_gilded_brazier;
+    m_scripts[nrscripts++] = newscript;
 }
