[DiscordArchive] quick question guys: after this <https://github.com/ElunaLuaEngine/Eluna/commit/2962d4fea3708cf22964
[DiscordArchive] quick question guys: after this <https://github.com/ElunaLuaEngine/Eluna/commit/2962d4fea3708cf22964
Archived author: Yehonal • Posted: 2021-05-10T07:57:08.965000+00:00
Original source
quick question guys: after this <https://github.com/ElunaLuaEngine/Eluna/commit/2962d4fea3708cf22964d1cc750290b8980b313f> have you had to adapt your lua scripts accordingly?
Archived author: Yehonal • Posted: 2021-05-10T07:57:22.618000+00:00
Original source
ObjectGuid now is not a number anymore
Archived author: Yehonal • Posted: 2021-05-10T08:30:07.335000+00:00
Original source
<@!248138535968833537> <@456226577798135808>
Archived author: Yehonal • Posted: 2021-05-10T08:30:34.260000+00:00
Original source
```
void Eluna::OnAddMember(Group* group, ObjectGuid guid)
{
START_HOOK(GROUP_EVENT_ON_MEMBER_ADD);
Push(group);
Push(guid);
CallAllFunctions(GroupEventBindings, key);
}
```
Archived author: Yehonal • Posted: 2021-05-10T08:30:57.566000+00:00
Original source
should the users now call the guid methods instead of use it directly?
Archived author: Yehonal • Posted: 2021-05-10T08:31:10.893000+00:00
Original source
how to work with the guid?
Archived author: Deleted User • Posted: 2021-05-10T08:37:17.355000+00:00
Original source
ObjectGuis is converted to uint64 later
For players, raw value = counter
Archived author: Yehonal • Posted: 2021-05-10T08:39:16.892000+00:00
Original source
ok, so I'm type-hinting the parameters of the Hooks in typescript, ObjectGuid becomes a number then
Archived author: Deleted User • Posted: 2021-05-10T08:40:25.709000+00:00
Original source
Yes
Archived author: Yehonal • Posted: 2021-05-10T08:40:46.912000+00:00
Original source
thanks