[DiscordArchive] and ayase, maybe you should open an issue with that suggestion + screenshot ?
[DiscordArchive] and ayase, maybe you should open an issue with that suggestion + screenshot ?
Archived author: Deleted User • Posted: 2018-05-07T15:15:16.606000+00:00
Original source
Could someone please explain why the changes Motorheadx proposed in the following PR work? I don't understand what the values "TARGET_UNIT_NEARBY_ENTRY" (new value) or "TARGET_DEST_NEARBY_ENTRY" (old value) mean or how they differ and also did not find any documentation about them. https://github.com/azerothcore/azerothco...k/pull/849
[Embed: Fix mage quest "Investigate the Alchemist Shop" by Motorheadx · P...]
Changes proposed:
**Target branch(es):master
Issues addressed: Closes # #846
Tests performed: (tested in-game, etc)
[ ]
[ ]
NOTE You no longer need to squash your commits, on merge we will s...
https://github.com/azerothcore/azerothco...k/pull/849
Archived author: Barbz • Posted: 2018-05-07T15:37:05.934000+00:00
Original source
I remember i looked at these values when I made custom spells in the DBC
In the cpp it's self explanatory
otherwise there is that https://trinitycore.atlassian.net/wiki/s...+Reference
Archived author: Barbz • Posted: 2018-05-07T15:37:38.219000+00:00
Original source
hmm ok that link is useless
Archived author: Barbz • Posted: 2018-05-07T15:39:29.016000+00:00
Original source
https://github.com/azerothcore/azerothco...llInfo.cpp here
[Embed: azerothcore/azerothcore-wotlk]
azerothcore-wotlk - AZeroThCore - Continuing Sunwell Core Project! Based on MaNGOS -> TrinityCore -> SunwellCore
https://github.com/azerothcore/azerothco...llInfo.cpp
Archived author: Barbz • Posted: 2018-05-07T15:43:48.886000+00:00
Original source
(i looked at this months ago, i don't remember anything but I looked at this file to compare effects)
Archived author: Deleted User • Posted: 2018-05-07T15:48:44.571000+00:00
Original source
Thanks, I already checked the sources. Difference between the two is TARGET_OBJECT_TYPE_UNIT vs TARGET_OBJECT_TYPE_DEST. But what does "Dest" mean in this context? And how does the game mechanic work for these types? I'll try to understand this in order to perhaps find a better solution for capturing the rift spawns.
Archived author: Barbz • Posted: 2018-05-07T15:50:35.666000+00:00
Original source
SRC, DEST and CASTER are the same thing
Archived author: Barbz • Posted: 2018-05-07T15:51:05.355000+00:00
Original source
I'm copying stuff I've documented for myself, I'm not verifying anything, so sorry if it's wrong now lol
Archived author: Barbz • Posted: 2018-05-07T15:51:15.436000+00:00
Original source
in the code there is this:
```
case TARGET_REFERENCE_TYPE_SRC:
case TARGET_REFERENCE_TYPE_DEST:
case TARGET_REFERENCE_TYPE_CASTER:
referer = m_caster;
break;```
Archived author: Barbz • Posted: 2018-05-07T15:52:08.644000+00:00
Original source
ok what i've written