[DiscordArchive] Could this line break be causing an error?
[DiscordArchive] Could this line break be causing an error?
Archived author: M'Dic • Posted: 2022-04-01T15:49:38.377000+00:00
Original source
ah in this case. source script
Archived author: stevej • Posted: 2022-04-01T15:50:06.023000+00:00
Original source
```c++
void KilledUnit(Unit* victim) override
{
switch (victim->GetTypeId())
{
case TYPEID_PLAYER:
Talk(SAY_SVALNA_KILL);
break;
/*case TYPEID_UNIT: // captains also say something on death and this causes spam
switch (victim->GetEntry())
{
case NPC_CAPTAIN_ARNATH:
case NPC_CAPTAIN_BRANDON:
case NPC_CAPTAIN_GRONDEL:
case NPC_CAPTAIN_RUPERT:
Talk(SAY_SVALNA_KILL_CAPTAIN);
break;
default:
break;
}
break;*/
default:
break;
}
}
```
Archived author: stevej • Posted: 2022-04-01T15:50:17.174000+00:00
Original source
Do they cause spam?
Archived author: M'Dic • Posted: 2022-04-01T15:51:18.011000+00:00
Original source
im not certain where that is at in game, but im looking right now
Archived author: stevej • Posted: 2022-04-01T15:51:41.439000+00:00
Original source
I don't understand why this line is commented. Of the 4 captains, 2 always die. I don't understand where the spam in 2 texts would be.
Archived author: stevej • Posted: 2022-04-01T15:52:28.623000+00:00
Original source
Inside icc. On the way to the green dragon that you have to heal.
Archived author: M'Dic • Posted: 2022-04-01T15:53:07.469000+00:00
Original source
well its interesting. im loading up tc data base right now
Archived author: stevej • Posted: 2022-04-01T15:53:12.141000+00:00
Original source
The event before this boss.
https://www.wowhead.com/npc=36789/valithria-dreamwalker
Archived author: M'Dic • Posted: 2022-04-01T15:53:14.328000+00:00
Original source
but on tc its the same thing but it isnt commit out
Archived author: M'Dic • Posted: 2022-04-01T15:53:27.013000+00:00
Original source
so i am going to see if we got like something crossed in the DB