/* Copyright (C) 2006,2007 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../sc_defines.h"
#include "../../../../game/Item.h"
#include "../../../../game/Player.h"
#include "../../../../game/SpellAuras.h"
#define SPELL_FLYING_MOUNT 37015
bool ItemUse_flying_mount(Player *player, Item* _Item, SpellCastTargets const& targets)
{
SpellEntry const *spellInfo = GetSpellStore()->LookupEntry(SPELL_FLYING_MOUNT);
if(spellInfo)
{
for(uint32 i = 0;i<3;i++)
{
uint8 eff = spellInfo->Effect;
if (eff>=TOTAL_SPELL_EFFECTS)
continue;
if (eff == SPELL_EFFECT_APPLY_AURA || eff == SPELL_EFFECT_PERSISTENT_AREA_AURA)
{
Aura *Aur = new Aura(spellInfo, i, NULL, player);
player->AddAura(Aur);
}
}
}
return true;
}
void AddSC_flying_mount()
{
Script *newscript;
newscript = new Script;
newscript->Name="flying_mount";
newscript->pItemUse = ItemUse_flying_mount;
m_scripts[nrscripts++] = newscript;
}
|