* Script-side changes for my last commit.

--HG--
branch : trunk
This commit is contained in:
XTZGZoReX
2010-08-07 13:46:08 +02:00
parent 87483be1e7
commit bcfc58a72d
15 changed files with 42 additions and 42 deletions

View File

@@ -175,7 +175,7 @@ class mob_av_marshal_or_warmaster : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new mob_av_marshal_or_warmasterAI(creature);
}

View File

@@ -84,7 +84,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new mob_water_elementalAI(creature);
}
@@ -195,7 +195,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_balindaAI(creature);
}

View File

@@ -129,7 +129,7 @@ public:
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_drektharAI(creature);
}

View File

@@ -120,7 +120,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_galvangarAI(creature);
}

View File

@@ -118,7 +118,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_vanndarAI(creature);
}

View File

@@ -258,7 +258,7 @@ class example_creature : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new example_creatureAI(creature);
}

View File

@@ -178,7 +178,7 @@ class example_escort : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new example_escortAI(creature);
}

View File

@@ -137,7 +137,7 @@ class boss_gatewatcher_iron_hand : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new boss_gatewatcher_iron_handAI(creature);
}

View File

@@ -169,7 +169,7 @@ class boss_nethermancer_sepethrea : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new boss_nethermancer_sepethreaAI(creature);
}
@@ -256,7 +256,7 @@ class mob_ragin_flames : public CreatureScript
}
};
CreatureAI* OnGetAI(Creature* creature) const
CreatureAI* GetAI(Creature* creature) const
{
return new mob_ragin_flamesAI(creature);
}

View File

@@ -123,7 +123,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_emerissAI(creature);
}

View File

@@ -190,7 +190,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_taerarAI(creature);
}
@@ -241,7 +241,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_shadeoftaerarAI(creature);
}

View File

@@ -142,7 +142,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new boss_ysondreAI(creature);
}
@@ -183,7 +183,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new mob_dementeddruidsAI(creature);
}

View File

@@ -43,7 +43,7 @@ class guard_generic : public CreatureScript
public:
guard_generic() : CreatureScript("guard_generic") { }
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new guardAI(creature);
}
@@ -58,7 +58,7 @@ class guard_orgrimmar : public CreatureScript
public:
guard_orgrimmar() : CreatureScript("guard_orgrimmar") { }
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new guardAI_orgrimmar(creature);
}
@@ -133,7 +133,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new guard_shattrath_aldorAI(creature);
}
@@ -203,7 +203,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new guard_shattrath_scryerAI(creature);
}
@@ -218,7 +218,7 @@ class guard_stormwind : public CreatureScript
public:
guard_stormwind() : CreatureScript("guard_stormwind") { }
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new guardAI_stormwind(creature);
}

View File

@@ -159,7 +159,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new generic_creatureAI(creature);
}
@@ -195,7 +195,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new trigger_periodicAI(creature);
}
@@ -216,7 +216,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new trigger_deathAI(creature);
}

View File

@@ -255,7 +255,7 @@ public:
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_air_force_botsAI(creature);
}
@@ -372,7 +372,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_chicken_cluckAI(creature);
}
@@ -472,7 +472,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_dancing_flamesAI(creature);
}
@@ -681,7 +681,7 @@ public:
return true;
}
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_doctorAI(creature);
}
@@ -801,7 +801,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature)
CreatureAI *GetAI(Creature *creature)
{
return new npc_injured_patientAI(creature);
}
@@ -1073,7 +1073,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_garments_of_questsAI(creature);
}
@@ -1116,7 +1116,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature)
CreatureAI *GetAI(Creature *creature)
{
return new npc_guardianAI(creature);
}
@@ -1526,7 +1526,7 @@ public:
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_steam_tonkAI(creature);
}
@@ -1568,7 +1568,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_tonk_mineAI(creature);
}
@@ -1596,7 +1596,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_brewfest_revelerAI(creature);
}
@@ -1636,7 +1636,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_winter_revelerAI(creature);
}
@@ -1758,7 +1758,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_snake_trap_serpentsAI(creature);
}
@@ -1843,7 +1843,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature)
CreatureAI *GetAI(Creature *creature)
{
return new mob_mojoAI(creature);
}
@@ -1889,7 +1889,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_mirror_imageAI(creature);
}
@@ -1981,7 +1981,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_ebon_gargoyleAI(creature);
}
@@ -2002,7 +2002,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_lightwellAI(creature);
}
@@ -2081,7 +2081,7 @@ public:
void MoveInLineOfSight(Unit * /*who*/){return;}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_training_dummyAI(creature);
}
@@ -2119,7 +2119,7 @@ public:
}
};
CreatureAI *OnGetAI(Creature *creature) const
CreatureAI *GetAI(Creature *creature) const
{
return new npc_shadowfiendAI(creature);
}