mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
184 lines
6.5 KiB
C++
184 lines
6.5 KiB
C++
/*
|
|
* MaNGOS is a full featured server for World of Warcraft, supporting
|
|
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
|
|
*
|
|
* Copyright (C) 2005-2014 MaNGOS project <http://getmangos.eu>
|
|
*
|
|
* 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
|
|
*
|
|
* World of Warcraft, and all World of Warcraft or Warcraft art, images,
|
|
* and lore are copyrighted by Blizzard Entertainment, Inc.
|
|
*/
|
|
|
|
#include "sc_defines.h"
|
|
|
|
#include "../../../game/Player.h"
|
|
|
|
uint32 GetSkillLevel(Player* player, uint32 trskill)
|
|
{
|
|
// Returns the level of some tradetrskill known by player
|
|
// Need to add missing spells
|
|
|
|
uint32 spell_apprentice = 0;
|
|
uint32 spell_journeyman = 0;
|
|
uint32 spell_expert = 0;
|
|
uint32 spell_artisan = 0;
|
|
uint32 spell_master = 0;
|
|
uint32 spell_grand_master = 0;
|
|
|
|
switch (trskill)
|
|
{
|
|
case TRADESKILL_ALCHEMY:
|
|
spell_apprentice = 2259;
|
|
spell_journeyman = 3101;
|
|
spell_expert = 3464;
|
|
spell_artisan = 11611;
|
|
spell_master = 28596; // teached by 28597
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_BLACKSMITHING:
|
|
spell_apprentice = 2018;
|
|
spell_journeyman = 3100;
|
|
spell_expert = 8768;
|
|
spell_artisan = 11454;
|
|
spell_master = 29844; // teached by 29845
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_COOKING:
|
|
spell_apprentice = 2550;
|
|
spell_journeyman = 3102;
|
|
spell_expert = 3413;
|
|
spell_artisan = 18260;
|
|
spell_master = 33359; // teached by 33361
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_ENCHANTING:
|
|
spell_apprentice = 7411;
|
|
spell_journeyman = 7412;
|
|
spell_expert = 7413;
|
|
spell_artisan = 13920;
|
|
spell_master = 28029; // teached by 28030
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_ENGINEERING:
|
|
spell_apprentice = 4036;
|
|
spell_journeyman = 4037;
|
|
spell_expert = 4038;
|
|
spell_artisan = 12656;
|
|
spell_master = 30350; // teached by 30351
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_FIRSTAID:
|
|
spell_apprentice = 3273;
|
|
spell_journeyman = 3274;
|
|
spell_expert = 7924;
|
|
spell_artisan = 10846;
|
|
spell_master = 27028; // teached by 27029
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_HERBALISM:
|
|
spell_apprentice = 2372;
|
|
spell_journeyman = 2373;
|
|
spell_expert = 3571;
|
|
spell_artisan = 11994;
|
|
spell_master = 0;
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_LEATHERWORKING:
|
|
spell_apprentice = 2108;
|
|
spell_journeyman = 3104;
|
|
spell_expert = 20649;
|
|
spell_artisan = 10662;
|
|
spell_master = 32549; // teached by 32550
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_POISONS:
|
|
spell_apprentice = 0;
|
|
spell_journeyman = 0;
|
|
spell_expert = 0;
|
|
spell_artisan = 0;
|
|
spell_master = 0;
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_TAILORING:
|
|
spell_apprentice = 3908;
|
|
spell_journeyman = 3909;
|
|
spell_expert = 3910;
|
|
spell_artisan = 12180;
|
|
spell_master = 26790; // teached by 26791
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_MINING:
|
|
spell_apprentice = 2581;
|
|
spell_journeyman = 2582;
|
|
spell_expert = 3568;
|
|
spell_artisan = 10249;
|
|
spell_master = 29354; // teached by 29355
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_FISHING:
|
|
spell_apprentice = 7733;
|
|
spell_journeyman = 7734;
|
|
spell_expert = 7736;
|
|
spell_artisan = 18249;
|
|
spell_master = 33098; // teached by 33100
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_SKINNING:
|
|
spell_apprentice = 8615;
|
|
spell_journeyman = 8619;
|
|
spell_expert = 8620;
|
|
spell_artisan = 10769;
|
|
spell_master = 32679; // teached by 32678
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_JEWELCRAFTING:
|
|
spell_apprentice = 25229; // teached by 25245
|
|
spell_journeyman = 25230; // teached by 25246
|
|
spell_expert = 28894; // teached by 28896
|
|
spell_artisan = 28895; // teached by 28899
|
|
spell_master = 28897; // teached by 28901
|
|
spell_grand_master = 0;
|
|
break;
|
|
case TRADESKILL_INSCRIPTION:
|
|
spell_apprentice = 0;
|
|
spell_journeyman = 0;
|
|
spell_expert = 0;
|
|
spell_artisan = 0;
|
|
spell_master = 0;
|
|
spell_grand_master = 0;
|
|
break;
|
|
}
|
|
|
|
if (player->HasSpell(spell_grand_master))
|
|
return TRADESKILL_LEVEL_GRAND_MASTER;
|
|
|
|
if (player->HasSpell(spell_master))
|
|
return TRADESKILL_LEVEL_MASTER;
|
|
|
|
if (player->HasSpell(spell_artisan))
|
|
return TRADESKILL_LEVEL_ARTISAN;
|
|
|
|
if (player->HasSpell(spell_expert))
|
|
return TRADESKILL_LEVEL_EXPERT;
|
|
|
|
if (player->HasSpell(spell_journeyman))
|
|
return TRADESKILL_LEVEL_JOURNEYMAN;
|
|
|
|
if (player->HasSpell(spell_apprentice))
|
|
return TRADESKILL_LEVEL_APPRENTICE;
|
|
|
|
return TRADESKILL_LEVEL_NONE;
|
|
}
|