diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-30 11:03:44 +0200 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-30 11:03:44 +0200 |
commit | 9d3810c3c83c8d7264a698cf655442b89b1b55d2 (patch) | |
tree | 641dcbe5145a2bb8d18c5b505813b7f8997081a7 | |
parent | 88413de9d848dfd167779c0172d4683ce64b9497 (diff) |
DB/Gossip: update npc_text info for Ravenholdt Guards
- all the information is available in broadcast_text
- npc_text updated both for ID 5934 and 5935
-rw-r--r-- | sql/updates/world/3.3.5/2017_04_30_01_world_335.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_04_30_01_world_335.sql b/sql/updates/world/3.3.5/2017_04_30_01_world_335.sql new file mode 100644 index 00000000000..df139f1f324 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_04_30_01_world_335.sql @@ -0,0 +1,7 @@ +-- Ravenholdt Guard <Assassin's League>, entry 6766 / gossip_menu 4861 +UPDATE `npc_text` SET `text0_0`= 'It is good to see you again, $n.', `BroadcastTextID0`= 8481 WHERE `ID` = 5934; +UPDATE `npc_text` SET + `text0_0`= 'You have truly grown more cunning, $n.', `BroadcastTextID0`= 8484, `Probability0`= 1, + `text1_0`= 'An honor to see you again, $n.', `BroadcastTextID1`= 8485, `Probability1`= 1, + `text2_0`= 'I believe Simone was looking for you earlier, $n. Have you spoken with her yet?', `BroadcastTextID2`= 8486, `Probability2`= 1 +WHERE `ID` = 5935; |