TrinityCore
Loading...
Searching...
No Matches
NPCPackets.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "NPCPackets.h"
19
24
26{
27 _worldPacket << TrainerGUID;
28 _worldPacket << int32(TrainerType);
29
30 _worldPacket << int32(Spells.size());
31 for (TrainerListSpell const& spell : Spells)
32 {
33 _worldPacket << int32(spell.SpellID);
34 _worldPacket << uint8(spell.Usable);
35 _worldPacket << int32(spell.MoneyCost);
36 _worldPacket.append(spell.PointCost.data(), spell.PointCost.size());
37 _worldPacket << uint8(spell.ReqLevel);
38 _worldPacket << int32(spell.ReqSkillLine);
39 _worldPacket << int32(spell.ReqSkillRank);
40 _worldPacket.append(spell.ReqAbility.data(), spell.ReqAbility.size());
41 }
42
43 _worldPacket << Greeting;
44
45 return &_worldPacket;
46}
47
49{
50 _worldPacket << int32(Flags);
51 _worldPacket << Pos;
52 _worldPacket << int32(Icon);
53 _worldPacket << int32(Importance);
54 _worldPacket << Name;
55
56 return &_worldPacket;
57}
58
60{
61 _worldPacket >> TrainerGUID;
62 _worldPacket >> SpellID;
63}
64
66{
67 _worldPacket << TrainerGUID;
68 _worldPacket << int32(SpellID);
69 _worldPacket << int32(TrainerFailedReason);
70
71 return &_worldPacket;
72}
73
75{
76 _worldPacket << TrainerGUID;
77 _worldPacket << int32(SpellID);
78
79 return &_worldPacket;
80}
uint8_t uint8
Definition Define.h:135
int32_t int32
Definition Define.h:129
Spells
Definition PlayerAI.cpp:32
WorldPacket const * Write() override
WorldPacket const * Write() override
WorldPacket const * Write() override
WorldPacket const * Write() override
WorldPacket _worldPacket
Definition Packet.h:42