Changeset 205 for trunk/src/bindings/scripts
- Timestamp:
- 11/19/08 13:46:10 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp
r90 r205 111 111 } 112 112 113 /*##### 114 ## go_gilded_brazier (Paladin First Trail quest (9678)) 115 #####*/ 116 117 bool GOHello_gilded_brazier(Player *player, GameObject* _GO) 118 { 119 if (player->GetQuestStatus(9678) == QUEST_STATUS_INCOMPLETE) 120 { 121 Creature *Stillblade = player->SummonCreature(17716, 8106.11, -7542.06, 151.775, 3.02598, TEMPSUMMON_DEAD_DESPAWN, 60000); 122 if (Stillblade) 123 ((CreatureAI*)Stillblade->AI())->AttackStart(player); 124 } 125 return true; 126 }; 127 113 128 void AddSC_ghostlands() 114 129 { … … 132 147 newscript->pGossipSelect = &GossipSelect_npc_rathis_tomber; 133 148 m_scripts[nrscripts++] = newscript; 149 150 newscript = new Script; 151 newscript->Name = "go_gilded_brazier"; 152 newscript->pGOHello = &GOHello_gilded_brazier; 153 m_scripts[nrscripts++] = newscript; 134 154 }