AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
go_bashir_crystalforge Class Reference
Inheritance diagram for go_bashir_crystalforge:
GameObjectScript ScriptObject UpdatableScript< GameObject >

Public Member Functions

 go_bashir_crystalforge ()
 
bool OnGossipHello (Player *player, GameObject *go) override
 
bool OnGossipSelect (Player *player, GameObject *go, uint32, uint32 action) override
 
- Public Member Functions inherited from GameObjectScript
bool IsDatabaseBound () const override
 
virtual bool OnGossipHello (Player *, GameObject *)
 
virtual bool OnGossipSelect (Player *, GameObject *, uint32, uint32)
 
virtual bool OnGossipSelectCode (Player *, GameObject *, uint32, uint32, const char *)
 
virtual bool OnQuestAccept (Player *, GameObject *, Quest const *)
 
virtual bool OnQuestReward (Player *, GameObject *, Quest const *, uint32)
 
virtual uint32 GetDialogStatus (Player *, GameObject *)
 
virtual void OnDestroyed (GameObject *, Player *)
 
virtual void OnDamaged (GameObject *, Player *)
 
virtual void OnLootStateChanged (GameObject *, uint32, Unit *)
 
virtual void OnGameObjectStateChanged (GameObject *, uint32)
 
virtual GameObjectAIGetAI (GameObject *) const
 
- Public Member Functions inherited from ScriptObject
virtual bool IsDatabaseBound () const
 
virtual bool isAfterLoadScript () const
 
virtual void checkValidity ()
 
const std::string & GetName () const
 
- Public Member Functions inherited from UpdatableScript< GameObject >
virtual void OnUpdate (GameObject *, uint32)
 

Additional Inherited Members

- Protected Member Functions inherited from GameObjectScript
 GameObjectScript (const char *name)
 
- Protected Member Functions inherited from ScriptObject
 ScriptObject (const char *name)
 
virtual ~ScriptObject ()=default
 
- Protected Member Functions inherited from UpdatableScript< GameObject >
 UpdatableScript ()=default
 

Detailed Description

Constructor & Destructor Documentation

◆ go_bashir_crystalforge()

go_bashir_crystalforge::go_bashir_crystalforge ( )
inline
1210: GameObjectScript("go_bashir_crystalforge") { }
Definition: ScriptMgr.h:759

Member Function Documentation

◆ OnGossipHello()

bool go_bashir_crystalforge::OnGossipHello ( Player player,
GameObject go 
)
inlineoverridevirtual

Reimplemented from GameObjectScript.

1213 {
1214 if (go->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER) /* != GAMEOBJECT_TYPE_QUESTGIVER) */
1215 player->PrepareQuestMenu(go->GetGUID()); /* return true*/
1216
1219
1221
1222 return true;
1223 }
void SendGossipMenuFor(Player *player, uint32 npcTextID, ObjectGuid const guid)
Definition: ScriptedGossip.cpp:45
void AddGossipItemFor(Player *player, uint32 icon, std::string const &text, uint32 sender, uint32 action)
Definition: ScriptedGossip.cpp:28
@ GOSSIP_SENDER_MAIN
Definition: ScriptedGossip.h:70
@ GOSSIP_ACTION_INFO_DEF
Definition: ScriptedGossip.h:68
@ GOSSIP_ICON_CHAT
Definition: GossipDef.h:60
#define GOSSIP_BASHIR_CRYSTALFORGE_TEXT
Definition: go_scripts.cpp:1195
#define GOSSIP_BASHIR_CRYSTALFORGE_ITEM_1
Definition: go_scripts.cpp:1197
#define GOSSIP_BASHIR_CRYSTALFORGE_ITEM_5
Definition: go_scripts.cpp:1198
@ GAMEOBJECT_TYPE_QUESTGIVER
Definition: SharedDefines.h:1534
GameobjectTypes GetGoType() const
Definition: GameObject.h:205
static ObjectGuid GetGUID(Object const *o)
Definition: Object.h:106
void PrepareQuestMenu(ObjectGuid guid)
Definition: PlayerQuest.cpp:38

References AddGossipItemFor(), GAMEOBJECT_TYPE_QUESTGIVER, GameObject::GetGoType(), Object::GetGUID(), GOSSIP_ACTION_INFO_DEF, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_1, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_5, GOSSIP_BASHIR_CRYSTALFORGE_TEXT, GOSSIP_ICON_CHAT, GOSSIP_SENDER_MAIN, Player::PrepareQuestMenu(), and SendGossipMenuFor().

◆ OnGossipSelect()

bool go_bashir_crystalforge::OnGossipSelect ( Player player,
GameObject go,
uint32  ,
uint32  action 
)
inlineoverridevirtual

Reimplemented from GameObjectScript.

1226 {
1227 ClearGossipMenuFor(player);
1228 switch (action)
1229 {
1231 player->CastSpell(player, SPELL_CREATE_1_FLASK_OF_SORCERER, false);
1234 break;
1235 case GOSSIP_ACTION_INFO_DEF + 1:
1236 player->CastSpell(player, SPELL_CREATE_5_FLASK_OF_SORCERER, false);
1239 break;
1240 case GOSSIP_ACTION_INFO_DEF + 2:
1244 break;
1245 }
1246 return true;
1247 }
void ClearGossipMenuFor(Player *player)
Definition: ScriptedGossip.cpp:22
#define GOSSIP_BASHIR_CRYSTALFORGE_ITEM_RETURN
Definition: go_scripts.cpp:1199
@ SPELL_CREATE_5_FLASK_OF_SORCERER
Definition: go_scripts.cpp:1204
@ SPELL_CREATE_1_FLASK_OF_SORCERER
Definition: go_scripts.cpp:1203
#define GOSSIP_BASHIR_CRYSTALFORGE_ITEM_TEXT_RETURN
Definition: go_scripts.cpp:1196
SpellCastResult CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=nullptr, AuraEffect const *triggeredByAura=nullptr, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:1169

References AddGossipItemFor(), Unit::CastSpell(), ClearGossipMenuFor(), Object::GetGUID(), GOSSIP_ACTION_INFO_DEF, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_1, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_5, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_RETURN, GOSSIP_BASHIR_CRYSTALFORGE_ITEM_TEXT_RETURN, GOSSIP_BASHIR_CRYSTALFORGE_TEXT, GOSSIP_ICON_CHAT, GOSSIP_SENDER_MAIN, SendGossipMenuFor(), SPELL_CREATE_1_FLASK_OF_SORCERER, and SPELL_CREATE_5_FLASK_OF_SORCERER.