我的账户
登录
我没有任何Firestorm账号
注册

反馈 : Hira Snowdawn

反馈详情

状态
标题 : Hira Snowdawn
状态 : 0
创建日期 : July 9, 2017
更新日期 : July 10, 2017 17:27:04
扩展 :
种类 : 其他
子分类 : - - -
帮助 : - - -
优先 : 普通
等级 :
1 0
Hira Snowdawn
July 9, 2017 00:41:25

Realm: Sylvanas

Character: Brunark, Alliance, 78


When i talk to this NPC, it does not bring up the flying training box.



This issue can be reproduced by Right clicking this NPC

附加信息
Hira Snowdawn
July 10, 2017 03:47:30

She should teach the same spells as http://www.wowhead.com/npc=43769/bralla-cloudwing -- Alli
and http://www.wowhead.com/npc=44919/maztha -- Horde

Solution for TrinityCore:
SELECT `ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel` FROM `npc_trainer` WHERE ID=43769 -- Bralla Cloudwing
-- these records need to be copied with ID changed to 31238
-- if it returns 1 record with SpellID = 202012, then the following insert will do the copy:
SET @RidingHighlevel := 202012;
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`)
VALUES (31238,-@RidingHighlevel,0,0,0,0); -- Trainer Hira Snowdawn - Dalaran

Hira Snowdawn
July 10, 2017 12:14:30

Alternatively the solution used on WoD (same source):
http://us.forum.firestorm-servers.com/index.php?/topic/18309-warlords-of-draenor-hira-snowdawn/

Hira Snowdawn
July 10, 2017 12:32:03

The report on WoD: https://firestorm-servers.com/en/report/see_report/11801

Hira Snowdawn
July 10, 2017 17:27:04

The npcflag needs to be altered too, she's a Flight Master now, but should be Trainer + Vendor.
https://trinitycore.atlassian.net/wiki/display/tc/creature_template#creature_template-npcflag
add: 16 0x0000 0010 Trainer
add: 128 0x0000 0080 Vendor
rem: 8192 0x0000 2000 Flight Master

to check:
SELECT `npcflag` FROM `creature_template` WHERE `entry`=31238
should return 8192 (Flight Master) before applying the fix

to fix:
UPDATE `creature_template` SET `npcflag`=16+128 WHERE `entry`=31238;

你必须 登录后 才可以答复或评论.