[DiscordArchive] then how can i check ?
[DiscordArchive] then how can i check ?
Archived author: DioHun • Posted: 2021-04-04T08:37:31.087000+00:00
Original source
then how can i check ?
Archived author: ZaDarkSide • Posted: 2021-04-04T08:39:29.504000+00:00
Original source
`GetTeam() == ALLIANCE` or `GetTeam() == HORDE`
Archived author: MaxtorCoder • Posted: 2021-04-04T08:39:49.292000+00:00
Original source
It will ALWAYS hit both
Archived author: MaxtorCoder • Posted: 2021-04-04T08:39:58.234000+00:00
Original source
Resulting in going to horde relocation
Archived author: MaxtorCoder • Posted: 2021-04-04T08:40:03.736000+00:00
Original source
Because ur not using an else.
Archived author: MaxtorCoder • Posted: 2021-04-04T08:40:07.238000+00:00
Original source
Or else if.
Archived author: ZaDarkSide • Posted: 2021-04-04T08:43:36.745000+00:00
Original source
also the 2nd Relocate has wrong parameters
Archived author: ZaDarkSide • Posted: 2021-04-04T08:45:00.291000+00:00
Original source
Wrong `Relocate(-407.00305f - 384.6124f, 14.18721f, 0.7f);`
Good `Relocate(-407.00305f, -384.6124f, 14.18721f, 0.7f);`
Archived author: ZaDarkSide • Posted: 2021-04-04T08:47:03.420000+00:00
Original source
Wrong
```C++
if (RACEMASK_ALLIANCE)
{
}
if (RACEMASK_HORDE)
{
}
```
Good
```C++
if (GetTeam() == ALLIANCE)
{
....
}
else if (GetTeam() == HORDE)
{
....
}
```
word:770403424965492738> <:popcorn:770403425128808560>
Archived author: Searcas7 • Posted: 2021-04-04T08:54:41.536000+00:00
Original source
<
word:770403424965492738> <:popcorn:770403425128808560>