Skullbot

Results 16 comments of Skullbot

Thanks for your fast answer :) Somehow, I managed to get rid of LUA errors in the client. But it seems the SendAddonMessage function has changed since 1.12 And I...

To answer you, the OnAddonMessage event handler is registered, but not triggerred. In fact, it doesn't even get to Init. So far, the issue seems to be related to varargs....

After further testing, and commenting out this line in msgmt:Add : ```lua self.params[ table.getn(self.params) + 1 ] = {select('#', ... ), Name, ... } ``` I managed to retrieve the...

I managed to "fix" using your tips with `unpack`, but it seems the smallfolk lib has the same issues with LUA 5.0. The data seems to be serialized in the...

The WHISPER type is supported for SendAddonMessage from version 2.1, so I may try to use the regular WHISPER chat message. I don't know yet if the whisper sent to...

Ok, so I had to go through the BATTLEGROUND channel instead of the WHISPER channel for SendAddonMessage client side. The packet is sent to the server even if your not...

The issue was that `data.parts.n` got in the loop (containing the size of the table, thus a number, triggerring tconcat error) With this fixed, all 32x 244 char + 1x...

override does work for methods/functions overrides, but not for members variables override VSCode displays this error : ![2020-05-18 22_28_03-● Founder wurst - scripts - Visual Studio Code Administrator](https://user-images.githubusercontent.com/24411141/82256652-072fd080-9957-11ea-9993-40df405994e1.png)

I came with this solution for now, but this leads to duplicate code, as the overriden setter (here setDefault() ) would be the same in every child class That's the...

I (mis ?)used the override word because I wanted the parent variables to be "overriden" by child variables of the same name, even in the super constructor. In PHP (yeah...