Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>

[DiscordArchive] No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>

[DiscordArchive] No problem <@!224931509046345729>, there is the ping back <:GWcmeisterPeepoEZ:403295289688981534>

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
07-15-2020, 01:16 PM
#1
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?
rektbyfaith
07-15-2020, 01:16 PM #1

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?

rektbyfaith
Administrator
0
07-15-2020, 01:22 PM
#2
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)
rektbyfaith
07-15-2020, 01:22 PM #2

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)

rektbyfaith
Administrator
0
07-15-2020, 01:25 PM
#3
Archived author: Deleted User • Posted: 2020-07-15T13:25:47.937000+00:00
Original source

hm
rektbyfaith
07-15-2020, 01:25 PM #3

Archived author: Deleted User • Posted: 2020-07-15T13:25:47.937000+00:00
Original source

hm

rektbyfaith
Administrator
0
07-15-2020, 01:26 PM
#4
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.
rektbyfaith
07-15-2020, 01:26 PM #4

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.

rektbyfaith
Administrator
0
07-15-2020, 01:26 PM
#5
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
rektbyfaith
07-15-2020, 01:26 PM #5

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

rektbyfaith
Administrator
0
07-15-2020, 01:26 PM
#6
Archived author: Deleted User • Posted: 2020-07-15T13:26:36.108000+00:00
Original source

https://cdn.discordapp.com/attachments/2...nknown.png
rektbyfaith
07-15-2020, 01:26 PM #6

Archived author: Deleted User • Posted: 2020-07-15T13:26:36.108000+00:00
Original source

https://cdn.discordapp.com/attachments/2...nknown.png

rektbyfaith
Administrator
0
07-15-2020, 01:27 PM
#7
Archived author: Deleted User • Posted: 2020-07-15T13:27:00.378000+00:00
Original source

Therefore, I think this is it.
rektbyfaith
07-15-2020, 01:27 PM #7

Archived author: Deleted User • Posted: 2020-07-15T13:27:00.378000+00:00
Original source

Therefore, I think this is it.

rektbyfaith
Administrator
0
07-15-2020, 01:28 PM
#8
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.)
rektbyfaith
07-15-2020, 01:28 PM #8

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.)

rektbyfaith
Administrator
0
07-15-2020, 01:28 PM
#9
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
rektbyfaith
07-15-2020, 01:28 PM #9

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

rektbyfaith
Administrator
0
07-15-2020, 01:29 PM
#10
Archived author: Deleted User • Posted: 2020-07-15T13:29:01.666000+00:00
Original source

Ahhh, this is not what I need.
rektbyfaith
07-15-2020, 01:29 PM #10

Archived author: Deleted User • Posted: 2020-07-15T13:29:01.666000+00:00
Original source

Ahhh, this is not what I need.

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)