View Single Post
08/14/20, 03:54 PM   #1
ExoY
 
ExoY's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2020
Posts: 88
event code not returned

Hello,

i think i found a bug with an event not returning its "eventCode", as it should according to: https://wiki.esoui.com/API.
If I am mistaken, feel free to just close or delete this thread.

Its about the Event: EVENT_GROUP_MEMBER_JOINT

Here my code:
Lua Code:
  1. function foo:DebugGroupJoinedEvent(event, name, displayName, isPlayerLocal)
  2.   d("DebugGroupJoinedEvent")
  3.   d("event: " .. event)
  4.   d("name: " .. name)
  5.   d(displayName)
  6.   d(isPlayerLocal)
  7.   d("-------------------------")
  8. end
  9.  
  10. EVENT_MANAGER:RegisterForEvent(self.name.."DebugGroupJoined", EVENT_GROUP_MEMBER_JOINED, self.DebugGroupJoinedEvent)

And here the debug result in chat:

Code:
DebugGroupJointEvent
event: Exoy^Mx
name: @Exoy94
true
nil
-------------------------
As you can see, the eventCode is missing. (I would have included screenshot, if i know how to do that
  Reply With Quote