What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

"The Great Bank Heist"

shakazara

New Member
Joined
Jan 15, 2010
Messages
212
Reaction score
10
I am currently working on a 1-5 questing profile for goblins, and all quests is scripted except the quest: "The Great Bank Heist". What happens is, you need to use the bank vault object, then it will tell you what spell to use to get into the vault (looks like this):
q14122.webp

I am making a plugin in order to make this work, currently it can run to the vault and enter it, aswell as pressing the buttons and leave it again. My problem is, that i can't seem to get the text for what spell to use... i've tried getting system messages through chat, but that didn't work.

Anyone got any ideas on how to retrieve this text?
 
Last edited:
is it the same spell everytime? is it the spell that you use like if you were tracking the quest in wow theres a little button you can press next to the objective?
 
is it the same spell everytime? is it the spell that you use like if you were tracking the quest in wow theres a little button you can press next to the objective?
nope, the spell that is needed to be cast is completely random, the only way to know what spell is by looking at the text (as shown on the screenshot)
 
nope, the spell that is needed to be cast is completely random, the only way to know what spell is by looking at the text (as shown on the screenshot)

if you have any C# skills, look at Bobby's behavior in the Hyjal folder. I think it's called Mental something. he had to read chat and press 1 or 2 for whatever the question asked
 
What Bobby does in his Mental training behavior is, that there is 2 debuffs with the same name, one for the "yes" and one for the "no" answer, so he can just read the buff and then press the button.
That, unfortunately, isn't possible with "The Great Bank Heist", where only 1 debuff exists.
 
I am currently working on a 1-5 questing profile for goblins, and all quests is scripted except the quest: "The Great Bank Heist". What happens is, you need to use the bank vault object, then it will tell you what spell to use to get into the vault (looks like this):
View attachment 20732

I am making a plugin in order to make this work, currently it can run to the vault and enter it, aswell as pressing the buttons and leave it again. My problem is, that i can't seem to get the text for what spell to use... i've tried getting system messages through chat, but that didn't work.

Anyone got any ideas on how to retrieve this text?
I think those are 'emotes'. Start the quest and type /eventTrace in wow and it'll show all the events that fire. You can hook the event in HB to check the text. Only issue is your plugin would be language specific.
 
Last edited:
I think those are 'emotes'. Start the quest and type /eventTrace in wow and it'll show all the events that fire. You can hook the event in HB to check the text. Only issue is your plugin would be language specific.

Thank you very much, that helped alot. It was actually a CHAT_MSG_RAID_BOSS_WHISPER event. The plugin for it is done, and now under some testing :).
about the Language specific issue, then i'd probably get the words for the actions in other languages.
 
Thank you very much, that helped alot. It was actually a CHAT_MSG_RAID_BOSS_WHISPER event. The plugin for it is done, and now under some testing :).
about the Language specific issue, then i'd probably get the words for the actions in other languages.

Do you still have this plugin?
 
Back
Top