[DiscordArchive] Guys i have a stupid question about creature_text. I'm trying to implement third boss at DarkFlameCl
[DiscordArchive] Guys i have a stupid question about creature_text. I'm trying to implement third boss at DarkFlameCl
Archived author: devwq • Posted: 2025-03-01T11:52:50.627000+00:00
Original source
Guys i have a stupid question about creature_text. I'm trying to implement third boss at DarkFlameCleft Dungeon.
```SQL
DELETE FROM `creature_text` WHERE `CreatureID` = 208745;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `BroadcastTextId`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `comment`) VALUES
(208745, 0, 0, 0, 'You. No. Take. CANDLE!', 14, 0, 100, 0, 0, 0, ''),
(208745, 1, 0, 0, 'I mold you now!', 14, 0, 100, 0, 0, 247831, ''),
(208745, 2, 0, 0, '|TInterface\\Icons\\INV_Shadowflames_Wave:20|t%s targets you with |cFFFF0000|Hspell:421282|h[Darkflame Pickaxe]|h|r!', 42, 0, 100, 0, 0, 0, ''),
(208745, 3, 0, 0, 'But I... the king...', 14, 0, 100, 0, 0, 247833, '');
```
This line `'|TInterface\\Icons\\INV_Shadowflames_Wave:20|t%s targets you with |cFFFF0000|Hspell:421282|h[Darkflame Pickaxe]|h|r!'` is correct or we should fix output somehow manually?
Archived author: edea • Posted: 2025-03-01T11:53:24.796000+00:00
Original source
is correct
Archived author: devwq • Posted: 2025-03-01T11:54:37.693000+00:00
Original source
But what about Waypoint positions derived from sniff data? Should i write something like this
```C++
static constexpr Position Waypoints[] =
{
{ 107.172646f, -153.52916f, 73.985794f },
{ 105.854675f, -150.66449f, 73.985794f },
{ 102.89398f, -150.1779f, 73.985794f }
};
```
Or waypoints should be only at waypoints db table + waypoint node path?
Archived author: devwq • Posted: 2025-03-01T11:54:51.173000+00:00
Original source
Thanks! ❤️