What's new

[NPC] Lord Thorval - correct entries for creature texts (V9)

Inc

Gold Supporter
Veteran Member
131
2018
20
Code:
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='0') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='1') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='2') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='3') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='4') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='5') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='6') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='7') AND (`id`='0')
UPDATE `creature_text` SET `entry`='28472' WHERE (`entry`='2847206') AND (`groupid`='8') AND (`id`='0')
 

eyerobot

Gold Supporter
Superior Member
916
2015
24
Location
Barryton Michigan USA
Thank you. FYI whichever database tool your using is leaving off the trailing semicolons at the end of your queries. Heidisql is what most of us use.
 

randall

Verified Member
4
2018
0
Updating this for HeidiSQL users:
Code:
DELETE FROM creature_text WHERE entry='28472';
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '0', '0', 'As disciples of blood, you strive to master the very lifeforce of your enemies.', '12', '0', '100', '1', '0', '0', '29867', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '1', '0', 'Be it by blade or incantation, blood feeds our attacks and weakens our foes.', '12', '0', '100', '1', '0', '0', '29868', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '2', '0', 'True masters learn to make blood serve more than just their strength in battle.', '12', '0', '100', '1', '0', '0', '29869', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '3', '0', 'Stripping energy from our foes, both fighting and fallen, allows us to persevere where lesser beigns falls exhausted.', '12', '0', '100', '1', '0', '0', '29870', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '4', '0', 'And every foe that falls, energy sapped and stolen, only further fuels our assault.', '12', '0', '100', '1', '0', '0', '29871', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '5', '0', 'As masters of blood, we know battle without end...', '12', '0', '100', '1', '0', '0', '29872', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '6', '0', 'We know hunger never to be quenched...', '12', '0', '100', '1', '0', '0', '29873', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '7', '0', 'We know power never to be overcome...', '12', '0', '100', '1', '0', '0', '29874', 'Lord Thorval');
INSERT INTO creature_text (entry,groupid,id,text,`type`,`language`,probability,emote,duration,sound,BroadcastTextId,`comment`) VALUES ('28472', '8', '0', 'As masters of blood, we are masters of life and death itself. Against us, even hope falls drained and lifeless.', '12', '0', '100', '1', '0', '0', '29875', 'Lord Thorval');
(and fixed a typo - Agains us was changed to Against us)
 
Top