Looking4Group / L4G_Core

Looking4Group Core
http://looking4group.eu
GNU General Public License v2.0
37 stars 69 forks source link

Karazhan/Opera Event (Red Riding Hood) - missing gossips #2855

Open Selphius opened 8 years ago

Selphius commented 8 years ago

Proper gossips can be seen here: https://www.youtube.com/watch?v=7x9P7CNeAOs at 4;05

Gossip: Why grandmother, what big ears you have. Response: Why, the better to hear you with my dear.

Gossip: Why grandmother, what big eyes you have. Response: Why, the better to see you with my dear.

Gossip: Why grandmother, what phat lewt youy have! Response + summon: RGRGRGRHGHG...The better to OWN you with!

AnonXS commented 8 years ago

https://github.com/Looking4Group/L4G_Core/blob/57fa1ba630e7a6c2fb45b25183b542bb0f1cf41b/src/scripts/scripts/zone/karazhan/bosses_opera.cpp#L746

ghost commented 7 years ago

Not sure how applicable it is to your core, but here is how I did it on mangos.


-- Removes old gossip text -3532005 and adds the correct 3 gossip texts.
DELETE FROM `gossip_texts` WHERE `entry` IN (-3532005,-3532019,-3532020,-3532021); 
INSERT INTO `gossip_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `comment`) VALUES 
(-3532019, 'Oh, grandmother, what big ears you have.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'grandma GOSSIP_ITEM_GRANDMA1'),
(-3532020, 'Oh, grandmother, what big eyes you have.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'grandma GOSSIP_ITEM_GRANDMA2'),
(-3532021, 'Oh, grandmother, what phat lewts you have.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'grandma GOSSIP_ITEM_GRANDMA3');

C++ Part: http://pastebin.com/DRAtP61V