Changeset 48 for trunk/src/bindings

Show
Ignore:
Timestamp:
11/19/08 13:29:00 (17 years ago)
Author:
yumileroy
Message:

[svn] * Scripts fixed
* Last commit before public

Original author: runningnak3d
Date: 2008-10-14 15:05:43-05:00

Location:
trunk/src/bindings/scripts/scripts
Files:
321 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/bindings/scripts/scripts/areatrigger/areatrigger_scripts.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/boss/boss_emeriss.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_CORRUPTIONOFEARTH    24910 
    3232 
    33 struct MANGOS_DLL_DECL boss_emerissAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_emerissAI : public ScriptedAI 
    3434{ 
    3535    boss_emerissAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/boss/boss_lethon.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/boss/boss_taerar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3939#define SPELL_POSIONBREATH          20667 
    4040 
    41 struct MANGOS_DLL_DECL boss_taerarAI : public ScriptedAI 
     41struct TRINITY_DLL_DECL boss_taerarAI : public ScriptedAI 
    4242{ 
    4343    boss_taerarAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    241241// Shades of Taerar Script 
    242242 
    243 struct MANGOS_DLL_DECL boss_shadeoftaerarAI : public ScriptedAI 
     243struct TRINITY_DLL_DECL boss_shadeoftaerarAI : public ScriptedAI 
    244244{ 
    245245    boss_shadeoftaerarAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/boss/boss_ysondre.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3535 
    3636// Ysondre script 
    37 struct MANGOS_DLL_DECL boss_ysondreAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL boss_ysondreAI : public ScriptedAI 
    3838{ 
    3939    boss_ysondreAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    190190}; 
    191191// Summoned druid script 
    192 struct MANGOS_DLL_DECL mob_dementeddruidsAI : public ScriptedAI 
     192struct TRINITY_DLL_DECL mob_dementeddruidsAI : public ScriptedAI 
    193193{ 
    194194    mob_dementeddruidsAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/creature/mob_event_ai.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737}; 
    3838 
    39 struct MANGOS_DLL_DECL Mob_EventAI : public ScriptedAI 
     39struct TRINITY_DLL_DECL Mob_EventAI : public ScriptedAI 
    4040{ 
    4141    Mob_EventAI(Creature *c, std::list<EventHolder> pEventList) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/creature/mob_generic_creature.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2626#define GENERIC_CREATURE_COOLDOWN   5000 
    2727 
    28 struct MANGOS_DLL_DECL generic_creatureAI : public ScriptedAI 
     28struct TRINITY_DLL_DECL generic_creatureAI : public ScriptedAI 
    2929{ 
    3030    generic_creatureAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/creature/simple_ai.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
  • trunk/src/bindings/scripts/scripts/creature/simple_ai.h

    r46 r48  
    2020}; 
    2121 
    22 struct MANGOS_DLL_DECL SimpleAI : public ScriptedAI 
     22struct TRINITY_DLL_DECL SimpleAI : public ScriptedAI 
    2323{ 
    2424    SimpleAI(Creature *c);// : ScriptedAI(c); 
  • trunk/src/bindings/scripts/scripts/custom/custom_example.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5757#define SAY_SALUTE      "Move out Soldier!" 
    5858 
    59 struct MANGOS_DLL_DECL custom_exampleAI : public ScriptedAI 
     59struct TRINITY_DLL_DECL custom_exampleAI : public ScriptedAI 
    6060{ 
    6161    //*** HANDLED FUNCTION *** 
  • trunk/src/bindings/scripts/scripts/custom/custom_gossip_codebox.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/custom/test.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525#include "../npc/npc_escortAI.h" 
    2626 
    27 struct MANGOS_DLL_DECL npc_testAI : public npc_escortAI 
     27struct TRINITY_DLL_DECL npc_testAI : public npc_escortAI 
    2828{ 
    2929    public: 
     
    168168        ((npc_escortAI*)(_Creature->AI()))->Start(true, true, true, player->GetGUID()); 
    169169 
    170         return true;                                        // prevent mangos core handling 
     170        return true;                                        // prevent Trinity core handling 
    171171    } 
    172172 
     
    176176        ((npc_escortAI*)(_Creature->AI()))->Start(false, false, false, player->GetGUID()); 
    177177 
    178         return true;                                        // prevent mangos core handling 
     178        return true;                                        // prevent Trinity core handling 
    179179    } 
    180180 
     
    184184        ((npc_escortAI*)(_Creature->AI()))->Start(false, true, false, player->GetGUID()); 
    185185 
    186         return true;                                        // prevent mangos core handling 
     186        return true;                                        // prevent Trinity core handling 
    187187    } 
    188188    return false; 
  • trunk/src/bindings/scripts/scripts/go/go_scripts.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    137137######*/ 
    138138 
    139 //TODO: use gossip option ("Transcript the Tablet") instead, if Mangos adds support. 
     139//TODO: use gossip option ("Transcript the Tablet") instead, if Trinity adds support. 
    140140bool GOHello_go_tablet_of_the_seven(Player *player, GameObject* _GO) 
    141141{ 
  • trunk/src/bindings/scripts/scripts/guard/guard_ai.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/guard/guard_ai.h

    r46 r48  
    88#define GENERIC_CREATURE_COOLDOWN 5000 
    99 
    10 struct MANGOS_DLL_DECL guardAI : public ScriptedAI 
     10struct TRINITY_DLL_DECL guardAI : public ScriptedAI 
    1111{ 
    1212    guardAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/guard/guards.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    492492 *******************************************************/ 
    493493 
    494 struct MANGOS_DLL_DECL guard_contested : public guardAI 
     494struct TRINITY_DLL_DECL guard_contested : public guardAI 
    495495{ 
    496496    guard_contested(Creature *c) : guardAI(c) {} 
     
    25412541#define SPELL_EXILE                 39533 
    25422542 
    2543 struct MANGOS_DLL_DECL guard_shattrath_aldorAI : public guardAI 
     2543struct TRINITY_DLL_DECL guard_shattrath_aldorAI : public guardAI 
    25442544{ 
    25452545    guard_shattrath_aldorAI(Creature *c) : guardAI(c) { Reset(); } 
     
    27372737 *******************************************************/ 
    27382738 
    2739 struct MANGOS_DLL_DECL guard_shattrath_scryerAI : public guardAI 
     2739struct TRINITY_DLL_DECL guard_shattrath_scryerAI : public guardAI 
    27402740{ 
    27412741    guard_shattrath_scryerAI(Creature *c) : guardAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/item/item_scripts.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/item/item_test.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/npc/npc_escortAI.h

    r46 r48  
    2424}; 
    2525 
    26 struct MANGOS_DLL_DECL npc_escortAI : public ScriptedAI 
     26struct TRINITY_DLL_DECL npc_escortAI : public ScriptedAI 
    2727{ 
    2828    public: 
  • trunk/src/bindings/scripts/scripts/npc/npc_innkeeper.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    129129            player->CastSpell(player, trickspell, true); 
    130130        } 
    131         return true;                                        // prevent mangos core handling 
     131        return true;                                        // prevent Trinity core handling 
    132132    } 
    133133    return false;                                           // the player didn't select "trick or treat" or cheated, normal core handling 
  • trunk/src/bindings/scripts/scripts/npc/npc_professions.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/npc/npcs_special.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4747#define FACTION_CHICKEN     31 
    4848 
    49 struct MANGOS_DLL_DECL npc_chicken_cluckAI : public ScriptedAI 
     49struct TRINITY_DLL_DECL npc_chicken_cluckAI : public ScriptedAI 
    5050{ 
    5151    npc_chicken_cluckAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    236236######*/ 
    237237 
    238 struct MANGOS_DLL_DECL npc_doctorAI : public ScriptedAI 
     238struct TRINITY_DLL_DECL npc_doctorAI : public ScriptedAI 
    239239{ 
    240240    uint64 Playerguid; 
     
    266266#####*/ 
    267267 
    268 struct MANGOS_DLL_DECL npc_injured_patientAI : public ScriptedAI 
     268struct TRINITY_DLL_DECL npc_injured_patientAI : public ScriptedAI 
    269269{ 
    270270    npc_injured_patientAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    528528#define SAY_AGGRO                        "This area is closed!" 
    529529 
    530 struct MANGOS_DLL_DECL npc_guardianAI : public ScriptedAI 
     530struct TRINITY_DLL_DECL npc_guardianAI : public ScriptedAI 
    531531{ 
    532532    npc_guardianAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/alterac_mountains/alterac_mountains.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232######*/ 
    3333 
    34 struct MANGOS_DLL_DECL npc_ravenholdtAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL npc_ravenholdtAI : public ScriptedAI 
    3535{ 
    3636    npc_ravenholdtAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/auchenai_crypts/boss_exarch_maladaar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4040#define SPELL_HAMMER_OF_JUSTICE 37369 
    4141 
    42 struct MANGOS_DLL_DECL mob_stolen_soulAI : public ScriptedAI 
     42struct TRINITY_DLL_DECL mob_stolen_soulAI : public ScriptedAI 
    4343{ 
    4444    mob_stolen_soulAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    152152#define ENTRY_STOLEN_SOUL           18441 
    153153 
    154 struct MANGOS_DLL_DECL boss_exarch_maladaarAI : public ScriptedAI 
     154struct TRINITY_DLL_DECL boss_exarch_maladaarAI : public ScriptedAI 
    155155{ 
    156156    boss_exarch_maladaarAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    233233        if( summoned->GetEntry() == ENTRY_STOLEN_SOUL ) 
    234234        { 
    235             //SPELL_STOLEN_SOUL_VISUAL has shapeshift effect, but not implemented feature in mangos for this spell. 
     235            //SPELL_STOLEN_SOUL_VISUAL has shapeshift effect, but not implemented feature in Trinity for this spell. 
    236236            summoned->SetDisplayId(soulmodel); 
    237237            summoned->CastSpell(summoned,SPELL_STOLEN_SOUL_VISUAL,false); 
     
    348348#define SPELL_SUNDER_ARMOR          16145 
    349349 
    350 struct MANGOS_DLL_DECL mob_avatar_of_martyredAI : public ScriptedAI 
     350struct TRINITY_DLL_DECL mob_avatar_of_martyredAI : public ScriptedAI 
    351351{ 
    352352    mob_avatar_of_martyredAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_nexusprince_shaffar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6060#define ENTRY_BEACON                    18431 
    6161 
    62 struct MANGOS_DLL_DECL boss_nexusprince_shaffarAI : public ScriptedAI 
     62struct TRINITY_DLL_DECL boss_nexusprince_shaffarAI : public ScriptedAI 
    6363{ 
    6464    boss_nexusprince_shaffarAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    232232#define SPELL_ETHEREAL_APPRENTICE       32372               // Summon 18430 
    233233 
    234 struct MANGOS_DLL_DECL mob_ethereal_beaconAI : public ScriptedAI 
     234struct TRINITY_DLL_DECL mob_ethereal_beaconAI : public ScriptedAI 
    235235{ 
    236236    mob_ethereal_beaconAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_pandemonius.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4646#define H_SPELL_DARK_SHELL              38759 
    4747 
    48 struct MANGOS_DLL_DECL boss_pandemoniusAI : public ScriptedAI 
     48struct TRINITY_DLL_DECL boss_pandemoniusAI : public ScriptedAI 
    4949{ 
    5050    boss_pandemoniusAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_darkweaver_syth.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6363#define H_SPELL_SHADOW_BUFFET       38143 
    6464 
    65 struct MANGOS_DLL_DECL boss_darkweaver_sythAI : public ScriptedAI 
     65struct TRINITY_DLL_DECL boss_darkweaver_sythAI : public ScriptedAI 
    6666{ 
    6767    boss_darkweaver_sythAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    228228/* ELEMENTALS */ 
    229229 
    230 struct MANGOS_DLL_DECL mob_syth_fireAI : public ScriptedAI 
     230struct TRINITY_DLL_DECL mob_syth_fireAI : public ScriptedAI 
    231231{ 
    232232    mob_syth_fireAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    274274} 
    275275 
    276 struct MANGOS_DLL_DECL mob_syth_arcaneAI : public ScriptedAI 
     276struct TRINITY_DLL_DECL mob_syth_arcaneAI : public ScriptedAI 
    277277{ 
    278278    mob_syth_arcaneAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    320320} 
    321321 
    322 struct MANGOS_DLL_DECL mob_syth_frostAI : public ScriptedAI 
     322struct TRINITY_DLL_DECL mob_syth_frostAI : public ScriptedAI 
    323323{ 
    324324    mob_syth_frostAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    366366} 
    367367 
    368 struct MANGOS_DLL_DECL mob_syth_shadowAI : public ScriptedAI 
     368struct TRINITY_DLL_DECL mob_syth_shadowAI : public ScriptedAI 
    369369{ 
    370370    mob_syth_shadowAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_tailonking_ikiss.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6060#define H_SPELL_ARCANE_EXPLOSION    40425 
    6161 
    62 struct MANGOS_DLL_DECL boss_talon_king_ikissAI : public ScriptedAI 
     62struct TRINITY_DLL_DECL boss_talon_king_ikissAI : public ScriptedAI 
    6363{ 
    6464    boss_talon_king_ikissAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/instance_sethekk_halls.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define IKISS_DOOR          177203 
    2828 
    29 struct MANGOS_DLL_DECL instance_sethekk_halls : public ScriptedInstance 
     29struct TRINITY_DLL_DECL instance_sethekk_halls : public ScriptedInstance 
    3030{ 
    3131    instance_sethekk_halls(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_ambassador_hellmaw.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5151#define SPELL_ENRAGE            0                           //need to find proper spell 
    5252 
    53 struct MANGOS_DLL_DECL boss_ambassador_hellmawAI : public ScriptedAI 
     53struct TRINITY_DLL_DECL boss_ambassador_hellmawAI : public ScriptedAI 
    5454{ 
    5555    boss_ambassador_hellmawAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4646#define SOUND_DEATH           10491 
    4747 
    48 struct MANGOS_DLL_DECL boss_blackheart_the_inciterAI : public ScriptedAI 
     48struct TRINITY_DLL_DECL boss_blackheart_the_inciterAI : public ScriptedAI 
    4949{ 
    5050    boss_blackheart_the_inciterAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_grandmaster_vorpil.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6363#define LOCZ                    17.08 
    6464 
    65 struct MANGOS_DLL_DECL boss_grandmaster_vorpilAI : public ScriptedAI 
     65struct TRINITY_DLL_DECL boss_grandmaster_vorpilAI : public ScriptedAI 
    6666{ 
    6767    boss_grandmaster_vorpilAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_murmur.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3333#define SPELL_SHOCKWAVE             33686 
    3434 
    35 struct MANGOS_DLL_DECL boss_murmurAI : public ScriptedAI 
     35struct TRINITY_DLL_DECL boss_murmurAI : public ScriptedAI 
    3636{ 
    3737    boss_murmurAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/instance_shadow_labyrinth.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737*/ 
    3838 
    39 struct MANGOS_DLL_DECL instance_shadow_labyrinth : public ScriptedInstance 
     39struct TRINITY_DLL_DECL instance_shadow_labyrinth : public ScriptedInstance 
    4040{ 
    4141    instance_shadow_labyrinth(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/azshara/azshara.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3333######*/ 
    3434 
    35 struct MANGOS_DLL_DECL mobs_spitelashesAI : public ScriptedAI 
     35struct TRINITY_DLL_DECL mobs_spitelashesAI : public ScriptedAI 
    3636{ 
    3737    mobs_spitelashesAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/azshara/boss_azuregos.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_ENRAGE             23537 
    3333 
    34 struct MANGOS_DLL_DECL boss_azuregosAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_azuregosAI : public ScriptedAI 
    3535{ 
    3636    boss_azuregosAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/azuremyst_isle/azuremyst_isle.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4646#define HELP4        "I don't know if I can make it, please help me..." 
    4747 
    48 struct MANGOS_DLL_DECL npc_draenei_survivorAI : public ScriptedAI 
     48struct TRINITY_DLL_DECL npc_draenei_survivorAI : public ScriptedAI 
    4949{ 
    5050    npc_draenei_survivorAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    202202#define SPELL_DYNAMITE  7978 
    203203 
    204 struct MANGOS_DLL_DECL npc_engineer_spark_overgrindAI : public ScriptedAI 
     204struct TRINITY_DLL_DECL npc_engineer_spark_overgrindAI : public ScriptedAI 
    205205{ 
    206206    npc_engineer_spark_overgrindAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    273273######*/ 
    274274 
    275 struct MANGOS_DLL_DECL npc_injured_draeneiAI : public ScriptedAI 
     275struct TRINITY_DLL_DECL npc_injured_draeneiAI : public ScriptedAI 
    276276{ 
    277277    npc_injured_draeneiAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    335335        nodes[0] = 92;                                      //from susurrus 
    336336        nodes[1] = 91;                                      //end at exodar 
    337         player->ActivateTaxiPathTo(nodes,11686);            //TaxiPath 506. Using invisible model, possible mangos must allow 0(from dbc) for cases like this. 
     337        player->ActivateTaxiPathTo(nodes,11686);            //TaxiPath 506. Using invisible model, possible Trinity must allow 0(from dbc) for cases like this. 
    338338    } 
    339339    return true; 
  • trunk/src/bindings/scripts/scripts/zone/barrens/the_barrens.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525npc_beaten_corpse 
    2626npc_sputtervalve 
    27 npc_taskmaster_fizzule      remove hack when mangos implement feature/detect spell kind to not aggro 
     27npc_taskmaster_fizzule      remove hack when Trinity implement feature/detect spell kind to not aggro 
    2828EndContentData */ 
    2929 
     
    9090#define SPELL_FOLLY             10137 
    9191 
    92 struct MANGOS_DLL_DECL npc_taskmaster_fizzuleAI : public ScriptedAI 
     92struct TRINITY_DLL_DECL npc_taskmaster_fizzuleAI : public ScriptedAI 
    9393{ 
    9494    npc_taskmaster_fizzuleAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    108108 
    109109    //This is a hack. Spellcast will make creature aggro but that is not 
    110     //supposed to happen (mangos not implemented/not found way to detect this spell kind) 
     110    //supposed to happen (Trinity not implemented/not found way to detect this spell kind) 
    111111    void DoUglyHack() 
    112112    { 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/black_temple.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_bloodboil.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7575}; 
    7676 
    77 struct MANGOS_DLL_DECL boss_gurtogg_bloodboilAI : public ScriptedAI 
     77struct TRINITY_DLL_DECL boss_gurtogg_bloodboilAI : public ScriptedAI 
    7878{ 
    7979    boss_gurtogg_bloodboilAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_illidan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    282282 
    283283/**** Demon Fire will be used for Eye Blast. Illidan needs to have access to it's vars and functions, so we'll set it here ****/ 
    284 struct MANGOS_DLL_DECL demonfireAI : public ScriptedAI 
     284struct TRINITY_DLL_DECL demonfireAI : public ScriptedAI 
    285285{ 
    286286    demonfireAI(Creature *c) : ScriptedAI(c) 
     
    352352 
    353353/******* Functions and vars for Akama's AI ******/ 
    354 struct MANGOS_DLL_SPEC npc_akama_illidanAI : public ScriptedAI 
     354struct TRINITY_DLL_SPEC npc_akama_illidanAI : public ScriptedAI 
    355355{ 
    356356    npc_akama_illidanAI(Creature* c) : ScriptedAI(c) 
     
    826826 
    827827/************************************** Illidan's AI ***************************************/ 
    828 struct MANGOS_DLL_SPEC boss_illidan_stormrageAI : public ScriptedAI 
     828struct TRINITY_DLL_SPEC boss_illidan_stormrageAI : public ScriptedAI 
    829829{ 
    830830    boss_illidan_stormrageAI(Creature* c) : ScriptedAI(c) 
     
    11181118        Player* target = NULL; 
    11191119 
    1120         CellPair pair(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     1120        CellPair pair(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    11211121        Cell cell(pair); 
    11221122        cell.data.Part.reserved = ALL_DISTRICT; 
     
    11241124 
    11251125        AgonizingFlamesTargetCheck check(m_creature); 
    1126         MaNGOS::PlayerSearcher<AgonizingFlamesTargetCheck> searcher(target, check); 
     1126        Trinity::PlayerSearcher<AgonizingFlamesTargetCheck> searcher(target, check); 
    11271127        TypeContainerVisitor 
    1128             <MaNGOS::PlayerSearcher<AgonizingFlamesTargetCheck>, GridTypeMapContainer> visitor(searcher); 
     1128            <Trinity::PlayerSearcher<AgonizingFlamesTargetCheck>, GridTypeMapContainer> visitor(searcher); 
    11291129 
    11301130        CellLock<GridReadGuard> cell_lock(cell, pair); 
     
    19421942} 
    19431943 
    1944 struct MANGOS_DLL_SPEC boss_maievAI : public ScriptedAI 
     1944struct TRINITY_DLL_SPEC boss_maievAI : public ScriptedAI 
    19451945{ 
    19461946    boss_maievAI(Creature *c) : ScriptedAI(c) 
     
    20002000}; 
    20012001 
    2002 struct MANGOS_DLL_DECL cage_trap_triggerAI : public ScriptedAI 
     2002struct TRINITY_DLL_DECL cage_trap_triggerAI : public ScriptedAI 
    20032003{ 
    20042004    cage_trap_triggerAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    20762076    Creature* trigger = NULL; 
    20772077 
    2078     CellPair pair(MaNGOS::ComputeCellPair(x, y)); 
     2078    CellPair pair(Trinity::ComputeCellPair(x, y)); 
    20792079    Cell cell(pair); 
    20802080    cell.data.Part.reserved = ALL_DISTRICT; 
     
    20822082 
    20832083    // Grid search for nearest live creature of entry 23304 within 10 yards 
    2084     MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck check(*plr, 23304, true, 10); 
    2085     MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(trigger, check); 
    2086  
    2087     TypeContainerVisitor<MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> cSearcher(searcher); 
     2084    Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck check(*plr, 23304, true, 10); 
     2085    Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(trigger, check); 
     2086 
     2087    TypeContainerVisitor<Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> cSearcher(searcher); 
    20882088 
    20892089    CellLock<GridReadGuard> cell_lock(cell, pair); 
     
    21142114}; 
    21152115 
    2116 struct MANGOS_DLL_DECL flame_of_azzinothAI : public ScriptedAI 
     2116struct TRINITY_DLL_DECL flame_of_azzinothAI : public ScriptedAI 
    21172117{ 
    21182118    flame_of_azzinothAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    21892189}; 
    21902190 
    2191 struct MANGOS_DLL_DECL shadow_demonAI : public ScriptedAI 
     2191struct TRINITY_DLL_DECL shadow_demonAI : public ScriptedAI 
    21922192{ 
    21932193    shadow_demonAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    22302230}; 
    22312231 
    2232 struct MANGOS_DLL_DECL flamecrashAI : public ScriptedAI 
     2232struct TRINITY_DLL_DECL flamecrashAI : public ScriptedAI 
    22332233{ 
    22342234    flamecrashAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    22662266 
    22672267// Shadowfiends interact with Illidan, setting more targets in Illidan's hashmap 
    2268 struct MANGOS_DLL_SPEC mob_parasitic_shadowfiendAI : public ScriptedAI 
     2268struct TRINITY_DLL_SPEC mob_parasitic_shadowfiendAI : public ScriptedAI 
    22692269{ 
    22702270    mob_parasitic_shadowfiendAI(Creature* c) : ScriptedAI(c) 
     
    22942294}; 
    22952295 
    2296 struct MANGOS_DLL_DECL blazeAI : public ScriptedAI 
     2296struct TRINITY_DLL_DECL blazeAI : public ScriptedAI 
    22972297{ 
    22982298    blazeAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    23292329}; 
    23302330 
    2331 struct MANGOS_DLL_DECL blade_of_azzinothAI : public ScriptedAI 
     2331struct TRINITY_DLL_DECL blade_of_azzinothAI : public ScriptedAI 
    23322332{ 
    23332333    blade_of_azzinothAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_mother_shahraz.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    9898}; 
    9999 
    100 struct MANGOS_DLL_DECL boss_shahrazAI : public ScriptedAI 
     100struct TRINITY_DLL_DECL boss_shahrazAI : public ScriptedAI 
    101101{ 
    102102    boss_shahrazAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_reliquary_of_souls.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    114114}; 
    115115 
    116 struct MANGOS_DLL_DECL npc_enslaved_soulAI : public ScriptedAI 
     116struct TRINITY_DLL_DECL npc_enslaved_soulAI : public ScriptedAI 
    117117{ 
    118118    npc_enslaved_soulAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    150150}; 
    151151 
    152 struct MANGOS_DLL_DECL boss_reliquary_of_soulsAI : public ScriptedAI 
     152struct TRINITY_DLL_DECL boss_reliquary_of_soulsAI : public ScriptedAI 
    153153{ 
    154154    boss_reliquary_of_soulsAI(Creature *c) : ScriptedAI(c) 
     
    584584}; 
    585585 
    586 struct MANGOS_DLL_DECL boss_essence_of_sufferingAI : public ScriptedAI 
     586struct TRINITY_DLL_DECL boss_essence_of_sufferingAI : public ScriptedAI 
    587587{ 
    588588    boss_essence_of_sufferingAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    734734    } 
    735735}; 
    736 struct MANGOS_DLL_DECL boss_essence_of_desireAI : public ScriptedAI 
     736struct TRINITY_DLL_DECL boss_essence_of_desireAI : public ScriptedAI 
    737737{ 
    738738    boss_essence_of_desireAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    852852}; 
    853853 
    854 struct MANGOS_DLL_DECL boss_essence_of_angerAI : public ScriptedAI 
     854struct TRINITY_DLL_DECL boss_essence_of_angerAI : public ScriptedAI 
    855855{ 
    856856    boss_essence_of_angerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_shade_of_akama.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    111111const uint32 spawnEntries[4]= { 23523, 23318, 23524 }; 
    112112 
    113 struct MANGOS_DLL_DECL mob_ashtongue_channelerAI : public ScriptedAI 
     113struct TRINITY_DLL_DECL mob_ashtongue_channelerAI : public ScriptedAI 
    114114{ 
    115115    mob_ashtongue_channelerAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    125125}; 
    126126 
    127 struct MANGOS_DLL_DECL mob_ashtongue_sorcererAI : public ScriptedAI 
     127struct TRINITY_DLL_DECL mob_ashtongue_sorcererAI : public ScriptedAI 
    128128{ 
    129129    mob_ashtongue_sorcererAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    169169}; 
    170170 
    171 struct MANGOS_DLL_DECL boss_shade_of_akamaAI : public ScriptedAI 
     171struct TRINITY_DLL_DECL boss_shade_of_akamaAI : public ScriptedAI 
    172172{ 
    173173    boss_shade_of_akamaAI(Creature* c) : ScriptedAI(c) 
     
    320320    void FindChannelers() 
    321321    { 
    322         CellPair pair(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     322        CellPair pair(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    323323        Cell cell(pair); 
    324324        cell.data.Part.reserved = ALL_DISTRICT; 
     
    327327        std::list<Creature*> ChannelerList; 
    328328 
    329         MaNGOS::AllCreaturesOfEntryInRange check(m_creature, CREATURE_CHANNELER, 50); 
    330         MaNGOS::CreatureListSearcher<MaNGOS::AllCreaturesOfEntryInRange> searcher(ChannelerList, check); 
    331         TypeContainerVisitor<MaNGOS::CreatureListSearcher<MaNGOS::AllCreaturesOfEntryInRange>, GridTypeMapContainer> visitor(searcher); 
     329        Trinity::AllCreaturesOfEntryInRange check(m_creature, CREATURE_CHANNELER, 50); 
     330        Trinity::CreatureListSearcher<Trinity::AllCreaturesOfEntryInRange> searcher(ChannelerList, check); 
     331        TypeContainerVisitor<Trinity::CreatureListSearcher<Trinity::AllCreaturesOfEntryInRange>, GridTypeMapContainer> visitor(searcher); 
    332332 
    333333        CellLock<GridReadGuard> cell_lock(cell, pair); 
     
    481481} 
    482482 
    483 struct MANGOS_DLL_DECL npc_akamaAI : public ScriptedAI 
     483struct TRINITY_DLL_DECL npc_akamaAI : public ScriptedAI 
    484484{ 
    485485    npc_akamaAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_supremus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838#define CREATURE_STALKER            23095 
    3939 
    40 struct MANGOS_DLL_DECL molten_flameAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL molten_flameAI : public ScriptedAI 
    4141{ 
    4242    molten_flameAI(Creature *c) : ScriptedAI(c) 
     
    102102}; 
    103103 
    104 struct MANGOS_DLL_DECL npc_volcanoAI : public ScriptedAI 
     104struct TRINITY_DLL_DECL npc_volcanoAI : public ScriptedAI 
    105105{ 
    106106    npc_volcanoAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    146146}; 
    147147 
    148 struct MANGOS_DLL_DECL boss_supremusAI : public ScriptedAI 
     148struct TRINITY_DLL_DECL boss_supremusAI : public ScriptedAI 
    149149{ 
    150150    boss_supremusAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_teron_gorefiend.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6969#define CREATURE_SHADOWY_CONSTRUCT  23111 
    7070 
    71 struct MANGOS_DLL_DECL mob_doom_blossomAI : public ScriptedAI 
     71struct TRINITY_DLL_DECL mob_doom_blossomAI : public ScriptedAI 
    7272{ 
    7373    mob_doom_blossomAI(Creature *c) : ScriptedAI(c) 
     
    134134}; 
    135135 
    136 struct MANGOS_DLL_DECL mob_shadowy_constructAI : public ScriptedAI 
     136struct TRINITY_DLL_DECL mob_shadowy_constructAI : public ScriptedAI 
    137137{ 
    138138    mob_shadowy_constructAI(Creature* c) : ScriptedAI(c) 
     
    226226}; 
    227227 
    228 struct MANGOS_DLL_DECL boss_teron_gorefiendAI : public ScriptedAI 
     228struct TRINITY_DLL_DECL boss_teron_gorefiendAI : public ScriptedAI 
    229229{ 
    230230    boss_teron_gorefiendAI(Creature *c) : ScriptedAI(c) 
     
    365365        /************************************************************************/ 
    366366        /** NOTE FOR FUTURE DEVELOPER: PROPERLY IMPLEMENT THE GHOST PORTION *****/ 
    367         /**  ONLY AFTER MaNGOS FULLY IMPLEMENTS MIND CONTROL ABILITIES      *****/ 
     367        /**  ONLY AFTER TrinIty FULLY IMPLEMENTS MIND CONTROL ABILITIES      *****/ 
    368368        /**   THE CURRENT CODE IN THIS FUNCTION IS ONLY THE BEGINNING OF    *****/ 
    369369        /**    WHAT IS FULLY NECESSARY FOR GOREFIEND TO BE 100% COMPLETE    *****/ 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/boss_warlord_najentus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7272#define DISPLAYID_SPINE         7362 
    7373 
    74 struct MANGOS_DLL_DECL mob_najentus_spineAI : public ScriptedAI 
     74struct TRINITY_DLL_DECL mob_najentus_spineAI : public ScriptedAI 
    7575{ 
    7676    mob_najentus_spineAI(Creature *c) : ScriptedAI(c) 
     
    111111}; 
    112112 
    113 struct MANGOS_DLL_DECL boss_najentusAI : public ScriptedAI 
     113struct TRINITY_DLL_DECL boss_najentusAI : public ScriptedAI 
    114114{ 
    115115    boss_najentusAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/illidari_council.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    134134}; 
    135135 
    136 struct MANGOS_DLL_DECL mob_blood_elf_council_voice_triggerAI : public ScriptedAI 
     136struct TRINITY_DLL_DECL mob_blood_elf_council_voice_triggerAI : public ScriptedAI 
    137137{ 
    138138    mob_blood_elf_council_voice_triggerAI(Creature* c) : ScriptedAI(c) 
     
    217217}; 
    218218 
    219 struct MANGOS_DLL_DECL mob_illidari_councilAI : public ScriptedAI 
     219struct TRINITY_DLL_DECL mob_illidari_councilAI : public ScriptedAI 
    220220{ 
    221221    mob_illidari_councilAI(Creature *c) : ScriptedAI(c) 
     
    371371}; 
    372372 
    373 struct MANGOS_DLL_DECL boss_illidari_councilAI : public ScriptedAI 
     373struct TRINITY_DLL_DECL boss_illidari_councilAI : public ScriptedAI 
    374374{ 
    375375    boss_illidari_councilAI(Creature* c) : ScriptedAI(c) 
     
    440440}; 
    441441 
    442 struct MANGOS_DLL_DECL boss_gathios_the_shattererAI : public boss_illidari_councilAI 
     442struct TRINITY_DLL_DECL boss_gathios_the_shattererAI : public boss_illidari_councilAI 
    443443{ 
    444444    boss_gathios_the_shattererAI(Creature *c) : boss_illidari_councilAI(c) { Reset(); } 
     
    557557}; 
    558558 
    559 struct MANGOS_DLL_DECL boss_high_nethermancer_zerevorAI : public boss_illidari_councilAI 
     559struct TRINITY_DLL_DECL boss_high_nethermancer_zerevorAI : public boss_illidari_councilAI 
    560560{ 
    561561    boss_high_nethermancer_zerevorAI(Creature *c) : boss_illidari_councilAI(c) { Reset(); } 
     
    651651}; 
    652652 
    653 struct MANGOS_DLL_DECL boss_lady_malandeAI : public boss_illidari_councilAI 
     653struct TRINITY_DLL_DECL boss_lady_malandeAI : public boss_illidari_councilAI 
    654654{ 
    655655    boss_lady_malandeAI(Creature *c) : boss_illidari_councilAI(c) { Reset(); } 
     
    720720}; 
    721721 
    722 struct MANGOS_DLL_DECL boss_veras_darkshadowAI : public boss_illidari_councilAI 
     722struct TRINITY_DLL_DECL boss_veras_darkshadowAI : public boss_illidari_councilAI 
    723723{ 
    724724    boss_veras_darkshadowAI(Creature *c) : boss_illidari_councilAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/black_temple/instance_black_temple.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3939*/ 
    4040 
    41 struct MANGOS_DLL_DECL instance_black_temple : public ScriptedInstance 
     41struct TRINITY_DLL_DECL instance_black_temple : public ScriptedInstance 
    4242{ 
    4343    instance_black_temple(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838#define SPELL_MIGHTYBLOW        14099 
    3939 
    40 struct MANGOS_DLL_DECL mob_phalanxAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL mob_phalanxAI : public ScriptedAI 
    4141{ 
    4242    mob_phalanxAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_ambassador_flamelash.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2626#define SPELL_FIREBLAST            15573 
    2727 
    28 struct MANGOS_DLL_DECL boss_ambassador_flamelashAI : public ScriptedAI 
     28struct TRINITY_DLL_DECL boss_ambassador_flamelashAI : public ScriptedAI 
    2929{ 
    3030    boss_ambassador_flamelashAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_angerrel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_STRIKE                15580 
    2929 
    30 struct MANGOS_DLL_DECL boss_angerrelAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_angerrelAI : public ScriptedAI 
    3131{ 
    3232    boss_angerrelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_anubshiah.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_ENVELOPINGWEB         15471 
    3131 
    32 struct MANGOS_DLL_DECL boss_anubshiahAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_anubshiahAI : public ScriptedAI 
    3333{ 
    3434    boss_anubshiahAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doomrel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_DEMONARMOR                     11735 
    3030 
    31 struct MANGOS_DLL_DECL boss_doomrelAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_doomrelAI : public ScriptedAI 
    3232{ 
    3333    boss_doomrelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doperel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_GOUGE                 13579 
    2929 
    30 struct MANGOS_DLL_DECL boss_doperelAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_doperelAI : public ScriptedAI 
    3131{ 
    3232    boss_doperelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_emperor_dagran_thaurissan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SAY_SLAY                        "Hail to the king, baby!" 
    3131 
    32 struct MANGOS_DLL_DECL boss_draganthaurissanAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_draganthaurissanAI : public ScriptedAI 
    3333{ 
    3434    boss_draganthaurissanAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_general_angerforge.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_CLEAVE                20691 
    2929 
    30 struct MANGOS_DLL_DECL boss_general_angerforgeAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_general_angerforgeAI : public ScriptedAI 
    3131{ 
    3232    boss_general_angerforgeAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gloomrel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_MORTALSTRIKE          15708 
    2929 
    30 struct MANGOS_DLL_DECL boss_gloomrelAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_gloomrelAI : public ScriptedAI 
    3131{ 
    3232    boss_gloomrelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gorosh_the_dervish.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_MORTALSTRIKE          24573 
    2828 
    29 struct MANGOS_DLL_DECL boss_gorosh_the_dervishAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_gorosh_the_dervishAI : public ScriptedAI 
    3030{ 
    3131    boss_gorosh_the_dervishAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_grizzle.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_FRENZY                28371 
    2828 
    29 struct MANGOS_DLL_DECL boss_grizzleAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_grizzleAI : public ScriptedAI 
    3030{ 
    3131    boss_grizzleAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_haterel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_STRIKE            15580 
    3030 
    31 struct MANGOS_DLL_DECL boss_haterelAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_haterelAI : public ScriptedAI 
    3232{ 
    3333    boss_haterelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_high_interrogator_gerstahn.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_SHADOWSHIELD          22417 
    3030 
    31 struct MANGOS_DLL_DECL boss_high_interrogator_gerstahnAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_high_interrogator_gerstahnAI : public ScriptedAI 
    3232{ 
    3333    boss_high_interrogator_gerstahnAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_magmus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_WARSTOMP          24375 
    2828 
    29 struct MANGOS_DLL_DECL boss_magmusAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_magmusAI : public ScriptedAI 
    3030{ 
    3131    boss_magmusAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_moira_bronzebeard.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_SMITE             10934 
    3232 
    33 struct MANGOS_DLL_DECL boss_moira_bronzebeardAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_moira_bronzebeardAI : public ScriptedAI 
    3434{ 
    3535    boss_moira_bronzebeardAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_seethrel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_FROSTWARD         15004 
    3131 
    32 struct MANGOS_DLL_DECL boss_seethrelAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_seethrelAI : public ScriptedAI 
    3333{ 
    3434    boss_seethrelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_vilerel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_SHIELD                10901 
    3030 
    31 struct MANGOS_DLL_DECL boss_vilerelAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_vilerelAI : public ScriptedAI 
    3232{ 
    3333    boss_vilerelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_drakkisath.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_THUNDERCLAP               15548               //Not sure if right ID. 23931 would be a harder possibility. 
    3030 
    31 struct MANGOS_DLL_DECL boss_drakkisathAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_drakkisathAI : public ScriptedAI 
    3232{ 
    3333    boss_drakkisathAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_gyth.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_FLAMEBREATH        20712 
    2929 
    30 struct MANGOS_DLL_DECL boss_gythAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_gythAI : public ScriptedAI 
    3131{ 
    3232    boss_gythAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_halycon.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define ADD_1O                  3.124724 
    3333 
    34 struct MANGOS_DLL_DECL boss_halyconAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_halyconAI : public ScriptedAI 
    3535{ 
    3636    boss_halyconAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_highlord_omokk.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_SLOW              22356 
    3333 
    34 struct MANGOS_DLL_DECL boss_highlordomokkAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_highlordomokkAI : public ScriptedAI 
    3535{ 
    3636    boss_highlordomokkAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_mother_smolderweb.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_SUMMON_SPIRE_SPIDERLING   16103 
    2929 
    30 struct MANGOS_DLL_DECL boss_mothersmolderwebAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_mothersmolderwebAI : public ScriptedAI 
    3131{ 
    3232    boss_mothersmolderwebAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_overlord_wyrmthalak.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3939#define ADD_2O 4.613114 
    4040 
    41 struct MANGOS_DLL_DECL boss_overlordwyrmthalakAI : public ScriptedAI 
     41struct TRINITY_DLL_DECL boss_overlordwyrmthalakAI : public ScriptedAI 
    4242{ 
    4343    boss_overlordwyrmthalakAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_pyroguard_emberseer.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_PYROBLAST         17274 
    2929 
    30 struct MANGOS_DLL_DECL boss_pyroguard_emberseerAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_pyroguard_emberseerAI : public ScriptedAI 
    3131{ 
    3232    boss_pyroguard_emberseerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_quartermaster_zigris.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_HOOKEDNET         15609 
    3030 
    31 struct MANGOS_DLL_DECL boss_quatermasterzigrisAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_quatermasterzigrisAI : public ScriptedAI 
    3232{ 
    3333    boss_quatermasterzigrisAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_rend_blackhand.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_THUNDERCLAP               23931               //Not sure if he cast this spell 
    2929 
    30 struct MANGOS_DLL_DECL boss_rend_blackhandAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_rend_blackhandAI : public ScriptedAI 
    3131{ 
    3232    boss_rend_blackhandAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_shadow_hunter_voshgajin.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_CLEAVE            20691 
    2929 
    30 struct MANGOS_DLL_DECL boss_shadowvoshAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_shadowvoshAI : public ScriptedAI 
    3131{ 
    3232    boss_shadowvoshAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_the_beast.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_TERRIFYINGROAR        14100 
    2929 
    30 struct MANGOS_DLL_DECL boss_thebeastAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_thebeastAI : public ScriptedAI 
    3131{ 
    3232    boss_thebeastAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_warmaster_voone.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_THROWAXE          16075 
    3232 
    33 struct MANGOS_DLL_DECL boss_warmastervooneAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_warmastervooneAI : public ScriptedAI 
    3434{ 
    3535    boss_warmastervooneAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_broodlord_lashlayer.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434#define SOUND_LEASH             8287 
    3535 
    36 struct MANGOS_DLL_DECL boss_broodlordAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL boss_broodlordAI : public ScriptedAI 
    3737{ 
    3838    boss_broodlordAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_chromaggus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5858#define TEMP_MUTATE_WHISPER     "[SD2 Debug] You would be mind controlled here!" 
    5959 
    60 struct MANGOS_DLL_DECL boss_chromaggusAI : public ScriptedAI 
     60struct TRINITY_DLL_DECL boss_chromaggusAI : public ScriptedAI 
    6161{ 
    6262    boss_chromaggusAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_ebonroc.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_HEAL                  41386                   //Thea Heal spell of his Shadow 
    3030 
    31 struct MANGOS_DLL_DECL boss_ebonrocAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_ebonrocAI : public ScriptedAI 
    3232{ 
    3333    boss_ebonrocAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_firemaw.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_FLAMEBUFFET       23341 
    2929 
    30 struct MANGOS_DLL_DECL boss_firemawAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_firemawAI : public ScriptedAI 
    3131{ 
    3232    boss_firemawAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_flamegor.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_FRENZY             23342                      //This spell periodically triggers fire nova 
    2929 
    30 struct MANGOS_DLL_DECL boss_flamegorAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_flamegorAI : public ScriptedAI 
    3131{ 
    3232    boss_flamegorAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_nefarian.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7070#define SAY_ROGUE       "Rogues? Stop hiding and face me!" 
    7171 
    72 struct MANGOS_DLL_DECL boss_nefarianAI : public ScriptedAI 
     72struct TRINITY_DLL_DECL boss_nefarianAI : public ScriptedAI 
    7373{ 
    7474    boss_nefarianAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_razorgore.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define SPELL_CONFLAGRATION     23023 
    3737 
    38 struct MANGOS_DLL_DECL boss_razorgoreAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL boss_razorgoreAI : public ScriptedAI 
    3939{ 
    4040    boss_razorgoreAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_vaelastrasz.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define GOSSIP_ITEM         "Start Event <Needs Gossip Text>" 
    4949 
    50 struct MANGOS_DLL_DECL boss_vaelAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_vaelAI : public ScriptedAI 
    5151{ 
    5252    boss_vaelAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_victor_nefarius.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7272//To prevent players from doing the event twice 
    7373 
    74 struct MANGOS_DLL_DECL boss_victor_nefariusAI : public ScriptedAI 
     74struct TRINITY_DLL_DECL boss_victor_nefariusAI : public ScriptedAI 
    7575{ 
    7676    boss_victor_nefariusAI(Creature *c) : ScriptedAI(c) 
     
    195195        DoPlaySoundToSet(m_creature,SOUND_GAMESBEGIN); 
    196196 
    197         //MaNGOS::Singleton<MapManager>::Instance().GetMap(m_creature->GetMapId(), m_creature)->GetPlayers().begin(); 
     197        //Trinity::Singleton<MapManager>::Instance().GetMap(m_creature->GetMapId(), m_creature)->GetPlayers().begin(); 
    198198        /* 
    199199        list <Player*>::iterator i = MapManager::Instance().GetMap(m_creature->GetMapId(), m_creature)->GetPlayers().begin(); 
     
    311311                    DoCast(m_creature,8149); 
    312312 
    313                     //Teleport self to a hiding spot (this causes errors in the mangos log but no real issues) 
     313                    //Teleport self to a hiding spot (this causes errors in the Trinity log but no real issues) 
    314314                    m_creature->Relocate(HIDE_X,HIDE_Y,HIDE_Z,0); 
    315315                    m_creature->SendMonsterMove(HIDE_X,HIDE_Y,HIDE_Z,0,true,0); 
  • trunk/src/bindings/scripts/scripts/zone/blades_edge_mountains/blades_edge_mountains.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838 
    3939//TODO: add support for quest 10512 + creature abilities 
    40 struct MANGOS_DLL_DECL mobs_bladespire_ogreAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL mobs_bladespire_ogreAI : public ScriptedAI 
    4141{ 
    4242    mobs_bladespire_ogreAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    8383#define SPELL_INTANGIBLE_PRESENCE   36513 
    8484 
    85 struct MANGOS_DLL_DECL mobs_nether_drakeAI : public ScriptedAI 
     85struct TRINITY_DLL_DECL mobs_nether_drakeAI : public ScriptedAI 
    8686{ 
    8787    mobs_nether_drakeAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    262262######*/ 
    263263 
    264 struct MANGOS_DLL_DECL npc_daranelleAI : public ScriptedAI 
     264struct TRINITY_DLL_DECL npc_daranelleAI : public ScriptedAI 
    265265{ 
    266266    npc_daranelleAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/blasted_lands/blasted_lands.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/blasted_lands/boss_kruul.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_CAPTURESOUL           21054 
    3333 
    34 struct MANGOS_DLL_DECL boss_kruulAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_kruulAI : public ScriptedAI 
    3535{ 
    3636    boss_kruulAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/bloodmyst_isle/bloodmyst_isle.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636const uint32 possibleSpawns[32] = {17322, 17661, 17496, 17522, 17340, 17352, 17333, 17524, 17654, 17348, 17339, 17345, 17359, 17353, 17336, 17550, 17330, 17701, 17321, 17680, 17325, 17320, 17683, 17342, 17715, 17334, 17341, 17338, 17337, 17346, 17344, 17327}; 
    3737 
    38 struct MANGOS_DLL_DECL mob_webbed_creatureAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL mob_webbed_creatureAI : public ScriptedAI 
    3939{ 
    4040    mob_webbed_creatureAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/burning_steppes/burning_steppes.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232######*/ 
    3333 
    34 struct MANGOS_DLL_DECL npc_ragged_johnAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL npc_ragged_johnAI : public ScriptedAI 
    3535{ 
    3636    npc_ragged_johnAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_aeonus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SOUND_DEATH       10405 
    4343 
    44 struct MANGOS_DLL_DECL boss_aeonusAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_aeonusAI : public ScriptedAI 
    4545{ 
    4646    boss_aeonusAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_chrono_lord_deja.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SOUND_DEATH         10417 
    4343 
    44 struct MANGOS_DLL_DECL boss_chrono_lord_dejaAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_chrono_lord_dejaAI : public ScriptedAI 
    4545{ 
    4646    boss_chrono_lord_dejaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_temporus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4343#define SOUND_DEATH           10447 
    4444 
    45 struct MANGOS_DLL_DECL boss_temporusAI : public ScriptedAI 
     45struct TRINITY_DLL_DECL boss_temporusAI : public ScriptedAI 
    4646{ 
    4747    boss_temporusAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/boss_archimonde.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    147147   Instead, this doomfire will simply stand in one place after spawning and deal damage to any players that 
    148148   are within 3 yards. Another creature called Doomfire Targetting spawns this creature as well as stalks. */ 
    149 struct MANGOS_DLL_DECL mob_doomfireAI : public ScriptedAI 
     149struct TRINITY_DLL_DECL mob_doomfireAI : public ScriptedAI 
    150150{ 
    151151    mob_doomfireAI(Creature* c) : ScriptedAI(c) 
     
    242242 
    243243/* This is the script for the Doomfire Targetting Mob. This mob simply follows players and/or travels in random directions and spawns the actual Doomfire which does damage to anyone that moves close.  */ 
    244 struct MANGOS_DLL_DECL mob_doomfire_targettingAI : public ScriptedAI 
     244struct TRINITY_DLL_DECL mob_doomfire_targettingAI : public ScriptedAI 
    245245{ 
    246246    mob_doomfire_targettingAI(Creature* c) : ScriptedAI(c) 
     
    352352}; 
    353353 
    354 struct MANGOS_DLL_DECL boss_archimondeAI : public ScriptedAI 
     354struct TRINITY_DLL_DECL boss_archimondeAI : public ScriptedAI 
    355355{ 
    356356    boss_archimondeAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjal.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    310310void hyjalAI::Retreat() 
    311311{ 
    312     CellPair pair(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     312    CellPair pair(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    313313    Cell cell(pair); 
    314314    cell.data.Part.reserved = ALL_DISTRICT; 
     
    317317    // First get all creatures. 
    318318    std::list<Creature*> creatures; 
    319     MaNGOS::AllFriendlyCreaturesInGrid creature_check(m_creature); 
    320     MaNGOS::CreatureListSearcher<MaNGOS::AllFriendlyCreaturesInGrid> creature_searcher(creatures, creature_check); 
     319    Trinity::AllFriendlyCreaturesInGrid creature_check(m_creature); 
     320    Trinity::CreatureListSearcher<Trinity::AllFriendlyCreaturesInGrid> creature_searcher(creatures, creature_check); 
    321321    TypeContainerVisitor 
    322         <MaNGOS::CreatureListSearcher<MaNGOS::AllFriendlyCreaturesInGrid>, 
     322        <Trinity::CreatureListSearcher<Trinity::AllFriendlyCreaturesInGrid>, 
    323323        GridTypeMapContainer> creature_visitor(creature_searcher); 
    324324 
    325325    // Then get all Ancient Gem Veins. NOTE: Grid Search will only be able to find those in the grid. 
    326326    std::list<GameObject*> goList; 
    327     MaNGOS::AllGameObjectsWithEntryInGrid go_check(185557); 
    328     MaNGOS::GameObjectListSearcher<MaNGOS::AllGameObjectsWithEntryInGrid> go_search(goList, go_check); 
     327    Trinity::AllGameObjectsWithEntryInGrid go_check(185557); 
     328    Trinity::GameObjectListSearcher<Trinity::AllGameObjectsWithEntryInGrid> go_search(goList, go_check); 
    329329    TypeContainerVisitor 
    330         <MaNGOS::GameObjectListSearcher<MaNGOS::AllGameObjectsWithEntryInGrid>, GridTypeMapContainer> go_visit(go_search); 
     330        <Trinity::GameObjectListSearcher<Trinity::AllGameObjectsWithEntryInGrid>, GridTypeMapContainer> go_visit(go_search); 
    331331 
    332332    CellLock<GridReadGuard> cell_lock(cell, pair); 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.h

    r46 r48  
    217217}; 
    218218 
    219 struct MANGOS_DLL_DECL hyjalAI : public ScriptedAI 
     219struct TRINITY_DLL_DECL hyjalAI : public ScriptedAI 
    220220{ 
    221221    hyjalAI(Creature *c); 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/instance_hyjal.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636*/ 
    3737 
    38 struct MANGOS_DLL_DECL instance_mount_hyjal : public ScriptedInstance 
     38struct TRINITY_DLL_DECL instance_mount_hyjal : public ScriptedInstance 
    3939{ 
    4040    instance_mount_hyjal(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_captain_skarloc.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4646#define SOUND_DEATH         10411 
    4747 
    48 struct MANGOS_DLL_DECL boss_captain_skarlocAI : public ScriptedAI 
     48struct TRINITY_DLL_DECL boss_captain_skarlocAI : public ScriptedAI 
    4949{ 
    5050    boss_captain_skarlocAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_epoch_hunter.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5555#define SPELL_WING_BUFFET           31475 
    5656 
    57 struct MANGOS_DLL_DECL boss_epoch_hunterAI : public ScriptedAI 
     57struct TRINITY_DLL_DECL boss_epoch_hunterAI : public ScriptedAI 
    5858{ 
    5959    boss_epoch_hunterAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_leutenant_drake.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    1818SDName: Boss_Luetenant_Drake 
    1919SD%Complete: 70 
    20 SDComment: Missing proper code for patrolling area after being spawned. Also script for GO (barrels)(missing mangos support) 
     20SDComment: Missing proper code for patrolling area after being spawned. Also script for GO (barrels)(missing Trinity support) 
    2121SDCategory: Caverns of Time, Old Hillsbrad Foothills 
    2222EndScriptData */ 
     
    111111}; 
    112112 
    113 struct MANGOS_DLL_DECL boss_lieutenant_drakeAI : public ScriptedAI 
     113struct TRINITY_DLL_DECL boss_lieutenant_drakeAI : public ScriptedAI 
    114114{ 
    115115    boss_lieutenant_drakeAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/instance_old_hillsbrad.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434#define TARETHA_ENTRY   18887 
    3535 
    36 struct MANGOS_DLL_DECL instance_old_hillsbrad : public ScriptedInstance 
     36struct TRINITY_DLL_DECL instance_old_hillsbrad : public ScriptedInstance 
    3737{ 
    3838    instance_old_hillsbrad(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/old_hillsbrad.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    219219#define SOUND_LEAVE_COMBAT3         10457 
    220220 
    221 struct MANGOS_DLL_DECL npc_thrall_old_hillsbradAI : public npc_escortAI 
     221struct TRINITY_DLL_DECL npc_thrall_old_hillsbradAI : public npc_escortAI 
    222222{ 
    223223    npc_thrall_old_hillsbradAI(Creature *c) : npc_escortAI(c) 
     
    800800#define TARETHA_FREE            "I'm free! Thank you all!" 
    801801 
    802 struct MANGOS_DLL_DECL npc_tarethaAI : public npc_escortAI 
     802struct TRINITY_DLL_DECL npc_tarethaAI : public npc_escortAI 
    803803{ 
    804804    npc_tarethaAI(Creature *c) : npc_escortAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_fathomlord_karathress.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6666 
    6767//Fathom-Lord Karathress AI 
    68 struct MANGOS_DLL_DECL boss_fathomlord_karathressAI : public ScriptedAI 
     68struct TRINITY_DLL_DECL boss_fathomlord_karathressAI : public ScriptedAI 
    6969{ 
    7070    boss_fathomlord_karathressAI(Creature *c) : ScriptedAI(c) 
     
    243243 
    244244//Fathom-Guard Sharkkis AI 
    245 struct MANGOS_DLL_DECL boss_fathomguard_sharkkisAI : public ScriptedAI 
     245struct TRINITY_DLL_DECL boss_fathomguard_sharkkisAI : public ScriptedAI 
    246246{ 
    247247    boss_fathomguard_sharkkisAI(Creature *c) : ScriptedAI(c) 
     
    326326 
    327327//Fathom-Guard Tidalvess AI 
    328 struct MANGOS_DLL_DECL boss_fathomguard_tidalvessAI : public ScriptedAI 
     328struct TRINITY_DLL_DECL boss_fathomguard_tidalvessAI : public ScriptedAI 
    329329{ 
    330330    boss_fathomguard_tidalvessAI(Creature *c) : ScriptedAI(c) 
     
    400400 
    401401//Fathom-Guard Caribdis AI 
    402 struct MANGOS_DLL_DECL boss_fathomguard_caribdisAI : public ScriptedAI 
     402struct TRINITY_DLL_DECL boss_fathomguard_caribdisAI : public ScriptedAI 
    403403{ 
    404404    boss_fathomguard_caribdisAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    8484#define SPAWN_Y_DIFF4               4.72702 
    8585 
    86 struct MANGOS_DLL_DECL boss_hydross_the_unstableAI : public ScriptedAI 
     86struct TRINITY_DLL_DECL boss_hydross_the_unstableAI : public ScriptedAI 
    8787{ 
    8888    boss_hydross_the_unstableAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp

    r46 r48  
    117117 
    118118//Lady Vashj AI 
    119 struct MANGOS_DLL_DECL boss_lady_vashjAI : public ScriptedAI 
     119struct TRINITY_DLL_DECL boss_lady_vashjAI : public ScriptedAI 
    120120{ 
    121121    boss_lady_vashjAI (Creature *c) : ScriptedAI(c) 
     
    526526//Enchanted Elemental 
    527527//If one of them reaches Vashj he will increase her damage done by 5%. 
    528 struct MANGOS_DLL_DECL mob_enchanted_elementalAI : public ScriptedAI 
     528struct TRINITY_DLL_DECL mob_enchanted_elementalAI : public ScriptedAI 
    529529{ 
    530530    mob_enchanted_elementalAI(Creature *c) : ScriptedAI(c) 
     
    586586//Tainted Elemental 
    587587//This mob has 7,900 life, doesn't move, and shoots Poison Bolts at one person anywhere in the area, doing 3,000 nature damage and placing a posion doing 2,000 damage every 2 seconds. He will switch targets often, or sometimes just hang on a single player, but there is nothing you can do about it except heal the damage and kill the Tainted Elemental 
    588 struct MANGOS_DLL_DECL mob_tainted_elementalAI : public ScriptedAI 
     588struct TRINITY_DLL_DECL mob_tainted_elementalAI : public ScriptedAI 
    589589{ 
    590590    mob_tainted_elementalAI(Creature *c) : ScriptedAI(c) 
     
    637637//Fathom Sporebat 
    638638//Toxic Spores: Used in Phase 3 by the Spore Bats, it creates a contaminated green patch of ground, dealing about 2775-3225 nature damage every second to anyone who stands in it. 
    639 struct MANGOS_DLL_DECL mob_fathom_sporebatAI : public ScriptedAI 
     639struct TRINITY_DLL_DECL mob_fathom_sporebatAI : public ScriptedAI 
    640640{ 
    641641    mob_fathom_sporebatAI(Creature *c) : ScriptedAI(c) 
     
    740740} 
    741741 
    742 struct MANGOS_DLL_DECL mob_shield_generator_channelAI : public ScriptedAI 
     742struct TRINITY_DLL_DECL mob_shield_generator_channelAI : public ScriptedAI 
    743743{ 
    744744    mob_shield_generator_channelAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_leotheras_the_blind.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6161 
    6262//Original Leotheras the Blind AI 
    63 struct MANGOS_DLL_DECL boss_leotheras_the_blindAI : public ScriptedAI 
     63struct TRINITY_DLL_DECL boss_leotheras_the_blindAI : public ScriptedAI 
    6464{ 
    6565    boss_leotheras_the_blindAI(Creature *c) : ScriptedAI(c) 
     
    243243 
    244244//Leotheras the Blind Demon Form AI 
    245 struct MANGOS_DLL_DECL boss_leotheras_the_blind_demonformAI : public ScriptedAI 
     245struct TRINITY_DLL_DECL boss_leotheras_the_blind_demonformAI : public ScriptedAI 
    246246{ 
    247247    boss_leotheras_the_blind_demonformAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_morogrim_tidewalker.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    7171 
    7272//Morogrim Tidewalker AI 
    73 struct MANGOS_DLL_DECL boss_morogrim_tidewalkerAI : public ScriptedAI 
     73struct TRINITY_DLL_DECL boss_morogrim_tidewalkerAI : public ScriptedAI 
    7474{ 
    7575    boss_morogrim_tidewalkerAI(Creature *c) : ScriptedAI(c) 
     
    327327 
    328328//Water Globule AI 
    329 struct MANGOS_DLL_DECL mob_water_globuleAI : public ScriptedAI 
     329struct TRINITY_DLL_DECL mob_water_globuleAI : public ScriptedAI 
    330330{ 
    331331    mob_water_globuleAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/instance_serpent_shrine.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636*/ 
    3737 
    38 struct MANGOS_DLL_DECL instance_serpentshrine_cavern : public ScriptedInstance 
     38struct TRINITY_DLL_DECL instance_serpentshrine_cavern : public ScriptedInstance 
    3939{ 
    4040    instance_serpentshrine_cavern(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/slave_pens/boss_rokmar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_hydromancer_thespia.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5252#define SPELL_ENVELOPING_WINDS      31718 
    5353 
    54 struct MANGOS_DLL_DECL boss_thespiaAI : public ScriptedAI 
     54struct TRINITY_DLL_DECL boss_thespiaAI : public ScriptedAI 
    5555{ 
    5656    boss_thespiaAI(Creature *c) : ScriptedAI(c) 
     
    166166#define H_SPELL_WATER_BOLT_VOLLEY   37924 
    167167 
    168 struct MANGOS_DLL_DECL mob_coilfang_waterelementalAI : public ScriptedAI 
     168struct TRINITY_DLL_DECL mob_coilfang_waterelementalAI : public ScriptedAI 
    169169{ 
    170170    mob_coilfang_waterelementalAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_mekgineer_steamrigger.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5959#define ENTRY_STREAMRIGGER_MECHANIC 17951 
    6060 
    61 struct MANGOS_DLL_DECL boss_mekgineer_steamriggerAI : public ScriptedAI 
     61struct TRINITY_DLL_DECL boss_mekgineer_steamriggerAI : public ScriptedAI 
    6262{ 
    6363    boss_mekgineer_steamriggerAI(Creature *c) : ScriptedAI(c) 
     
    213213#define MIN_REPAIR_RANGE            (7.0f)                  //we can stop movement at this range to repair but not required 
    214214 
    215 struct MANGOS_DLL_DECL mob_steamrigger_mechanicAI : public ScriptedAI 
     215struct TRINITY_DLL_DECL mob_steamrigger_mechanicAI : public ScriptedAI 
    216216{ 
    217217    mob_steamrigger_mechanicAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_warlord_kalithresh.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5353#define SPELL_WARLORDS_RAGE_PROC    36453 
    5454 
    55 struct MANGOS_DLL_DECL mob_naga_distillerAI : public ScriptedAI 
     55struct TRINITY_DLL_DECL mob_naga_distillerAI : public ScriptedAI 
    5656{ 
    5757    mob_naga_distillerAI(Creature *c) : ScriptedAI(c) 
     
    9494}; 
    9595 
    96 struct MANGOS_DLL_DECL boss_warlord_kalithreshAI : public ScriptedAI 
     96struct TRINITY_DLL_DECL boss_warlord_kalithreshAI : public ScriptedAI 
    9797{ 
    9898    boss_warlord_kalithreshAI(Creature *c) : ScriptedAI(c) 
     
    159159        Creature* pCreature = NULL; 
    160160 
    161         CellPair pair(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     161        CellPair pair(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    162162        Cell cell(pair); 
    163163        cell.data.Part.reserved = ALL_DISTRICT; 
    164164        cell.SetNoCreate(); 
    165165 
    166         MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck creature_check(*m_creature, entry, true, range); 
    167         MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(pCreature, creature_check); 
    168  
    169         TypeContainerVisitor<MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> creature_searcher(searcher); 
     166        Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck creature_check(*m_creature, entry, true, range); 
     167        Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(pCreature, creature_check); 
     168 
     169        TypeContainerVisitor<Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> creature_searcher(searcher); 
    170170 
    171171        CellLock<GridReadGuard> cell_lock(cell, pair); 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    1818SDName: Instance_Steam_Vault 
    1919SD%Complete: 60 
    20 SDComment: Workaround for opening of Main Chamber door. Mangos does not support scripting of Gameobject as this instance require. 
     20SDComment: Workaround for opening of Main Chamber door. Trinity does not support scripting of Gameobject as this instance require. 
    2121SDCategory: Coilfang Resevoir, The Steamvault 
    2222EndScriptData */ 
     
    3737*/ 
    3838 
    39 struct MANGOS_DLL_DECL instance_steam_vault : public ScriptedInstance 
     39struct TRINITY_DLL_DECL instance_steam_vault : public ScriptedInstance 
    4040{ 
    4141    instance_steam_vault(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_ghazan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_hungarfen.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_ACID_GEYSER   38739 
    2828 
    29 struct MANGOS_DLL_DECL boss_hungarfenAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_hungarfenAI : public ScriptedAI 
    3030{ 
    3131    boss_hungarfenAI(Creature *c) : ScriptedAI(c) 
     
    9494#define SPELL_GROW              31698 
    9595 
    96 struct MANGOS_DLL_DECL mob_underbog_mushroomAI : public ScriptedAI 
     96struct TRINITY_DLL_DECL mob_underbog_mushroomAI : public ScriptedAI 
    9797{ 
    9898    mob_underbog_mushroomAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/darkshore/darkshore.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/deadmines/deadmines.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/deadmines/instance_deadmines.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/dun_morogh/dun_morogh.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434#define SAY_HEAL "Thank you, dear Paladin, you just saved my life." 
    3535 
    36 struct MANGOS_DLL_DECL npc_narm_faulkAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL npc_narm_faulkAI : public ScriptedAI 
    3737{ 
    3838    uint32 lifeTimer; 
  • trunk/src/bindings/scripts/scripts/zone/dustwallow_marsh/dustwallow_marsh.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4040#define SPELL_INTANGIBLE_PRESENCE           43127           //Risen Spirit 
    4141 
    42 struct MANGOS_DLL_DECL mobs_risen_husk_spiritAI : public ScriptedAI 
     42struct TRINITY_DLL_DECL mobs_risen_husk_spiritAI : public ScriptedAI 
    4343{ 
    4444    mobs_risen_husk_spiritAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    107107######*/ 
    108108 
    109 struct MANGOS_DLL_DECL npc_deserter_agitatorAI : public ScriptedAI 
     109struct TRINITY_DLL_DECL npc_deserter_agitatorAI : public ScriptedAI 
    110110{ 
    111111    npc_deserter_agitatorAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/eastern_plaguelands/eastern_plaguelands.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3535//id8532 - diseased flayer 
    3636 
    37 struct MANGOS_DLL_DECL mobs_ghoul_flayerAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL mobs_ghoul_flayerAI : public ScriptedAI 
    3838{ 
    3939    mobs_ghoul_flayerAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    8585#define SPELL_SPIRIT_SPAWNIN    17321 
    8686 
    87 struct MANGOS_DLL_DECL npc_darrowshire_spiritAI : public ScriptedAI 
     87struct TRINITY_DLL_DECL npc_darrowshire_spiritAI : public ScriptedAI 
    8888{ 
    8989    npc_darrowshire_spiritAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/elwynn_forest/elwynn_forest.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434#define SAY_HEAL "Thank you, dear Paladin, you just saved my life." 
    3535 
    36 struct MANGOS_DLL_DECL npc_henze_faulkAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL npc_henze_faulkAI : public ScriptedAI 
    3737{ 
    3838    uint32 lifeTimer; 
  • trunk/src/bindings/scripts/scripts/zone/eversong_woods/eversong_woods.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434######*/ 
    3535 
    36 struct MANGOS_DLL_DECL mobs_mana_tappedAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL mobs_mana_tappedAI : public ScriptedAI 
    3737{ 
    3838    mobs_mana_tappedAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    6161#define QUEST_THE_DWARVEN_SPY 8483 
    6262 
    63 struct MANGOS_DLL_DECL npc_prospector_anvilwardAI : public npc_escortAI 
     63struct TRINITY_DLL_DECL npc_prospector_anvilwardAI : public npc_escortAI 
    6464{ 
    6565    // CreatureAI functions 
  • trunk/src/bindings/scripts/scripts/zone/felwood/felwood.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/feralas/feralas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_gruul.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4040#define SAY_AGGRO               "Come.... and die." 
    4141 
    42 struct MANGOS_DLL_DECL boss_gruulAI : public ScriptedAI 
     42struct TRINITY_DLL_DECL boss_gruulAI : public ScriptedAI 
    4343{ 
    4444    boss_gruulAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_high_king_maulgar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5959 
    6060//High King Maulgar AI 
    61 struct MANGOS_DLL_DECL boss_high_king_maulgarAI : public ScriptedAI 
     61struct TRINITY_DLL_DECL boss_high_king_maulgarAI : public ScriptedAI 
    6262{ 
    6363    boss_high_king_maulgarAI(Creature *c) : ScriptedAI(c) 
     
    221221 
    222222//Olm The Summoner AI 
    223 struct MANGOS_DLL_DECL boss_olm_the_summonerAI : public ScriptedAI 
     223struct TRINITY_DLL_DECL boss_olm_the_summonerAI : public ScriptedAI 
    224224{ 
    225225    boss_olm_the_summonerAI(Creature *c) : ScriptedAI(c) 
     
    307307 
    308308//Kiggler The Crazed AI 
    309 struct MANGOS_DLL_DECL boss_kiggler_the_crazedAI : public ScriptedAI 
     309struct TRINITY_DLL_DECL boss_kiggler_the_crazedAI : public ScriptedAI 
    310310{ 
    311311    boss_kiggler_the_crazedAI(Creature *c) : ScriptedAI(c) 
     
    426426 
    427427//Blindeye The Seer AI 
    428 struct MANGOS_DLL_DECL boss_blindeye_the_seerAI : public ScriptedAI 
     428struct TRINITY_DLL_DECL boss_blindeye_the_seerAI : public ScriptedAI 
    429429{ 
    430430    boss_blindeye_the_seerAI(Creature *c) : ScriptedAI(c) 
     
    524524 
    525525//Krosh Firehand AI 
    526 struct MANGOS_DLL_DECL boss_krosh_firehandAI : public ScriptedAI 
     526struct TRINITY_DLL_DECL boss_krosh_firehandAI : public ScriptedAI 
    527527{ 
    528528    boss_krosh_firehandAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232*/ 
    3333 
    34 struct MANGOS_DLL_DECL instance_gruuls_lair : public ScriptedInstance 
     34struct TRINITY_DLL_DECL instance_gruuls_lair : public ScriptedInstance 
    3535{ 
    3636    instance_gruuls_lair(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_broggok.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SAY_AGGRO "Come intruders...." 
    3333 
    34 struct MANGOS_DLL_DECL boss_broggokAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_broggokAI : public ScriptedAI 
    3535{ 
    3636    boss_broggokAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    8080}; 
    8181 
    82 struct MANGOS_DLL_DECL mob_broggok_poisoncloudAI : public ScriptedAI 
     82struct TRINITY_DLL_DECL mob_broggok_poisoncloudAI : public ScriptedAI 
    8383{ 
    8484    mob_broggok_poisoncloudAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_kelidan_the_breaker.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6161#define SPELL_VORTEX                37370 
    6262 
    63 struct MANGOS_DLL_DECL boss_kelidan_the_breakerAI : public ScriptedAI 
     63struct TRINITY_DLL_DECL boss_kelidan_the_breakerAI : public ScriptedAI 
    6464{ 
    6565    boss_kelidan_the_breakerAI(Creature *c) : ScriptedAI(c) 
     
    185185                                                            //when engaged all channelers must stop, trigger yell (SAY_ADD_AGGRO_*), and engage. 
    186186 
    187 struct MANGOS_DLL_DECL mob_shadowmoon_channelerAI : public ScriptedAI 
     187struct TRINITY_DLL_DECL mob_shadowmoon_channelerAI : public ScriptedAI 
    188188{ 
    189189    mob_shadowmoon_channelerAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_the_maker.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4444#define SOUND_DIE           10291 
    4545 
    46 struct MANGOS_DLL_DECL boss_the_makerAI : public ScriptedAI 
     46struct TRINITY_DLL_DECL boss_the_makerAI : public ScriptedAI 
    4747{ 
    4848    boss_the_makerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_omor_the_unscarred.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5555#define SOUND_WIPE                  10283 
    5656 
    57 struct MANGOS_DLL_DECL boss_omor_the_unscarredAI : public ScriptedAI 
     57struct TRINITY_DLL_DECL boss_omor_the_unscarredAI : public ScriptedAI 
    5858{ 
    5959    boss_omor_the_unscarredAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_watchkeeper_gargolmar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5151#define SPELL_RETALIATION       22857 
    5252 
    53 struct MANGOS_DLL_DECL boss_watchkeeper_gargolmarAI : public ScriptedAI 
     53struct TRINITY_DLL_DECL boss_watchkeeper_gargolmarAI : public ScriptedAI 
    5454{ 
    5555    boss_watchkeeper_gargolmarAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/boss_magtheridon.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    9292uint32 RandomSound[] = {10247, 10248, 10249, 10250, 10251, 10252}; 
    9393 
    94 struct MANGOS_DLL_DECL boss_magtheridonAI : public ScriptedAI 
     94struct TRINITY_DLL_DECL boss_magtheridonAI : public ScriptedAI 
    9595{ 
    9696    boss_magtheridonAI(Creature *c) : ScriptedAI(c) 
     
    268268}; 
    269269 
    270 struct MANGOS_DLL_DECL mob_hellfire_channelerAI : public ScriptedAI 
     270struct TRINITY_DLL_DECL mob_hellfire_channelerAI : public ScriptedAI 
    271271{ 
    272272    mob_hellfire_channelerAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/instance_magtheridons_lair.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525#include "def_magtheridons_lair.h" 
    2626 
    27 struct MANGOS_DLL_DECL instance_magtheridons_lair : public ScriptedInstance 
     27struct TRINITY_DLL_DECL instance_magtheridons_lair : public ScriptedInstance 
    2828{ 
    2929    instance_magtheridons_lair(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_nethekurse.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    8989#define SPELL_TEMPORARY_VISUAL      39312                   // this is wrong, a temporary solution. spell consumption already has the purple visual, but doesn't display as it should 
    9090 
    91 struct MANGOS_DLL_DECL boss_grand_warlock_nethekurseAI : public ScriptedAI 
     91struct TRINITY_DLL_DECL boss_grand_warlock_nethekurseAI : public ScriptedAI 
    9292{ 
    9393    boss_grand_warlock_nethekurseAI(Creature *c) : ScriptedAI(c) 
     
    363363}; 
    364364 
    365 struct MANGOS_DLL_DECL mob_fel_orc_convertAI : public ScriptedAI 
     365struct TRINITY_DLL_DECL mob_fel_orc_convertAI : public ScriptedAI 
    366366{ 
    367367    mob_fel_orc_convertAI(Creature *c) : ScriptedAI(c) 
     
    431431 
    432432//NOTE: this creature are also summoned by other spells, for different creatures 
    433 struct MANGOS_DLL_DECL mob_lesser_shadow_fissureAI : public ScriptedAI 
     433struct TRINITY_DLL_DECL mob_lesser_shadow_fissureAI : public ScriptedAI 
    434434{ 
    435435    mob_lesser_shadow_fissureAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_warbringer_omrogg.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    100100#define H_SPELL_BURNING_MAUL        36056 
    101101 
    102 struct MANGOS_DLL_DECL mob_omrogg_headsAI : public ScriptedAI 
     102struct TRINITY_DLL_DECL mob_omrogg_headsAI : public ScriptedAI 
    103103{ 
    104104    mob_omrogg_headsAI(Creature *c) : ScriptedAI(c) { Reset(); } 
     
    130130}; 
    131131 
    132 struct MANGOS_DLL_DECL boss_warbringer_omroggAI : public ScriptedAI 
     132struct TRINITY_DLL_DECL boss_warbringer_omroggAI : public ScriptedAI 
    133133{ 
    134134    boss_warbringer_omroggAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/instance_shattered_halls.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define DOOR_NETHEKURSE     1 
    3030 
    31 struct MANGOS_DLL_DECL instance_shattered_halls : public ScriptedInstance 
     31struct TRINITY_DLL_DECL instance_shattered_halls : public ScriptedInstance 
    3232{ 
    3333    instance_shattered_halls(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/boss_doomlord_kazzak.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3333#define SPELL_TWISTEDREFLECTION         21063 
    3434 
    35 struct MANGOS_DLL_DECL boss_doomlordkazzakAI : public ScriptedAI 
     35struct TRINITY_DLL_DECL boss_doomlordkazzakAI : public ScriptedAI 
    3636{ 
    3737    boss_doomlordkazzakAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/hellfire_peninsula.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/ironforge/ironforge.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/isle_of_queldanas/isle_of_queldanas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7070#define SPELL_CONVERT_CREDIT    45009 
    7171 
    72 struct MANGOS_DLL_DECL npc_converted_sentryAI : public ScriptedAI 
     72struct TRINITY_DLL_DECL npc_converted_sentryAI : public ScriptedAI 
    7373{ 
    7474    npc_converted_sentryAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_curator.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6161#define SPELL_BERSERK                   26662 
    6262 
    63 struct MANGOS_DLL_DECL boss_curatorAI : public ScriptedAI 
     63struct TRINITY_DLL_DECL boss_curatorAI : public ScriptedAI 
    6464{ 
    6565    boss_curatorAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_maiden_of_virtue.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4545#define SOUND_DEATH             9206 
    4646 
    47 struct MANGOS_DLL_DECL boss_maiden_of_virtueAI : public ScriptedAI 
     47struct TRINITY_DLL_DECL boss_maiden_of_virtueAI : public ScriptedAI 
    4848{ 
    4949    boss_maiden_of_virtueAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6262#define SUMMON_ATTUMEN 15550 
    6363 
    64 struct MANGOS_DLL_DECL boss_midnightAI : public ScriptedAI 
     64struct TRINITY_DLL_DECL boss_midnightAI : public ScriptedAI 
    6565{ 
    6666    boss_midnightAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    192192} 
    193193 
    194 struct MANGOS_DLL_DECL boss_attumenAI : public ScriptedAI 
     194struct TRINITY_DLL_DECL boss_attumenAI : public ScriptedAI 
    195195{ 
    196196    boss_attumenAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_moroes.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7373}; 
    7474 
    75 struct MANGOS_DLL_DECL boss_moroesAI : public ScriptedAI 
     75struct TRINITY_DLL_DECL boss_moroesAI : public ScriptedAI 
    7676{ 
    7777    boss_moroesAI(Creature *c) : ScriptedAI(c) 
     
    377377}; 
    378378 
    379 struct MANGOS_DLL_DECL boss_moroes_guestAI : public ScriptedAI 
     379struct TRINITY_DLL_DECL boss_moroes_guestAI : public ScriptedAI 
    380380{ 
    381381    ScriptedInstance* pInstance; 
     
    445445#define SPELL_SHADOWFORM     29406 
    446446 
    447 struct MANGOS_DLL_DECL boss_baroness_dorothea_millstipeAI : public boss_moroes_guestAI 
     447struct TRINITY_DLL_DECL boss_baroness_dorothea_millstipeAI : public boss_moroes_guestAI 
    448448{ 
    449449    //Shadow Priest 
     
    502502#define SPELL_SEALOFCOMMAND         29385 
    503503 
    504 struct MANGOS_DLL_DECL boss_baron_rafe_dreugerAI : public boss_moroes_guestAI 
     504struct TRINITY_DLL_DECL boss_baron_rafe_dreugerAI : public boss_moroes_guestAI 
    505505{ 
    506506    //Retr Pally 
     
    553553#define SPELL_PWSHIELD              29408 
    554554 
    555 struct MANGOS_DLL_DECL boss_lady_catriona_von_indiAI : public boss_moroes_guestAI 
     555struct TRINITY_DLL_DECL boss_lady_catriona_von_indiAI : public boss_moroes_guestAI 
    556556{ 
    557557    //Holy Priest 
     
    623623#define SPELL_DIVINESHIELD          41367 
    624624 
    625 struct MANGOS_DLL_DECL boss_lady_keira_berrybuckAI : public boss_moroes_guestAI 
     625struct TRINITY_DLL_DECL boss_lady_keira_berrybuckAI : public boss_moroes_guestAI 
    626626{ 
    627627    //Holy Pally 
     
    690690#define SPELL_WHIRLWIND         29573 
    691691 
    692 struct MANGOS_DLL_DECL boss_lord_robin_darisAI : public boss_moroes_guestAI 
     692struct TRINITY_DLL_DECL boss_lord_robin_darisAI : public boss_moroes_guestAI 
    693693{ 
    694694    //Arms Warr 
     
    740740#define SPELL_SHIELDWALL        29390 
    741741 
    742 struct MANGOS_DLL_DECL boss_lord_crispin_ferenceAI : public boss_moroes_guestAI 
     742struct TRINITY_DLL_DECL boss_lord_crispin_ferenceAI : public boss_moroes_guestAI 
    743743{ 
    744744    //Arms Warr 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_netherspite.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_NETHERBREATH          36631 
    3030 
    31 //Beams (no idea how these are going to work in Mangos) 
     31//Beams (no idea how these are going to work in Trinity) 
    3232#define SPELL_DOMINANCE_ENEMY       30423 
    3333#define SPELL_DOMINANCE_SELF        30468 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_nightbane.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_prince_malchezaar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    101101 
    102102//---------Infernal code first 
    103 struct MANGOS_DLL_DECL netherspite_infernalAI : public ScriptedAI 
     103struct TRINITY_DLL_DECL netherspite_infernalAI : public ScriptedAI 
    104104{ 
    105105    netherspite_infernalAI(Creature *c) : ScriptedAI(c) , 
     
    160160}; 
    161161 
    162 struct MANGOS_DLL_DECL boss_malchezaarAI : public ScriptedAI 
     162struct TRINITY_DLL_DECL boss_malchezaarAI : public ScriptedAI 
    163163{ 
    164164    boss_malchezaarAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_shade_of_aran.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    118118}; 
    119119 
    120 struct MANGOS_DLL_DECL boss_aranAI : public ScriptedAI 
     120struct TRINITY_DLL_DECL boss_aranAI : public ScriptedAI 
    121121{ 
    122122    boss_aranAI(Creature *c) : ScriptedAI(c) 
     
    596596}; 
    597597 
    598 struct MANGOS_DLL_DECL water_elementalAI : public ScriptedAI 
     598struct TRINITY_DLL_DECL water_elementalAI : public ScriptedAI 
    599599{ 
    600600    water_elementalAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7575}; 
    7676 
    77 struct MANGOS_DLL_DECL mob_kilrekAI : public ScriptedAI 
     77struct TRINITY_DLL_DECL mob_kilrekAI : public ScriptedAI 
    7878{ 
    7979    mob_kilrekAI(Creature *c) : ScriptedAI(c) 
     
    144144}; 
    145145 
    146 struct MANGOS_DLL_DECL mob_demon_chainAI : public ScriptedAI 
     146struct TRINITY_DLL_DECL mob_demon_chainAI : public ScriptedAI 
    147147{ 
    148148    mob_demon_chainAI(Creature *c) : ScriptedAI(c) 
     
    173173}; 
    174174 
    175 struct MANGOS_DLL_DECL boss_terestianAI : public ScriptedAI 
     175struct TRINITY_DLL_DECL boss_terestianAI : public ScriptedAI 
    176176{ 
    177177    boss_terestianAI(Creature *c) : ScriptedAI(c) 
     
    381381}; 
    382382 
    383 struct MANGOS_DLL_DECL mob_karazhan_impAI : public ScriptedAI 
     383struct TRINITY_DLL_DECL mob_karazhan_impAI : public ScriptedAI 
    384384{ 
    385385    mob_karazhan_impAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/bosses_opera.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    120120}; 
    121121 
    122 struct MANGOS_DLL_DECL boss_dorotheeAI : public ScriptedAI 
     122struct TRINITY_DLL_DECL boss_dorotheeAI : public ScriptedAI 
    123123{ 
    124124    boss_dorotheeAI(Creature* c) : ScriptedAI(c) 
     
    221221}; 
    222222 
    223 struct MANGOS_DLL_DECL mob_titoAI : public ScriptedAI 
     223struct TRINITY_DLL_DECL mob_titoAI : public ScriptedAI 
    224224{ 
    225225    mob_titoAI(Creature* c) : ScriptedAI(c) 
     
    284284} 
    285285 
    286 struct MANGOS_DLL_DECL boss_strawmanAI : public ScriptedAI 
     286struct TRINITY_DLL_DECL boss_strawmanAI : public ScriptedAI 
    287287{ 
    288288    boss_strawmanAI(Creature* c) : ScriptedAI(c) 
     
    376376}; 
    377377 
    378 struct MANGOS_DLL_DECL boss_tinheadAI : public ScriptedAI 
     378struct TRINITY_DLL_DECL boss_tinheadAI : public ScriptedAI 
    379379{ 
    380380    boss_tinheadAI(Creature* c) : ScriptedAI(c) 
     
    471471}; 
    472472 
    473 struct MANGOS_DLL_DECL boss_roarAI : public ScriptedAI 
     473struct TRINITY_DLL_DECL boss_roarAI : public ScriptedAI 
    474474{ 
    475475    boss_roarAI(Creature* c) : ScriptedAI(c) 
     
    565565}; 
    566566 
    567 struct MANGOS_DLL_DECL boss_croneAI : public ScriptedAI 
     567struct TRINITY_DLL_DECL boss_croneAI : public ScriptedAI 
    568568{ 
    569569    boss_croneAI(Creature* c) : ScriptedAI(c) 
     
    640640}; 
    641641 
    642 struct MANGOS_DLL_DECL mob_cycloneAI : public ScriptedAI 
     642struct TRINITY_DLL_DECL mob_cycloneAI : public ScriptedAI 
    643643{ 
    644644    mob_cycloneAI(Creature* c) : ScriptedAI(c) 
     
    763763} 
    764764 
    765 struct MANGOS_DLL_DECL boss_bigbadwolfAI : public ScriptedAI 
     765struct TRINITY_DLL_DECL boss_bigbadwolfAI : public ScriptedAI 
    766766{ 
    767767    boss_bigbadwolfAI(Creature* c) : ScriptedAI(c) 
     
    971971}; 
    972972 
    973 struct MANGOS_DLL_DECL boss_julianneAI : public ScriptedAI 
     973struct TRINITY_DLL_DECL boss_julianneAI : public ScriptedAI 
    974974{ 
    975975    boss_julianneAI(Creature* c) : ScriptedAI(c) 
     
    10711071}; 
    10721072 
    1073 struct MANGOS_DLL_DECL boss_romuloAI : public ScriptedAI 
     1073struct TRINITY_DLL_DECL boss_romuloAI : public ScriptedAI 
    10741074{ 
    10751075    boss_romuloAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/instance_karazhan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    414111 - Netherbane 
    4242*/ 
    43 struct MANGOS_DLL_DECL instance_karazhan : public ScriptedInstance 
     43struct TRINITY_DLL_DECL instance_karazhan : public ScriptedInstance 
    4444{ 
    4545    instance_karazhan(Map* map) : ScriptedInstance(map) 
  • trunk/src/bindings/scripts/scripts/zone/karazhan/karazhan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    106106#define SPAWN_O             4.738 
    107107 
    108 struct MANGOS_DLL_DECL npc_barnesAI : public npc_escortAI 
     108struct TRINITY_DLL_DECL npc_barnesAI : public npc_escortAI 
    109109{ 
    110110    npc_barnesAI(Creature* c) : npc_escortAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/loch_modan/loch_modan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_felblood_kaelthas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    9090#define LOCATION_Z      -16.727455 
    9191 
    92 struct MANGOS_DLL_DECL boss_felblood_kaelthasAI : public ScriptedAI 
     92struct TRINITY_DLL_DECL boss_felblood_kaelthasAI : public ScriptedAI 
    9393{ 
    9494    boss_felblood_kaelthasAI(Creature* c) : ScriptedAI(c) 
     
    390390}; 
    391391 
    392 struct MANGOS_DLL_DECL mob_felkael_flamestrikeAI : public ScriptedAI 
     392struct TRINITY_DLL_DECL mob_felkael_flamestrikeAI : public ScriptedAI 
    393393{ 
    394394    mob_felkael_flamestrikeAI(Creature *c) : ScriptedAI(c) 
     
    425425}; 
    426426 
    427 struct MANGOS_DLL_DECL mob_felkael_phoenixAI : public ScriptedAI 
     427struct TRINITY_DLL_DECL mob_felkael_phoenixAI : public ScriptedAI 
    428428{ 
    429429    mob_felkael_phoenixAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    459459}; 
    460460 
    461 struct MANGOS_DLL_DECL mob_felkael_phoenix_eggAI : public ScriptedAI 
     461struct TRINITY_DLL_DECL mob_felkael_phoenix_eggAI : public ScriptedAI 
    462462{ 
    463463    mob_felkael_phoenix_eggAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    480480}; 
    481481 
    482 struct MANGOS_DLL_DECL mob_arcane_sphereAI : public ScriptedAI 
     482struct TRINITY_DLL_DECL mob_arcane_sphereAI : public ScriptedAI 
    483483{ 
    484484    mob_arcane_sphereAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_priestess_delrissa.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    9797}; 
    9898 
    99 struct MANGOS_DLL_DECL boss_priestess_delrissaAI : public ScriptedAI 
     99struct TRINITY_DLL_DECL boss_priestess_delrissaAI : public ScriptedAI 
    100100{ 
    101101    boss_priestess_delrissaAI(Creature* c) : ScriptedAI(c) 
     
    346346#define SPELL_HEALING_POTION    15503 
    347347 
    348 struct MANGOS_DLL_DECL boss_priestess_guestAI : public ScriptedAI 
     348struct TRINITY_DLL_DECL boss_priestess_guestAI : public ScriptedAI 
    349349{ 
    350350    boss_priestess_guestAI(Creature* c) : ScriptedAI(c) 
     
    445445#define SPELL_EVISCERATE         27611 
    446446 
    447 struct MANGOS_DLL_DECL boss_kagani_nightstrikeAI : public boss_priestess_guestAI 
     447struct TRINITY_DLL_DECL boss_kagani_nightstrikeAI : public boss_priestess_guestAI 
    448448{ 
    449449    //Rogue 
     
    532532//#define CREATURE_FIZZLE              24656 
    533533 
    534 /*struct MANGOS_DLL_DECL mob_fizzleAI : public ScriptedAI 
     534/*struct TRINITY_DLL_DECL mob_fizzleAI : public ScriptedAI 
    535535{ 
    536536    mob_fizzleAI(Creature *c) : ScriptedAI(c) 
     
    561561};*/ 
    562562 
    563 struct MANGOS_DLL_DECL boss_ellris_duskhallowAI : public boss_priestess_guestAI 
     563struct TRINITY_DLL_DECL boss_ellris_duskhallowAI : public boss_priestess_guestAI 
    564564{ 
    565565    //Warlock 
     
    657657#define SPELL_SNAP_KICK            46182 
    658658 
    659 struct MANGOS_DLL_DECL boss_eramas_brightblazeAI : public boss_priestess_guestAI 
     659struct TRINITY_DLL_DECL boss_eramas_brightblazeAI : public boss_priestess_guestAI 
    660660{ 
    661661    //Monk 
     
    704704#define SPELL_BLINK                 14514 
    705705 
    706 struct MANGOS_DLL_DECL boss_yazzaiAI : public boss_priestess_guestAI 
     706struct TRINITY_DLL_DECL boss_yazzaiAI : public boss_priestess_guestAI 
    707707{ 
    708708    //Mage 
     
    817817#define SPELL_MORTAL_STRIKE          44268 
    818818 
    819 struct MANGOS_DLL_DECL boss_warlord_salarisAI : public boss_priestess_guestAI 
     819struct TRINITY_DLL_DECL boss_warlord_salarisAI : public boss_priestess_guestAI 
    820820{ 
    821821    //Warrior 
     
    917917#define CREATURE_SLIVER             24552 
    918918 
    919 /*struct MANGOS_DLL_DECL mob_sliverAI : public ScriptedAI 
     919/*struct TRINITY_DLL_DECL mob_sliverAI : public ScriptedAI 
    920920{ 
    921921    mob_sliverAI(Creature *c) : ScriptedAI(c) 
     
    935935};*/ 
    936936 
    937 struct MANGOS_DLL_DECL boss_garaxxasAI : public boss_priestess_guestAI 
     937struct TRINITY_DLL_DECL boss_garaxxasAI : public boss_priestess_guestAI 
    938938{ 
    939939    //Hunter 
     
    10541054#define SPELL_EARTHBIND_TOTEM        15786 
    10551055 
    1056 struct MANGOS_DLL_DECL boss_apokoAI : public boss_priestess_guestAI 
     1056struct TRINITY_DLL_DECL boss_apokoAI : public boss_priestess_guestAI 
    10571057{ 
    10581058    //Shaman 
     
    11491149#define CREATURE_EXPLOSIVE_SHEEP        24715 
    11501150 
    1151 struct MANGOS_DLL_DECL boss_zelfanAI : public boss_priestess_guestAI 
     1151struct TRINITY_DLL_DECL boss_zelfanAI : public boss_priestess_guestAI 
    11521152{ 
    11531153    //Engineer 
     
    12171217}; 
    12181218 
    1219 //struct MANGOS_DLL_DECL mob_high_explosive_sheepAI : public ScriptedAI 
     1219//struct TRINITY_DLL_DECL mob_high_explosive_sheepAI : public ScriptedAI 
    12201220//{ 
    12211221//    mob_high_explosive_sheepAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_selin_fireheart.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6060#define CREATURE_FEL_CRYSTAL            24722 
    6161 
    62 struct MANGOS_DLL_DECL boss_selin_fireheartAI : public ScriptedAI 
     62struct TRINITY_DLL_DECL boss_selin_fireheartAI : public ScriptedAI 
    6363{ 
    6464    boss_selin_fireheartAI(Creature* c) : ScriptedAI(c) 
     
    109109                { 
    110110                    if(!pUnit->isAlive()) 
    111                         ((Creature*)pUnit)->Respawn();      // Let MaNGOS handle setting death state, etc. 
     111                        ((Creature*)pUnit)->Respawn();      // Let TrinIty handle setting death state, etc. 
    112112 
    113113                    // Only need to set unselectable flag. You can't attack unselectable units so non_attackable flag is not necessary here. 
     
    348348}; 
    349349 
    350 struct MANGOS_DLL_DECL mob_fel_crystalAI : public ScriptedAI 
     350struct TRINITY_DLL_DECL mob_fel_crystalAI : public ScriptedAI 
    351351{ 
    352352    mob_fel_crystalAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_vexallus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5252#define CREATURE_PURE_ENERGY        24745 
    5353 
    54 struct MANGOS_DLL_DECL boss_vexallusAI : public ScriptedAI 
     54struct TRINITY_DLL_DECL boss_vexallusAI : public ScriptedAI 
    5555{ 
    5656    boss_vexallusAI(Creature *c) : ScriptedAI(c) 
     
    182182}; 
    183183 
    184 struct MANGOS_DLL_DECL mob_pure_energyAI : public ScriptedAI 
     184struct TRINITY_DLL_DECL mob_pure_energyAI : public ScriptedAI 
    185185{ 
    186186    mob_pure_energyAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/magisters_terrace/instance_magisters_terrace.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434*/ 
    3535 
    36 struct MANGOS_DLL_DECL instance_magisters_terrace : public ScriptedInstance 
     36struct TRINITY_DLL_DECL instance_magisters_terrace : public ScriptedInstance 
    3737{ 
    3838    instance_magisters_terrace(Map* map) : ScriptedInstance(map) 
  • trunk/src/bindings/scripts/scripts/zone/maraudon/boss_celebras_the_cursed.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_CORRUPT_FORCES        21968 
    2929 
    30 struct MANGOS_DLL_DECL celebras_the_cursedAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL celebras_the_cursedAI : public ScriptedAI 
    3131{ 
    3232    celebras_the_cursedAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/maraudon/boss_landslide.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_LANDSLIDE         21808 
    2929 
    30 struct MANGOS_DLL_DECL boss_landslideAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_landslideAI : public ScriptedAI 
    3131{ 
    3232    boss_landslideAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/maraudon/boss_noxxion.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_UPPERCUT              22916 
    2828 
    29 struct MANGOS_DLL_DECL boss_noxxionAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_noxxionAI : public ScriptedAI 
    3030{ 
    3131    boss_noxxionAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/maraudon/boss_princess_theradras.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_REPULSIVEGAZE         21869 
    3030 
    31 struct MANGOS_DLL_DECL boss_ptheradrasAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_ptheradrasAI : public ScriptedAI 
    3232{ 
    3333    boss_ptheradrasAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_baron_geddon.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_ARMAGEDDOM            20479 
    3030 
    31 struct MANGOS_DLL_DECL boss_baron_geddonAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_baron_geddonAI : public ScriptedAI 
    3232{ 
    3333    boss_baron_geddonAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_garr.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3333#define SPELL_IMMOLATE              20294 
    3434 
    35 struct MANGOS_DLL_DECL boss_garrAI : public ScriptedAI 
     35struct TRINITY_DLL_DECL boss_garrAI : public ScriptedAI 
    3636{ 
    3737    boss_garrAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    7777}; 
    7878 
    79 struct MANGOS_DLL_DECL mob_fireswornAI : public ScriptedAI 
     79struct TRINITY_DLL_DECL mob_fireswornAI : public ScriptedAI 
    8080{ 
    8181    mob_fireswornAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_gehennas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_GEHENNASCURSE         19716 
    2929 
    30 struct MANGOS_DLL_DECL boss_gehennasAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_gehennasAI : public ScriptedAI 
    3131{ 
    3232    boss_gehennasAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_golemagg.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737#define EMOTE_AEGIS                     "refuses to die while its master is in trouble" 
    3838 
    39 struct MANGOS_DLL_DECL boss_golemaggAI : public ScriptedAI 
     39struct TRINITY_DLL_DECL boss_golemaggAI : public ScriptedAI 
    4040{ 
    4141    boss_golemaggAI(Creature *c) : ScriptedAI(c) 
     
    117117}; 
    118118 
    119 struct MANGOS_DLL_DECL mob_core_ragerAI : public ScriptedAI 
     119struct TRINITY_DLL_DECL mob_core_ragerAI : public ScriptedAI 
    120120{ 
    121121    mob_core_ragerAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_lucifron.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_SHADOWSHOCK   20603 
    2929 
    30 struct MANGOS_DLL_DECL boss_lucifronAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_lucifronAI : public ScriptedAI 
    3131{ 
    3232    boss_lucifronAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_magmadar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_LAVABOMB_ALT          19428                   //This is the spell that the lava bomb casts 
    3131 
    32 struct MANGOS_DLL_DECL boss_magmadarAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_magmadarAI : public ScriptedAI 
    3333{ 
    3434    boss_magmadarAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_majordomo_executus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5050#define SOUND_ARRIVAL1  8041 
    5151 
    52 struct MANGOS_DLL_DECL boss_majordomoAI : public ScriptedAI 
     52struct TRINITY_DLL_DECL boss_majordomoAI : public ScriptedAI 
    5353{ 
    5454    boss_majordomoAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_ragnaros.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    9797#define ADD_8O 4.693108 
    9898 
    99 struct MANGOS_DLL_DECL boss_ragnarosAI : public Scripted_NoMovementAI 
     99struct TRINITY_DLL_DECL boss_ragnarosAI : public Scripted_NoMovementAI 
    100100{ 
    101101    boss_ragnarosAI(Creature *c) : Scripted_NoMovementAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_shazzrah.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_COUNTERSPELL              19715 
    3030 
    31 struct MANGOS_DLL_DECL boss_shazzrahAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_shazzrahAI : public ScriptedAI 
    3232{ 
    3333    boss_shazzrahAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/boss_sulfuron_harbinger.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define SPELL_IMMOLATE              20294 
    3737 
    38 struct MANGOS_DLL_DECL boss_sulfuronAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL boss_sulfuronAI : public ScriptedAI 
    3939{ 
    4040    boss_sulfuronAI(Creature *c) : ScriptedAI(c) 
     
    124124}; 
    125125 
    126 struct MANGOS_DLL_DECL mob_flamewaker_priestAI : public ScriptedAI 
     126struct TRINITY_DLL_DECL mob_flamewaker_priestAI : public ScriptedAI 
    127127{ 
    128128    mob_flamewaker_priestAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/instance_molten_core.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737#define ID_FLAMEWAKERPRIEST     11662 
    3838 
    39 class MANGOS_DLL_SPEC instance_molten_core : public ScriptedInstance 
     39class TRINITY_DLL_SPEC instance_molten_core : public ScriptedInstance 
    4040{ 
    4141    public: 
  • trunk/src/bindings/scripts/scripts/zone/molten_core/molten_core.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/moonglade/moonglade.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/mulgore/mulgore.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/nagrand/nagrand.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838######*/ 
    3939 
    40 struct MANGOS_DLL_DECL mob_shattered_rumblerAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL mob_shattered_rumblerAI : public ScriptedAI 
    4141{ 
    4242    bool Spawn; 
     
    8585#define LUMP_DEFEAT "OK, OK! Lump give up!" 
    8686 
    87 struct MANGOS_DLL_DECL mob_lumpAI : public ScriptedAI 
     87struct TRINITY_DLL_DECL mob_lumpAI : public ScriptedAI 
    8888{ 
    8989    mob_lumpAI(Creature *c) : ScriptedAI(c) 
     
    219219####*/ 
    220220 
    221 struct MANGOS_DLL_DECL mob_sunspring_villagerAI : public ScriptedAI 
     221struct TRINITY_DLL_DECL mob_sunspring_villagerAI : public ScriptedAI 
    222222{ 
    223223    mob_sunspring_villagerAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    484484######*/ 
    485485 
    486 struct MANGOS_DLL_DECL npc_creditmarker_visit_with_ancestorsAI : public ScriptedAI 
     486struct TRINITY_DLL_DECL npc_creditmarker_visit_with_ancestorsAI : public ScriptedAI 
    487487{ 
    488488    npc_creditmarker_visit_with_ancestorsAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_anubrekhan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5151#define SPELL_SELF_SPAWN_10 28864                           //This is used by the crypt guards when they die 
    5252 
    53 struct MANGOS_DLL_DECL boss_anubrekhanAI : public ScriptedAI 
     53struct TRINITY_DLL_DECL boss_anubrekhanAI : public ScriptedAI 
    5454{ 
    5555    boss_anubrekhanAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_faerlina.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define SPELL_ENRAGE                26527 
    4949 
    50 struct MANGOS_DLL_DECL boss_faerlinaAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_faerlinaAI : public ScriptedAI 
    5151{ 
    5252    boss_faerlinaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_feugen.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gluth.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6666#define ADD_9Z 297.423 
    6767 
    68 struct MANGOS_DLL_DECL boss_gluthAI : public ScriptedAI 
     68struct TRINITY_DLL_DECL boss_gluthAI : public ScriptedAI 
    6969{ 
    7070    boss_gluthAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gothik.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_grobbulus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_heigan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_highlord_mograine.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5656#define SPIRIT_OF_MOGRAINE         16775 
    5757 
    58 struct MANGOS_DLL_DECL boss_highlord_mograineAI : public ScriptedAI 
     58struct TRINITY_DLL_DECL boss_highlord_mograineAI : public ScriptedAI 
    5959{ 
    6060    boss_highlord_mograineAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_kelthuzad.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    169169#define SOUND_DEATH                 8814 
    170170 
    171 struct MANGOS_DLL_DECL boss_kelthuzadAI : public ScriptedAI 
     171struct TRINITY_DLL_DECL boss_kelthuzadAI : public ScriptedAI 
    172172{ 
    173173    boss_kelthuzadAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_lady_blaumeux.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5050#define SPIRIT_OF_BLAUMEUX        16776 
    5151 
    52 struct MANGOS_DLL_DECL boss_lady_blaumeuxAI : public ScriptedAI 
     52struct TRINITY_DLL_DECL boss_lady_blaumeuxAI : public ScriptedAI 
    5353{ 
    5454    boss_lady_blaumeuxAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_loatheb.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6363#define ADD_3Z 274.280 
    6464 
    65 struct MANGOS_DLL_DECL boss_loathebAI : public ScriptedAI 
     65struct TRINITY_DLL_DECL boss_loathebAI : public ScriptedAI 
    6666{ 
    6767    boss_loathebAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_maexxna.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4343#define LOC_Z3    302.384 
    4444 
    45 struct MANGOS_DLL_DECL mob_webwrapAI : public ScriptedAI 
     45struct TRINITY_DLL_DECL mob_webwrapAI : public ScriptedAI 
    4646{ 
    4747    mob_webwrapAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    8989}; 
    9090 
    91 struct MANGOS_DLL_DECL boss_maexxnaAI : public ScriptedAI 
     91struct TRINITY_DLL_DECL boss_maexxnaAI : public ScriptedAI 
    9292{ 
    9393    boss_maexxnaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_noth.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5252// IMPORTANT: BALCONY TELEPORT NOT ADDED YET! WILL BE ADDED SOON! 
    5353 
    54 struct MANGOS_DLL_DECL boss_nothAI : public ScriptedAI 
     54struct TRINITY_DLL_DECL boss_nothAI : public ScriptedAI 
    5555{ 
    5656    boss_nothAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_patchwerk.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SPELL_SLIMEBOLT         32309 
    4343 
    44 struct MANGOS_DLL_DECL boss_patchwerkAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_patchwerkAI : public ScriptedAI 
    4545{ 
    4646    boss_patchwerkAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_razuvious.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5454#define SPELL_DISRUPTINGSHOUT       29107 
    5555 
    56 struct MANGOS_DLL_DECL boss_razuviousAI : public ScriptedAI 
     56struct TRINITY_DLL_DECL boss_razuviousAI : public ScriptedAI 
    5757{ 
    5858    boss_razuviousAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sapphiron.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_BESERK            26662 
    3232 
    33 struct MANGOS_DLL_DECL boss_sapphironAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_sapphironAI : public ScriptedAI 
    3434{ 
    3535    boss_sapphironAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sir_zeliek.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define SOUND_DEATH               8914 
    4949 
    50 struct MANGOS_DLL_DECL boss_sir_zeliekAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_sir_zeliekAI : public ScriptedAI 
    5151{ 
    5252    boss_sir_zeliekAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_stalagg.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thaddius.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thane_korthazz.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5050#define SPIRIT_OF_KORTHAZZ         16778 
    5151 
    52 struct MANGOS_DLL_DECL boss_thane_korthazzAI : public ScriptedAI 
     52struct TRINITY_DLL_DECL boss_thane_korthazzAI : public ScriptedAI 
    5353{ 
    5454    boss_thane_korthazzAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/naxxramas/instance_naxxramas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/netherstorm/netherstorm.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5858#define SPELL_INTERRUPT_2       35176                       //ACID mobs should cast this (Manaforge Ara-version) 
    5959 
    60 struct MANGOS_DLL_DECL npc_manaforge_control_consoleAI : public ScriptedAI 
     60struct TRINITY_DLL_DECL npc_manaforge_control_consoleAI : public ScriptedAI 
    6161{ 
    6262    npc_manaforge_control_consoleAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    286286######*/ 
    287287 
    288 //TODO: clean up this workaround when mangos adds support to do it properly (with gossip selections instead of instant summon) 
     288//TODO: clean up this workaround when Trinity adds support to do it properly (with gossip selections instead of instant summon) 
    289289bool GOHello_go_manaforge_control_console(Player *player, GameObject* _GO) 
    290290{ 
  • trunk/src/bindings/scripts/scripts/zone/onyxias_lair/boss_onyxia.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6666#define CREATURE_WHELP      11262 
    6767 
    68 struct MANGOS_DLL_DECL boss_onyxiaAI : public ScriptedAI 
     68struct TRINITY_DLL_DECL boss_onyxiaAI : public ScriptedAI 
    6969{ 
    7070    boss_onyxiaAI(Creature* c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/orgrimmar/orgrimmar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7070#define QUEST_2460  2460 
    7171 
    72 struct MANGOS_DLL_DECL npc_shenthulAI : public ScriptedAI 
     72struct TRINITY_DLL_DECL npc_shenthulAI : public ScriptedAI 
    7373{ 
    7474    npc_shenthulAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    152152 
    153153//TODO: verify abilities/timers 
    154 struct MANGOS_DLL_DECL npc_thrall_warchiefAI : public ScriptedAI 
     154struct TRINITY_DLL_DECL npc_thrall_warchiefAI : public ScriptedAI 
    155155{ 
    156156    npc_thrall_warchiefAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434#define SPELL_FROSTBOLT             10179 
    3535 
    36 struct MANGOS_DLL_DECL boss_amnennar_the_coldbringerAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL boss_amnennar_the_coldbringerAI : public ScriptedAI 
    3737{ 
    3838    boss_amnennar_the_coldbringerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434// #define SPELL_PARALYZE 23414 doesnt work correct (core) 
    3535 
    36 struct MANGOS_DLL_DECL boss_ayamissAI : public ScriptedAI 
     36struct TRINITY_DLL_DECL boss_ayamissAI : public ScriptedAI 
    3737{ 
    3838    boss_ayamissAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_ENRAGE 28798 
    2929 
    30 struct MANGOS_DLL_DECL boss_kurinnaxxAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_kurinnaxxAI : public ScriptedAI 
    3131{ 
    3232    boss_kurinnaxxAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_moam.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SAY_MANA                "moam bristles with energy!" 
    3333 
    34 struct MANGOS_DLL_DECL boss_moamAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_moamAI : public ScriptedAI 
    3535{ 
    3636    boss_moamAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ossirian.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_rajaxx.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/instance_ruins_of_ahnqiraj.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_arcanist_doan.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4040#define SOUND_SPECIALAE                 5843 
    4141 
    42 struct MANGOS_DLL_DECL boss_arcanist_doanAI : public ScriptedAI 
     42struct TRINITY_DLL_DECL boss_arcanist_doanAI : public ScriptedAI 
    4343{ 
    4444    boss_arcanist_doanAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_azshir_the_sleepless.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_SOULSIPHON                7290 
    2929 
    30 struct MANGOS_DLL_DECL boss_azshir_the_sleeplessAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_azshir_the_sleeplessAI : public ScriptedAI 
    3131{ 
    3232    boss_azshir_the_sleeplessAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_bloodmage_thalnos.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838#define SOUND_DEATH                     5845 
    3939 
    40 struct MANGOS_DLL_DECL boss_bloodmage_thalnosAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL boss_bloodmage_thalnosAI : public ScriptedAI 
    4141{ 
    4242    boss_bloodmage_thalnosAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_herod.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define SOUND_DEATH                 5831 
    4949 
    50 struct MANGOS_DLL_DECL boss_herodAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_herodAI : public ScriptedAI 
    5151{ 
    5252    boss_herodAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_fairbanks.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3333#define SPELL_MINDBLAST5                8105 
    3434 
    35 struct MANGOS_DLL_DECL boss_high_inquisitor_fairbanksAI : public ScriptedAI 
     35struct TRINITY_DLL_DECL boss_high_inquisitor_fairbanksAI : public ScriptedAI 
    3636{ 
    3737    boss_high_inquisitor_fairbanksAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_whitemane.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define SOUND_DEATH                     5839 
    4949 
    50 struct MANGOS_DLL_DECL boss_high_inquisitor_whitemaneAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_high_inquisitor_whitemaneAI : public ScriptedAI 
    5151{ 
    5252    boss_high_inquisitor_whitemaneAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_houndmaster_loksey.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SOUND_AGGRO                     5841 
    3131 
    32 struct MANGOS_DLL_DECL boss_houndmaster_lokseyAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_houndmaster_lokseyAI : public ScriptedAI 
    3333{ 
    3434    boss_houndmaster_lokseyAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_interrogator_vishas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define SOUND_DEATH                     5848 
    3737 
    38 struct MANGOS_DLL_DECL boss_interrogator_vishasAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL boss_interrogator_vishasAI : public ScriptedAI 
    3939{ 
    4040    boss_interrogator_vishasAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scarlet_commander_mograine.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SOUND_DEATH                 5836 
    4343 
    44 struct MANGOS_DLL_DECL boss_scarlet_commander_mograineAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_scarlet_commander_mograineAI : public ScriptedAI 
    4545{ 
    4646    boss_scarlet_commander_mograineAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scorn.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_FROSTNOVA                 15531 
    3030 
    31 struct MANGOS_DLL_DECL boss_scornAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_scornAI : public ScriptedAI 
    3232{ 
    3333    boss_scornAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_darkmaster_gandling.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define ADD_4O 3.16 
    4949 
    50 struct MANGOS_DLL_DECL boss_darkmaster_gandlingAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_darkmaster_gandlingAI : public ScriptedAI 
    5151{ 
    5252    boss_darkmaster_gandlingAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_death_knight_darkreaver.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2424#include "precompiled.h" 
    2525 
    26 struct MANGOS_DLL_DECL boss_death_knight_darkreaverAI : public ScriptedAI 
     26struct TRINITY_DLL_DECL boss_death_knight_darkreaverAI : public ScriptedAI 
    2727{ 
    2828    boss_death_knight_darkreaverAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_doctor_theolen_krastinov.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2929#define SPELL_FRENZY            28371 
    3030 
    31 struct MANGOS_DLL_DECL boss_theolenkrastinovAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_theolenkrastinovAI : public ScriptedAI 
    3232{ 
    3333    boss_theolenkrastinovAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_illucia_barov.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_FEAR              6215 
    3131 
    32 struct MANGOS_DLL_DECL boss_illuciabarovAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_illuciabarovAI : public ScriptedAI 
    3333{ 
    3434    boss_illuciabarovAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_instructor_malicia.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_HEALINGTOUCH         9889 
    3232 
    33 struct MANGOS_DLL_DECL boss_instructormaliciaAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_instructormaliciaAI : public ScriptedAI 
    3434{ 
    3535    boss_instructormaliciaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_jandice_barov.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_CLEAVE                15584 
    3131 
    32 struct MANGOS_DLL_DECL boss_jandicebarovAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_jandicebarovAI : public ScriptedAI 
    3333{ 
    3434    boss_jandicebarovAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    153153// Illusion of Jandice Barov Script 
    154154 
    155 struct MANGOS_DLL_DECL mob_illusionofjandicebarovAI : public ScriptedAI 
     155struct TRINITY_DLL_DECL mob_illusionofjandicebarovAI : public ScriptedAI 
    156156{ 
    157157    mob_illusionofjandicebarovAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_kormok.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2727#define SPELL_BONESHIELD            27688 
    2828 
    29 struct MANGOS_DLL_DECL boss_kormokAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_kormokAI : public ScriptedAI 
    3030{ 
    3131    boss_kormokAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lord_alexei_barov.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_VEILOFSHADOW         17820 
    2929 
    30 struct MANGOS_DLL_DECL boss_lordalexeibarovAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_lordalexeibarovAI : public ScriptedAI 
    3131{ 
    3232    boss_lordalexeibarovAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lorekeeper_polkelt.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3030#define SPELL_NOXIOUSCATALYST        18151 
    3131 
    32 struct MANGOS_DLL_DECL boss_lorekeeperpolkeltAI : public ScriptedAI 
     32struct TRINITY_DLL_DECL boss_lorekeeperpolkeltAI : public ScriptedAI 
    3333{ 
    3434    boss_lorekeeperpolkeltAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_ras_frostwhisper.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_FROSTVOLLEY       8398 
    3232 
    33 struct MANGOS_DLL_DECL boss_rasfrostAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_rasfrostAI : public ScriptedAI 
    3434{ 
    3535    boss_rasfrostAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_the_ravenian.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SAY_AGGRO1              "Mine! Mine! Mine! Gizlock is the ruler of this domain! You shall never reveal my presence!" 
    3333 
    34 struct MANGOS_DLL_DECL boss_theravenianAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_theravenianAI : public ScriptedAI 
    3535{ 
    3636    boss_theravenianAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/boss_vectus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_FRENZY            28371 
    2929 
    30 struct MANGOS_DLL_DECL boss_vectusAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_vectusAI : public ScriptedAI 
    3131{ 
    3232    boss_vectusAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/scholomance/instance_scholomance.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525#include "def_scholomance.h" 
    2626 
    27 struct MANGOS_DLL_DECL instance_scholomance : public ScriptedInstance 
     27struct TRINITY_DLL_DECL instance_scholomance : public ScriptedInstance 
    2828{ 
    2929    instance_scholomance(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/searing_gorge/searing_gorge.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/instance_shadowfang_keep.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3535#define ENTRY_ARUGAL_DOOR       18971                       //door to open when Wolf Master Nandos 
    3636 
    37 struct MANGOS_DLL_DECL instance_shadowfang_keep : public ScriptedInstance 
     37struct TRINITY_DLL_DECL instance_shadowfang_keep : public ScriptedInstance 
    3838{ 
    3939    instance_shadowfang_keep(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/shadowfang_keep.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434######*/ 
    3535 
    36 struct MANGOS_DLL_DECL npc_shadowfang_prisonerAI : public npc_escortAI 
     36struct TRINITY_DLL_DECL npc_shadowfang_prisonerAI : public npc_escortAI 
    3737{ 
    3838    npc_shadowfang_prisonerAI(Creature *c) : npc_escortAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/boss_doomwalker.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5959#define SOUND_DEATH                 11352 
    6060 
    61 struct MANGOS_DLL_DECL boss_doomwalkerAI : public ScriptedAI 
     61struct TRINITY_DLL_DECL boss_doomwalkerAI : public ScriptedAI 
    6262{ 
    6363    boss_doomwalkerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/shadowmoon_valley.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4646#define SAY_JUST_EATEN                  "Thank you, mortal." 
    4747 
    48 struct MANGOS_DLL_DECL mob_mature_netherwing_drakeAI : public ScriptedAI 
     48struct TRINITY_DLL_DECL mob_mature_netherwing_drakeAI : public ScriptedAI 
    4949{ 
    5050    mob_mature_netherwing_drakeAI(Creature* c) : ScriptedAI(c) 
     
    169169#define CREATURE_ESCAPE_DUMMY           22317 
    170170 
    171 struct MANGOS_DLL_DECL mob_enslaved_netherwing_drakeAI : public ScriptedAI 
     171struct TRINITY_DLL_DECL mob_enslaved_netherwing_drakeAI : public ScriptedAI 
    172172{ 
    173173    mob_enslaved_netherwing_drakeAI(Creature* c) : ScriptedAI(c) 
     
    199199 
    200200        // Time for some omg mind blowing code to search for creature 
    201         CellPair pair(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     201        CellPair pair(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    202202        Cell cell(pair); 
    203203        cell.data.Part.reserved = ALL_DISTRICT; 
    204204        cell.SetNoCreate(); 
    205205 
    206         MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck creature_check(*m_creature, entry, true, range); 
    207         MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(pCreature, creature_check); 
    208  
    209         TypeContainerVisitor<MaNGOS::CreatureLastSearcher<MaNGOS::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> creature_searcher(searcher); 
     206        Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck creature_check(*m_creature, entry, true, range); 
     207        Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck> searcher(pCreature, creature_check); 
     208 
     209        TypeContainerVisitor<Trinity::CreatureLastSearcher<Trinity::NearestCreatureEntryWithLiveStateInObjectRangeCheck>, GridTypeMapContainer> creature_searcher(searcher); 
    210210 
    211211        CellLock<GridReadGuard> cell_lock(cell, pair); 
     
    318318#####*/ 
    319319 
    320 struct MANGOS_DLL_DECL mob_dragonmaw_peonAI : public ScriptedAI 
     320struct TRINITY_DLL_DECL mob_dragonmaw_peonAI : public ScriptedAI 
    321321{ 
    322322    mob_dragonmaw_peonAI(Creature* c) : ScriptedAI(c) 
     
    414414#define SPELL_TELE_H_TO   37389 
    415415 
    416 struct MANGOS_DLL_DECL npc_invis_legion_teleporterAI : public ScriptedAI 
     416struct TRINITY_DLL_DECL npc_invis_legion_teleporterAI : public ScriptedAI 
    417417{ 
    418418    npc_invis_legion_teleporterAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/shattrath/shattrath_city.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SPELL_UPPERCUT          10966 
    4343 
    44 struct MANGOS_DLL_DECL npc_raliq_the_drunkAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL npc_raliq_the_drunkAI : public ScriptedAI 
    4545{ 
    4646    npc_raliq_the_drunkAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    105105#define SPELL_MAGNETIC_PULL             31705 
    106106 
    107 struct MANGOS_DLL_DECL npc_salsalabimAI : public ScriptedAI 
     107struct TRINITY_DLL_DECL npc_salsalabimAI : public ScriptedAI 
    108108{ 
    109109    npc_salsalabimAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/silithus/silithus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/silvermoon/silvermoon_city.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838#define SPELL_REVIVE_SELF               32343 
    3939 
    40 struct MANGOS_DLL_DECL npc_blood_knight_stillbladeAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL npc_blood_knight_stillbladeAI : public ScriptedAI 
    4141{ 
    4242    npc_blood_knight_stillbladeAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/silverpine_forest/silverpine_forest.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232######*/ 
    3333 
    34 struct MANGOS_DLL_DECL npc_astor_hadrenAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL npc_astor_hadrenAI : public ScriptedAI 
    3535{ 
    3636    npc_astor_hadrenAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stonetalon_mountains/stonetalon_mountains.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/stormwind/stormwind_city.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6666######*/ 
    6767 
    68 struct MANGOS_DLL_DECL npc_bartlebyAI : public ScriptedAI 
     68struct TRINITY_DLL_DECL npc_bartlebyAI : public ScriptedAI 
    6969{ 
    7070    npc_bartlebyAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    125125######*/ 
    126126 
    127 struct MANGOS_DLL_DECL npc_dashel_stonefistAI : public ScriptedAI 
     127struct TRINITY_DLL_DECL npc_dashel_stonefistAI : public ScriptedAI 
    128128{ 
    129129    npc_dashel_stonefistAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stranglethorn_vale/stranglethorn_vale.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232######*/ 
    3333 
    34 struct MANGOS_DLL_DECL mob_yennikuAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL mob_yennikuAI : public ScriptedAI 
    3535{ 
    3636    mob_yennikuAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baron_rivendare.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    7171//#define SPELL_SUMMONSKELETONS    17274 
    7272 
    73 struct MANGOS_DLL_DECL boss_baron_rivendareAI : public ScriptedAI 
     73struct TRINITY_DLL_DECL boss_baron_rivendareAI : public ScriptedAI 
    7474{ 
    7575    boss_baron_rivendareAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baroness_anastari.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2929//#define SPELL_POSSESS   17244 
    3030 
    31 struct MANGOS_DLL_DECL boss_baroness_anastariAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_baroness_anastariAI : public ScriptedAI 
    3232{ 
    3333    boss_baroness_anastariAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_cannon_master_willey.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    7575//#define SPELL_SUMMONCRIMSONRIFLEMAN    17279 
    7676 
    77 struct MANGOS_DLL_DECL boss_cannon_master_willeyAI : public ScriptedAI 
     77struct TRINITY_DLL_DECL boss_cannon_master_willeyAI : public ScriptedAI 
    7878{ 
    7979    boss_cannon_master_willeyAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_dathrohan_balnazzar.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    8383#define ADD_8O 3.784981 
    8484 
    85 struct MANGOS_DLL_DECL boss_dathrohan_balnazzarAI : public ScriptedAI 
     85struct TRINITY_DLL_DECL boss_dathrohan_balnazzarAI : public ScriptedAI 
    8686{ 
    8787    boss_dathrohan_balnazzarAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_magistrate_barthilas.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2929#define SPELL_DAZED    1604 
    3030 
    31 struct MANGOS_DLL_DECL boss_magistrate_barthilasAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_magistrate_barthilasAI : public ScriptedAI 
    3232{ 
    3333    boss_magistrate_barthilasAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_maleki_the_pallid.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2929#define SPELL_ICETOMB    16869 
    3030 
    31 struct MANGOS_DLL_DECL boss_maleki_the_pallidAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_maleki_the_pallidAI : public ScriptedAI 
    3232{ 
    3333    boss_maleki_the_pallidAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_nerubenkan.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2929//#define SPELL_RAISEUNDEADSCARAB     17235 
    3030 
    31 struct MANGOS_DLL_DECL boss_nerubenkanAI : public ScriptedAI 
     31struct TRINITY_DLL_DECL boss_nerubenkanAI : public ScriptedAI 
    3232{ 
    3333    boss_nerubenkanAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_order_of_silver_hand.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    4242#define SPELL_DIVINE_SHIELD 13874 
    4343 
    44 struct MANGOS_DLL_DECL boss_silver_hand_bossesAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_silver_hand_bossesAI : public ScriptedAI 
    4545{ 
    4646    boss_silver_hand_bossesAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_postmaster_malown.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    3535#define SPELL_CALLOFTHEGRAVE    17831 
    3636 
    37 struct MANGOS_DLL_DECL boss_postmaster_malownAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL boss_postmaster_malownAI : public ScriptedAI 
    3838{ 
    3939    boss_postmaster_malownAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_ramstein_the_gorger.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2727#define SPELL_KNOCKOUT    17307 
    2828 
    29 struct MANGOS_DLL_DECL boss_ramstein_the_gorgerAI : public ScriptedAI 
     29struct TRINITY_DLL_DECL boss_ramstein_the_gorgerAI : public ScriptedAI 
    3030{ 
    3131    boss_ramstein_the_gorgerAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/boss_timmy_the_cruel.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2828#define SPELL_RAVENOUSCLAW    17470 
    2929 
    30 struct MANGOS_DLL_DECL boss_timmy_the_cruelAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_timmy_the_cruelAI : public ScriptedAI 
    3131{ 
    3232    boss_timmy_the_cruelAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/instance_stratholme.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    2525#include "def_stratholme.h" 
    2626 
    27 struct MANGOS_DLL_DECL instance_stratholme : public ScriptedInstance 
     27struct TRINITY_DLL_DECL instance_stratholme : public ScriptedInstance 
    2828{ 
    2929    instance_stratholme(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/stratholme/stratholme.cpp

    r46 r48  
    77* This program is distributed in the hope that it will be useful, 
    88* but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010* GNU General Public License for more details. 
    1111* 
    1212* You should have received a copy of the GNU General Public License 
    1313* along with this program; if not, write to the Free Software 
    14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515*/ 
    1616 
     
    3535#define SAY_ZAPPED3 "Don't cross those beams!" 
    3636 
    37 struct MANGOS_DLL_DECL mob_freed_soulAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL mob_freed_soulAI : public ScriptedAI 
    3838{ 
    3939    mob_freed_soulAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    7171######*/ 
    7272 
    73 struct MANGOS_DLL_DECL mob_restless_soulAI : public ScriptedAI 
     73struct TRINITY_DLL_DECL mob_restless_soulAI : public ScriptedAI 
    7474{ 
    7575    mob_restless_soulAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    160160######*/ 
    161161 
    162 struct MANGOS_DLL_DECL mobs_spectral_ghostly_citizenAI : public ScriptedAI 
     162struct TRINITY_DLL_DECL mobs_spectral_ghostly_citizenAI : public ScriptedAI 
    163163{ 
    164164    mobs_spectral_ghostly_citizenAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_brutallus.cpp

    r46 r48  
    6161#define BERSERK 26662 
    6262 
    63 struct MANGOS_DLL_DECL boss_brutallusAI : public ScriptedAI 
     63struct TRINITY_DLL_DECL boss_brutallusAI : public ScriptedAI 
    6464{ 
    6565    boss_brutallusAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_kalecgos.cpp

    r46 r48  
    141141} 
    142142 
    143 struct MANGOS_DLL_DECL boss_kalecgosAI : public ScriptedAI 
     143struct TRINITY_DLL_DECL boss_kalecgosAI : public ScriptedAI 
    144144{ 
    145145    boss_kalecgosAI(Creature* c) : ScriptedAI(c) 
     
    407407}; 
    408408 
    409 struct MANGOS_DLL_DECL boss_sathrovarrAI : public ScriptedAI 
     409struct TRINITY_DLL_DECL boss_sathrovarrAI : public ScriptedAI 
    410410{ 
    411411    boss_sathrovarrAI(Creature* c) : ScriptedAI(c) 
     
    540540}; 
    541541 
    542 struct MANGOS_DLL_DECL boss_kalecAI : public ScriptedAI 
     542struct TRINITY_DLL_DECL boss_kalecAI : public ScriptedAI 
    543543{ 
    544544    boss_kalecAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp

    r46 r48  
    2828*/ 
    2929 
    30 struct MANGOS_DLL_DECL instance_sunwell_plateau : public ScriptedInstance 
     30struct TRINITY_DLL_DECL instance_sunwell_plateau : public ScriptedInstance 
    3131{ 
    3232    instance_sunwell_plateau(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/tanaris/tanaris.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SPELL_FROST_SHOCK   15089 
    4343 
    44 struct MANGOS_DLL_DECL mob_aquementasAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL mob_aquementasAI : public ScriptedAI 
    4545{ 
    4646    mob_aquementasAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    146146#define WHISPER_CUSTODIAN_14    "Our time is at an end $N. I would wish you luck, if such a thing existed." 
    147147 
    148 struct MANGOS_DLL_DECL npc_custodian_of_timeAI : public npc_escortAI 
     148struct TRINITY_DLL_DECL npc_custodian_of_timeAI : public npc_escortAI 
    149149{ 
    150150    npc_custodian_of_timeAI(Creature *c) : npc_escortAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/arcatraz.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    8383#define SPELL_PYROBLAST             33975 
    8484 
    85 struct MANGOS_DLL_DECL npc_millhouse_manastormAI : public ScriptedAI 
     85struct TRINITY_DLL_DECL npc_millhouse_manastormAI : public ScriptedAI 
    8686{ 
    8787    npc_millhouse_manastormAI(Creature *c) : ScriptedAI(c) 
     
    329329#define SPELL_BUBBLE_VISUAL 36849 
    330330 
    331 struct MANGOS_DLL_DECL npc_warden_mellicharAI : public ScriptedAI 
     331struct TRINITY_DLL_DECL npc_warden_mellicharAI : public ScriptedAI 
    332332{ 
    333333    npc_warden_mellicharAI(Creature *c) : ScriptedAI(c) 
     
    566566#define SPELL_VOID_ZONE_DAMAGE 36120 
    567567 
    568 struct MANGOS_DLL_DECL mob_zerekethvoidzoneAI : public ScriptedAI 
     568struct TRINITY_DLL_DECL mob_zerekethvoidzoneAI : public ScriptedAI 
    569569{ 
    570570    mob_zerekethvoidzoneAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/boss_harbinger_skyriss.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7070#define SPELL_33_ILLUSION       36932                       //entry 21467 
    7171 
    72 struct MANGOS_DLL_DECL boss_harbinger_skyrissAI : public ScriptedAI 
     72struct TRINITY_DLL_DECL boss_harbinger_skyrissAI : public ScriptedAI 
    7373{ 
    7474    boss_harbinger_skyrissAI(Creature *c) : ScriptedAI(c) 
     
    341341#define H_SPELL_MIND_REND_IMAGE 39021 
    342342 
    343 struct MANGOS_DLL_DECL boss_harbinger_skyriss_illusionAI : public ScriptedAI 
     343struct TRINITY_DLL_DECL boss_harbinger_skyriss_illusionAI : public ScriptedAI 
    344344{ 
    345345    boss_harbinger_skyriss_illusionAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/instance_arcatraz.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4444*/ 
    4545 
    46 struct MANGOS_DLL_DECL instance_arcatraz : public ScriptedInstance 
     46struct TRINITY_DLL_DECL instance_arcatraz : public ScriptedInstance 
    4747{ 
    4848    instance_arcatraz(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_high_botanist_freywinn.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5151#define SPELL_PLANT_RED             34763 
    5252 
    53 struct MANGOS_DLL_DECL boss_high_botanist_freywinnAI : public ScriptedAI 
     53struct TRINITY_DLL_DECL boss_high_botanist_freywinnAI : public ScriptedAI 
    5454{ 
    5555    boss_high_botanist_freywinnAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_laj.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4444#define MODEL_NATURE                14214 
    4545 
    46 struct MANGOS_DLL_DECL boss_lajAI : public ScriptedAI 
     46struct TRINITY_DLL_DECL boss_lajAI : public ScriptedAI 
    4747{ 
    4848    boss_lajAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_warp_splinter.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#####*/ 
    2929 
    30 struct MANGOS_DLL_DECL mob_treantAI  : public ScriptedAI 
     30struct TRINITY_DLL_DECL mob_treantAI  : public ScriptedAI 
    3131{ 
    3232    mob_treantAI (Creature *c) : ScriptedAI(c) 
     
    103103}; 
    104104 
    105 struct MANGOS_DLL_DECL boss_warp_splinterAI : public ScriptedAI 
     105struct TRINITY_DLL_DECL boss_warp_splinterAI : public ScriptedAI 
    106106{ 
    107107    boss_warp_splinterAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_astromancer.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7575#define MIN_RANGE_FOR_DOT_JUMP      20.0f 
    7676 
    77 struct MANGOS_DLL_DECL boss_high_astromancer_solarianAI : public ScriptedAI 
     77struct TRINITY_DLL_DECL boss_high_astromancer_solarianAI : public ScriptedAI 
    7878{ 
    7979    boss_high_astromancer_solarianAI(Creature *c) : ScriptedAI(c) 
     
    453453}; 
    454454 
    455 struct MANGOS_DLL_DECL mob_solarium_priestAI : public ScriptedAI 
     455struct TRINITY_DLL_DECL mob_solarium_priestAI : public ScriptedAI 
    456456{ 
    457457    mob_solarium_priestAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_kaelthas.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    185185 
    186186//Base AI for Advisors 
    187 struct MANGOS_DLL_DECL advisorbase_ai : public ScriptedAI 
     187struct TRINITY_DLL_DECL advisorbase_ai : public ScriptedAI 
    188188{ 
    189189    ScriptedInstance* pInstance; 
     
    329329 
    330330//Kael'thas AI 
    331 struct MANGOS_DLL_DECL boss_kaelthasAI : public ScriptedAI 
     331struct TRINITY_DLL_DECL boss_kaelthasAI : public ScriptedAI 
    332332{ 
    333333    boss_kaelthasAI(Creature *c) : ScriptedAI(c) 
     
    10751075 
    10761076//Thaladred the Darkener AI 
    1077 struct MANGOS_DLL_DECL boss_thaladred_the_darkenerAI : public advisorbase_ai 
     1077struct TRINITY_DLL_DECL boss_thaladred_the_darkenerAI : public advisorbase_ai 
    10781078{ 
    10791079    boss_thaladred_the_darkenerAI(Creature *c) : advisorbase_ai(c) {} 
     
    11561156 
    11571157//Lord Sanguinar AI 
    1158 struct MANGOS_DLL_DECL boss_lord_sanguinarAI : public advisorbase_ai 
     1158struct TRINITY_DLL_DECL boss_lord_sanguinarAI : public advisorbase_ai 
    11591159{ 
    11601160    boss_lord_sanguinarAI(Creature *c) : advisorbase_ai(c){} 
     
    12101210 
    12111211//Grand Astromancer Capernian AI 
    1212 struct MANGOS_DLL_DECL boss_grand_astromancer_capernianAI : public advisorbase_ai 
     1212struct TRINITY_DLL_DECL boss_grand_astromancer_capernianAI : public advisorbase_ai 
    12131213{ 
    12141214    boss_grand_astromancer_capernianAI(Creature *c) : advisorbase_ai(c){} 
     
    13361336 
    13371337//Master Engineer Telonicus AI 
    1338 struct MANGOS_DLL_DECL boss_master_engineer_telonicusAI : public advisorbase_ai 
     1338struct TRINITY_DLL_DECL boss_master_engineer_telonicusAI : public advisorbase_ai 
    13391339{ 
    13401340    boss_master_engineer_telonicusAI(Creature *c) : advisorbase_ai(c){} 
     
    14051405 
    14061406//Flame Strike AI 
    1407 struct MANGOS_DLL_DECL mob_kael_flamestrikeAI : public ScriptedAI 
     1407struct TRINITY_DLL_DECL mob_kael_flamestrikeAI : public ScriptedAI 
    14081408{ 
    14091409    mob_kael_flamestrikeAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    14551455 
    14561456//Phoenix AI 
    1457 struct MANGOS_DLL_DECL mob_phoenixAI : public ScriptedAI 
     1457struct TRINITY_DLL_DECL mob_phoenixAI : public ScriptedAI 
    14581458{ 
    14591459    mob_phoenixAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_void_reaver.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define CREATURE_ORB_TARGET     19577 
    4949 
    50 struct MANGOS_DLL_DECL boss_void_reaverAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_void_reaverAI : public ScriptedAI 
    5151{ 
    5252    boss_void_reaverAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/instance_the_eye.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3434*/ 
    3535 
    36 struct MANGOS_DLL_DECL instance_the_eye : public ScriptedInstance 
     36struct TRINITY_DLL_DECL instance_the_eye : public ScriptedInstance 
    3737{ 
    3838    instance_the_eye(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/the_eye.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_KNOCKAWAY         22893 
    3333 
    34 struct MANGOS_DLL_DECL mob_crystalcore_devastatorAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL mob_crystalcore_devastatorAI : public ScriptedAI 
    3535{ 
    3636    mob_crystalcore_devastatorAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_gyrokill.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_ironhand.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4545 
    4646 
    47 struct MANGOS_DLL_DECL boss_gatewatcher_iron_handAI : public ScriptedAI 
     47struct TRINITY_DLL_DECL boss_gatewatcher_iron_handAI : public ScriptedAI 
    4848{ 
    4949    boss_gatewatcher_iron_handAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_nethermancer_sepethrea.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4848#define SOUND_DEATH                     11192 
    4949 
    50 struct MANGOS_DLL_DECL boss_nethermancer_sepethreaAI : public ScriptedAI 
     50struct TRINITY_DLL_DECL boss_nethermancer_sepethreaAI : public ScriptedAI 
    5151{ 
    5252    boss_nethermancer_sepethreaAI(Creature *c) : ScriptedAI(c) { Reset(); } 
     
    147147} 
    148148 
    149 struct MANGOS_DLL_DECL mob_ragin_flamesAI : public ScriptedAI 
     149struct TRINITY_DLL_DECL mob_ragin_flamesAI : public ScriptedAI 
    150150{ 
    151151    mob_ragin_flamesAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_bug_trio.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define SPELL_FEAR      19408 
    3737 
    38 struct MANGOS_DLL_DECL boss_kriAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL boss_kriAI : public ScriptedAI 
    3939{ 
    4040    boss_kriAI(Creature *c) : ScriptedAI(c) 
     
    122122}; 
    123123 
    124 struct MANGOS_DLL_DECL boss_vemAI : public ScriptedAI 
     124struct TRINITY_DLL_DECL boss_vemAI : public ScriptedAI 
    125125{ 
    126126    boss_vemAI(Creature *c) : ScriptedAI(c) 
     
    204204}; 
    205205 
    206 struct MANGOS_DLL_DECL boss_yaujAI : public ScriptedAI 
     206struct TRINITY_DLL_DECL boss_yaujAI : public ScriptedAI 
    207207{ 
    208208    boss_yaujAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_cthun.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    114114#define KICK_Z                              -96.0f 
    115115 
    116 struct MANGOS_DLL_DECL flesh_tentacleAI : public Scripted_NoMovementAI 
     116struct TRINITY_DLL_DECL flesh_tentacleAI : public Scripted_NoMovementAI 
    117117{ 
    118118    flesh_tentacleAI(Creature *c) : Scripted_NoMovementAI(c), Parent(0) {Reset();} 
     
    140140}; 
    141141 
    142 struct MANGOS_DLL_DECL eye_of_cthunAI : public Scripted_NoMovementAI 
     142struct TRINITY_DLL_DECL eye_of_cthunAI : public Scripted_NoMovementAI 
    143143{ 
    144144    eye_of_cthunAI(Creature *c) : Scripted_NoMovementAI(c) 
     
    441441}; 
    442442 
    443 struct MANGOS_DLL_DECL cthunAI : public Scripted_NoMovementAI 
     443struct TRINITY_DLL_DECL cthunAI : public Scripted_NoMovementAI 
    444444{ 
    445445    cthunAI(Creature *c) : Scripted_NoMovementAI(c) 
     
    929929}; 
    930930 
    931 struct MANGOS_DLL_DECL eye_tentacleAI : public Scripted_NoMovementAI 
     931struct TRINITY_DLL_DECL eye_tentacleAI : public Scripted_NoMovementAI 
    932932{ 
    933933    eye_tentacleAI(Creature *c) : Scripted_NoMovementAI(c) 
     
    992992}; 
    993993 
    994 struct MANGOS_DLL_DECL claw_tentacleAI : public Scripted_NoMovementAI 
     994struct TRINITY_DLL_DECL claw_tentacleAI : public Scripted_NoMovementAI 
    995995{ 
    996996    claw_tentacleAI(Creature *c) : Scripted_NoMovementAI(c) 
     
    10871087}; 
    10881088 
    1089 struct MANGOS_DLL_DECL giant_claw_tentacleAI : public Scripted_NoMovementAI 
     1089struct TRINITY_DLL_DECL giant_claw_tentacleAI : public Scripted_NoMovementAI 
    10901090{ 
    10911091    giant_claw_tentacleAI(Creature *c) : Scripted_NoMovementAI(c) 
     
    11921192}; 
    11931193 
    1194 struct MANGOS_DLL_DECL giant_eye_tentacleAI : public Scripted_NoMovementAI 
     1194struct TRINITY_DLL_DECL giant_eye_tentacleAI : public Scripted_NoMovementAI 
    11951195{ 
    11961196    giant_eye_tentacleAI(Creature *c) : Scripted_NoMovementAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_fankriss.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define SPELL_ENRAGE       28798 
    3737 
    38 struct MANGOS_DLL_DECL boss_fankrissAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL boss_fankrissAI : public ScriptedAI 
    3939{ 
    4040    boss_fankrissAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_huhuran.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SPELL_ACIDSPIT 26050 
    3232 
    33 struct MANGOS_DLL_DECL boss_huhuranAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_huhuranAI : public ScriptedAI 
    3434{ 
    3535    boss_huhuranAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_ouro.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_DIRTMOUND_PASSIVE 26092 
    3333 
    34 struct MANGOS_DLL_DECL boss_ouroAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_ouroAI : public ScriptedAI 
    3535{ 
    3636    boss_ouroAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_sartura.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3232#define SPELL_KNOCKBACK                              26027 
    3333 
    34 struct MANGOS_DLL_DECL boss_sarturaAI : public ScriptedAI 
     34struct TRINITY_DLL_DECL boss_sarturaAI : public ScriptedAI 
    3535{ 
    3636    boss_sarturaAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    148148}; 
    149149 
    150 struct MANGOS_DLL_DECL mob_sartura_royal_guardAI : public ScriptedAI 
     150struct TRINITY_DLL_DECL mob_sartura_royal_guardAI : public ScriptedAI 
    151151{ 
    152152    mob_sartura_royal_guardAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_skeram.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5050}; 
    5151 
    52 struct MANGOS_DLL_DECL boss_skeramAI : public ScriptedAI 
     52struct TRINITY_DLL_DECL boss_skeramAI : public ScriptedAI 
    5353{ 
    5454    boss_skeramAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_twinemperors.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5858#define SPELL_ARCANEBURST           568 
    5959 
    60 struct MANGOS_DLL_DECL boss_twinemperorsAI : public ScriptedAI 
     60struct TRINITY_DLL_DECL boss_twinemperorsAI : public ScriptedAI 
    6161{ 
    6262    ScriptedInstance *pInstance; 
     
    378378    Creature *RespawnNearbyBugsAndGetOne() 
    379379    { 
    380         CellPair p(MaNGOS::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
     380        CellPair p(Trinity::ComputeCellPair(m_creature->GetPositionX(), m_creature->GetPositionY())); 
    381381        Cell cell(p); 
    382382        cell.data.Part.reserved = ALL_DISTRICT; 
     
    386386 
    387387        AnyBugCheck u_check(m_creature, 150); 
    388         MaNGOS::CreatureListSearcher<AnyBugCheck> searcher(unitList, u_check); 
    389         TypeContainerVisitor<MaNGOS::CreatureListSearcher<AnyBugCheck>, GridTypeMapContainer >  grid_creature_searcher(searcher); 
     388        Trinity::CreatureListSearcher<AnyBugCheck> searcher(unitList, u_check); 
     389        TypeContainerVisitor<Trinity::CreatureListSearcher<AnyBugCheck>, GridTypeMapContainer >  grid_creature_searcher(searcher); 
    390390        CellLock<GridReadGuard> cell_lock(cell, p); 
    391391        cell_lock->Visit(cell_lock, grid_creature_searcher, *(m_creature->GetMap())); 
     
    454454}; 
    455455 
    456 class MANGOS_DLL_DECL BugAura : public Aura 
     456class TRINITY_DLL_DECL BugAura : public Aura 
    457457{ 
    458458    public: 
     
    461461}; 
    462462 
    463 struct MANGOS_DLL_DECL boss_veknilashAI : public boss_twinemperorsAI 
     463struct TRINITY_DLL_DECL boss_veknilashAI : public boss_twinemperorsAI 
    464464{ 
    465465    bool IAmVeklor() {return false;} 
     
    544544}; 
    545545 
    546 struct MANGOS_DLL_DECL boss_veklorAI : public boss_twinemperorsAI 
     546struct TRINITY_DLL_DECL boss_veklorAI : public boss_twinemperorsAI 
    547547{ 
    548548    bool IAmVeklor() {return true;} 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_viscidus.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/instance_temple_of_ahnqiraj.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525#include "def_temple_of_ahnqiraj.h" 
    2626 
    27 struct MANGOS_DLL_DECL instance_temple_of_ahnqiraj : public ScriptedInstance 
     27struct TRINITY_DLL_DECL instance_temple_of_ahnqiraj : public ScriptedInstance 
    2828{ 
    2929    instance_temple_of_ahnqiraj(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/mob_anubisath_sentinel.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    6969}; 
    7070 
    71 struct MANGOS_DLL_DECL aqsentinelAI; 
    72 class MANGOS_DLL_DECL SentinelAbilityAura : public Aura 
     71struct TRINITY_DLL_DECL aqsentinelAI; 
     72class TRINITY_DLL_DECL SentinelAbilityAura : public Aura 
    7373{ 
    7474    public: 
     
    8282}; 
    8383 
    84 struct MANGOS_DLL_DECL aqsentinelAI : public ScriptedAI 
     84struct TRINITY_DLL_DECL aqsentinelAI : public ScriptedAI 
    8585{ 
    8686    uint32 ability; 
     
    168168    void AddSentinelsNear(Unit *nears) 
    169169    { 
    170         CellPair p(MaNGOS::ComputeCellPair(nears->GetPositionX(), nears->GetPositionY())); 
     170        CellPair p(Trinity::ComputeCellPair(nears->GetPositionX(), nears->GetPositionY())); 
    171171        Cell cell(p); 
    172172        cell.data.Part.reserved = ALL_DISTRICT; 
     
    176176 
    177177        NearbyAQSentinel u_check(nears); 
    178         MaNGOS::CreatureListSearcher<NearbyAQSentinel> searcher(assistList, u_check); 
    179         TypeContainerVisitor<MaNGOS::CreatureListSearcher<NearbyAQSentinel>, GridTypeMapContainer >  grid_creature_searcher(searcher); 
     178        Trinity::CreatureListSearcher<NearbyAQSentinel> searcher(assistList, u_check); 
     179        TypeContainerVisitor<Trinity::CreatureListSearcher<NearbyAQSentinel>, GridTypeMapContainer >  grid_creature_searcher(searcher); 
    180180        CellLock<GridReadGuard> cell_lock(cell, p); 
    181181        cell_lock->Visit(cell_lock, grid_creature_searcher, *(nears->GetMap())); 
  • trunk/src/bindings/scripts/scripts/zone/terokkar_forest/terokkar_forest.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5050//#define SPELL_QUID9889                32174 
    5151 
    52 struct MANGOS_DLL_DECL mob_unkor_the_ruthlessAI : public ScriptedAI 
     52struct TRINITY_DLL_DECL mob_unkor_the_ruthlessAI : public ScriptedAI 
    5353{ 
    5454    mob_unkor_the_ruthlessAI(Creature* c) : ScriptedAI(c) { Reset(); } 
     
    149149######*/ 
    150150 
    151 struct MANGOS_DLL_DECL mob_infested_root_walkerAI : public ScriptedAI 
     151struct TRINITY_DLL_DECL mob_infested_root_walkerAI : public ScriptedAI 
    152152{ 
    153153    mob_infested_root_walkerAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    174174######*/ 
    175175 
    176 struct MANGOS_DLL_DECL mob_rotting_forest_ragerAI : public ScriptedAI 
     176struct TRINITY_DLL_DECL mob_rotting_forest_ragerAI : public ScriptedAI 
    177177{ 
    178178    mob_rotting_forest_ragerAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    206206    18470, 16805, 21242, 18452, 22482, 21285 
    207207}; 
    208 struct MANGOS_DLL_DECL mob_netherweb_victimAI : public ScriptedAI 
     208struct TRINITY_DLL_DECL mob_netherweb_victimAI : public ScriptedAI 
    209209{ 
    210210    mob_netherweb_victimAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    254254#define SPELL_FROST_NOVA        11831 
    255255 
    256 struct MANGOS_DLL_DECL npc_floonAI : public ScriptedAI 
     256struct TRINITY_DLL_DECL npc_floonAI : public ScriptedAI 
    257257{ 
    258258    npc_floonAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/thunder_bluff/thunder_bluff.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3535 
    3636//TODO: verify abilities/timers 
    37 struct MANGOS_DLL_DECL npc_cairne_bloodhoofAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL npc_cairne_bloodhoofAI : public ScriptedAI 
    3838{ 
    3939    npc_cairne_bloodhoofAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/tirisfal_glades/tirisfal_glades.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3636#define FACTION_HOSTILE     16 
    3737 
    38 struct MANGOS_DLL_DECL npc_calvin_montagueAI : public ScriptedAI 
     38struct TRINITY_DLL_DECL npc_calvin_montagueAI : public ScriptedAI 
    3939{ 
    4040    npc_calvin_montagueAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/uldaman/boss_ironaya.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3131#define SOUND_AGGRO         5851 
    3232 
    33 struct MANGOS_DLL_DECL boss_ironayaAI : public ScriptedAI 
     33struct TRINITY_DLL_DECL boss_ironayaAI : public ScriptedAI 
    3434{ 
    3535    boss_ironayaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/uldaman/uldaman.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3535#define SPELL_CSLUMBER        3636 
    3636 
    37 struct MANGOS_DLL_DECL mob_jadespine_basiliskAI : public ScriptedAI 
     37struct TRINITY_DLL_DECL mob_jadespine_basiliskAI : public ScriptedAI 
    3838{ 
    3939    mob_jadespine_basiliskAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/undercity/undercity.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5555#define HIGHBORNE_LOC_Y_NEW         -55.50 
    5656 
    57 struct MANGOS_DLL_DECL npc_lady_sylvanas_windrunnerAI : public ScriptedAI 
     57struct TRINITY_DLL_DECL npc_lady_sylvanas_windrunnerAI : public ScriptedAI 
    5858{ 
    5959    npc_lady_sylvanas_windrunnerAI(Creature *c) : ScriptedAI(c) { Reset(); } 
     
    149149######*/ 
    150150 
    151 struct MANGOS_DLL_DECL npc_highborne_lamenterAI : public ScriptedAI 
     151struct TRINITY_DLL_DECL npc_highborne_lamenterAI : public ScriptedAI 
    152152{ 
    153153    npc_highborne_lamenterAI(Creature *c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/wailing_caverns/instance_wailing_caverns.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/western_plaguelands/western_plaguelands.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    8888######*/ 
    8989 
    90 struct MANGOS_DLL_DECL npc_the_scourge_cauldronAI : public ScriptedAI 
     90struct TRINITY_DLL_DECL npc_the_scourge_cauldronAI : public ScriptedAI 
    9191{ 
    9292    npc_the_scourge_cauldronAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/winterspring/winterspring.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
  • trunk/src/bindings/scripts/scripts/zone/zangarmarsh/zangarmarsh.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    124124#define SPELL_LIGHTNING_BOLT    9532 
    125125 
    126 struct MANGOS_DLL_DECL npc_cooshcooshAI : public ScriptedAI 
     126struct TRINITY_DLL_DECL npc_cooshcooshAI : public ScriptedAI 
    127127{ 
    128128    npc_cooshcooshAI(Creature* c) : ScriptedAI(c) { Reset(); } 
  • trunk/src/bindings/scripts/scripts/zone/zulaman/boss_janalai.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    111111}; 
    112112 
    113 struct MANGOS_DLL_DECL boss_janalaiAI : public ScriptedAI 
     113struct TRINITY_DLL_DECL boss_janalaiAI : public ScriptedAI 
    114114{ 
    115115    boss_janalaiAI(Creature *c) : ScriptedAI(c) 
     
    461461} 
    462462 
    463 struct MANGOS_DLL_DECL mob_jandalai_firebombAI : public ScriptedAI 
     463struct TRINITY_DLL_DECL mob_jandalai_firebombAI : public ScriptedAI 
    464464{ 
    465465    mob_jandalai_firebombAI(Creature *c) : ScriptedAI(c){Reset();} 
     
    493493} 
    494494 
    495 struct MANGOS_DLL_DECL mob_amanishi_hatcherAI : public ScriptedAI 
     495struct TRINITY_DLL_DECL mob_amanishi_hatcherAI : public ScriptedAI 
    496496{ 
    497497    mob_amanishi_hatcherAI(Creature *c) : ScriptedAI(c) 
     
    670670} 
    671671 
    672 struct MANGOS_DLL_DECL mob_hatchlingAI : public ScriptedAI 
     672struct TRINITY_DLL_DECL mob_hatchlingAI : public ScriptedAI 
    673673{ 
    674674    mob_hatchlingAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulaman/boss_nalorakk.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    7373#define SOUND_YELL_TOBEAR       12072 
    7474 
    75 struct MANGOS_DLL_DECL boss_nalorakkAI : public ScriptedAI 
     75struct TRINITY_DLL_DECL boss_nalorakkAI : public ScriptedAI 
    7676{ 
    7777    boss_nalorakkAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulaman/instance_zulaman.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define RAND_VENDOR    2 
    2929 
    30 struct MANGOS_DLL_DECL instance_zulaman : public ScriptedInstance 
     30struct TRINITY_DLL_DECL instance_zulaman : public ScriptedInstance 
    3131{ 
    3232    instance_zulaman(Map *Map) : ScriptedInstance(Map) {Initialize();}; 
  • trunk/src/bindings/scripts/scripts/zone/zulaman/zulaman.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737#define ENTRY_FOREST_FROG           24396 
    3838 
    39 struct MANGOS_DLL_DECL npc_forest_frogAI : public ScriptedAI 
     39struct TRINITY_DLL_DECL npc_forest_frogAI : public ScriptedAI 
    4040{ 
    4141    npc_forest_frogAI(Creature* c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulfarrak/zulfarrak.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4141#define GOSSIP_BLY                  "[PH] In that case, i will take my reward!" 
    4242 
    43 struct MANGOS_DLL_DECL npc_sergeant_blyAI : public ScriptedAI 
     43struct TRINITY_DLL_DECL npc_sergeant_blyAI : public ScriptedAI 
    4444{ 
    4545    npc_sergeant_blyAI(Creature *c) : ScriptedAI(c) 
     
    5252 
    5353    uint32 ShieldBash_Timer; 
    54     uint32 Revenge_Timer;                                   //this is wrong, spell should never be used unless m_creature->getVictim() dodge, parry or block attack. Mangos support required. 
     54    uint32 Revenge_Timer;                                   //this is wrong, spell should never be used unless m_creature->getVictim() dodge, parry or block attack. Trinity support required. 
    5555 
    5656    void Reset() 
     
    139139#define GOSSIP_WEEGLI               "[PH] Please blow up the door." 
    140140 
    141 struct MANGOS_DLL_DECL npc_weegli_blastfuseAI : public ScriptedAI 
     141struct TRINITY_DLL_DECL npc_weegli_blastfuseAI : public ScriptedAI 
    142142{ 
    143143    npc_weegli_blastfuseAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_arlokk.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3737#define SOUND_DEATH       8412 
    3838 
    39 struct MANGOS_DLL_DECL boss_arlokkAI : public ScriptedAI 
     39struct TRINITY_DLL_DECL boss_arlokkAI : public ScriptedAI 
    4040{ 
    4141    boss_arlokkAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_gahzranka.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_SLAM                   24326 
    2929 
    30 struct MANGOS_DLL_DECL boss_gahzrankaAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_gahzrankaAI : public ScriptedAI 
    3131{ 
    3232    boss_gahzrankaAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_grilek.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_GROUNDTREMOR            6524 
    2929 
    30 struct MANGOS_DLL_DECL boss_grilekAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_grilekAI : public ScriptedAI 
    3131{ 
    3232    boss_grilekAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hakkar.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4343#define SAY_SLAY          "Fleeing will do you no good, mortals!" 
    4444 
    45 struct MANGOS_DLL_DECL boss_hakkarAI : public ScriptedAI 
     45struct TRINITY_DLL_DECL boss_hakkarAI : public ScriptedAI 
    4646{ 
    4747    boss_hakkarAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hazzarah.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_SLEEP            24664 
    2929 
    30 struct MANGOS_DLL_DECL boss_hazzarahAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_hazzarahAI : public ScriptedAI 
    3131{ 
    3232    boss_hazzarahAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jeklik.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4444#define SOUND_DEATH       8422 
    4545 
    46 struct MANGOS_DLL_DECL boss_jeklikAI : public ScriptedAI 
     46struct TRINITY_DLL_DECL boss_jeklikAI : public ScriptedAI 
    4747{ 
    4848    boss_jeklikAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    215215 
    216216//Flying Bat 
    217 struct MANGOS_DLL_DECL mob_batriderAI : public ScriptedAI 
     217struct TRINITY_DLL_DECL mob_batriderAI : public ScriptedAI 
    218218{ 
    219219    mob_batriderAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jindo.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4242#define SOUND_AGGRO       8425 
    4343 
    44 struct MANGOS_DLL_DECL boss_jindoAI : public ScriptedAI 
     44struct TRINITY_DLL_DECL boss_jindoAI : public ScriptedAI 
    4545{ 
    4646    boss_jindoAI(Creature *c) : ScriptedAI(c) 
     
    162162 
    163163//Healing Ward 
    164 struct MANGOS_DLL_DECL mob_healing_wardAI : public ScriptedAI 
     164struct TRINITY_DLL_DECL mob_healing_wardAI : public ScriptedAI 
    165165{ 
    166166    mob_healing_wardAI(Creature *c) : ScriptedAI(c) 
     
    201201 
    202202//Shade of Jindo 
    203 struct MANGOS_DLL_DECL mob_shade_of_jindoAI : public ScriptedAI 
     203struct TRINITY_DLL_DECL mob_shade_of_jindoAI : public ScriptedAI 
    204204{ 
    205205    mob_shade_of_jindoAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_mandokir.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4343#define SAY_KILL                "DING!" 
    4444 
    45 struct MANGOS_DLL_DECL boss_mandokirAI : public ScriptedAI 
     45struct TRINITY_DLL_DECL boss_mandokirAI : public ScriptedAI 
    4646{ 
    4747    boss_mandokirAI(Creature *c) : ScriptedAI(c) 
     
    245245 
    246246//Ohgan 
    247 struct MANGOS_DLL_DECL mob_ohganAI : public ScriptedAI 
     247struct TRINITY_DLL_DECL mob_ohganAI : public ScriptedAI 
    248248{ 
    249249    mob_ohganAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_marli.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    4040#define SOUND_DEATH       8423 
    4141 
    42 struct MANGOS_DLL_DECL boss_marliAI : public ScriptedAI 
     42struct TRINITY_DLL_DECL boss_marliAI : public ScriptedAI 
    4343{ 
    4444    boss_marliAI(Creature *c) : ScriptedAI(c) {Reset();} 
     
    194194 
    195195//Spawn of Marli 
    196 struct MANGOS_DLL_DECL mob_spawn_of_marliAI : public ScriptedAI 
     196struct TRINITY_DLL_DECL mob_spawn_of_marliAI : public ScriptedAI 
    197197{ 
    198198    mob_spawn_of_marliAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_renataki.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_THOUSANDBLADES 24649 
    2929 
    30 struct MANGOS_DLL_DECL boss_renatakiAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_renatakiAI : public ScriptedAI 
    3131{ 
    3232    boss_renatakiAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_thekal.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    5454#define SOUND_DEATH       8424 
    5555 
    56 struct MANGOS_DLL_DECL boss_thekalAI : public ScriptedAI 
     56struct TRINITY_DLL_DECL boss_thekalAI : public ScriptedAI 
    5757{ 
    5858    boss_thekalAI(Creature *c) : ScriptedAI(c) 
     
    243243 
    244244//Zealot Lor'Khan 
    245 struct MANGOS_DLL_DECL mob_zealot_lorkhanAI : public ScriptedAI 
     245struct TRINITY_DLL_DECL mob_zealot_lorkhanAI : public ScriptedAI 
    246246{ 
    247247    mob_zealot_lorkhanAI(Creature *c) : ScriptedAI(c) 
     
    379379 
    380380//Zealot Zath 
    381 struct MANGOS_DLL_DECL mob_zealot_zathAI : public ScriptedAI 
     381struct TRINITY_DLL_DECL mob_zealot_zathAI : public ScriptedAI 
    382382{ 
    383383    mob_zealot_zathAI(Creature *c) : ScriptedAI(c) 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_venoxis.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    3838#define SOUND_AGGRO       8421 
    3939 
    40 struct MANGOS_DLL_DECL boss_venoxisAI : public ScriptedAI 
     40struct TRINITY_DLL_DECL boss_venoxisAI : public ScriptedAI 
    4141{ 
    4242    boss_venoxisAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_wushoolay.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2828#define SPELL_LIGHTNINGWAVE          24819 
    2929 
    30 struct MANGOS_DLL_DECL boss_wushoolayAI : public ScriptedAI 
     30struct TRINITY_DLL_DECL boss_wushoolayAI : public ScriptedAI 
    3131{ 
    3232    boss_wushoolayAI(Creature *c) : ScriptedAI(c) {Reset();} 
  • trunk/src/bindings/scripts/scripts/zone/zulgurub/instance_zulgurub.cpp

    r46 r48  
    77 * This program is distributed in the hope that it will be useful, 
    88 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
    1010 * GNU General Public License for more details. 
    1111 * 
    1212 * You should have received a copy of the GNU General Public License 
    1313 * along with this program; if not, write to the Free Software 
    14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
     14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1515 */ 
    1616 
     
    2525#include "def_zulgurub.h" 
    2626 
    27 struct MANGOS_DLL_DECL instance_zulgurub : public ScriptedInstance 
     27struct TRINITY_DLL_DECL instance_zulgurub : public ScriptedInstance 
    2828{ 
    2929    instance_zulgurub(Map *Map) : ScriptedInstance(Map) {Initialize();};