[DiscordArchive] No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>
[DiscordArchive] No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>
Archived author: Asunyaa • Posted: 2020-07-15T13:16:04.628000+00:00
Original source
No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>
Let me check the file, then I will reply in a moment and tell you what to do.
Did I understand it correct? You want to make the Portal in the middle of Naxxramas be only usable when all quarter-bosses are killed?
Archived author: Asunyaa • Posted: 2020-07-15T13:22:22.227000+00:00
Original source
Oh now I understood, well yeah, if for example "GO_SAPPHIRON_GATE" would represent the portal which teleports you to sapphiron, then you can do this:
```C++
case GO_SAPPHIRON_GATE:
_sapphironGateGUID = pGo->GetGUID();
if (GetBossState(BOSS_HORSEMAN) == DONE && GetBossState(BOSS_MAEXXNA) == DONE && GetBossState(BOSS_THADDIUS) == DONE && GetBossState(BOSS_LOATHEB) == DONE)
pGo->SetGoState(GO_STATE_ACTIVE);
break;
```
Remember, that this is a bad example since "GO_SAPPHIRON_GATE" doesn't represent the portal I talked about (afaik)
Archived author: Deleted User • Posted: 2020-07-15T13:25:47.937000+00:00
Original source
hm
Archived author: Deleted User • Posted: 2020-07-15T13:26:06.463000+00:00
Original source
thx very much, Yes, that's what I wanted to do. Now I’ll compile and see.
Archived author: Deleted User • Posted: 2020-07-15T13:26:34.692000+00:00
Original source
I just don’t know what exactly is responsible for this
Archived author: Deleted User • Posted: 2020-07-15T13:26:36.108000+00:00
Original source
https://cdn.discordapp.com/attachments/2...nknown.png
Archived author: Deleted User • Posted: 2020-07-15T13:27:00.378000+00:00
Original source
Therefore, I think this is it.
Archived author: Deleted User • Posted: 2020-07-15T13:28:08.818000+00:00
Original source
But I'm glad that I at least thought of the same condition.)
Archived author: Asunyaa • Posted: 2020-07-15T13:28:30.453000+00:00
Original source
GO_SAPPHIRON_GATE is the gate which opens up the way to go to Kel Thuzad after Sapphiron is dead, thats exactly what it says in the case-Statement you posted
Archived author: Deleted User • Posted: 2020-07-15T13:29:01.666000+00:00
Original source
Ahhh, this is not what I need.