The 1.12.x client seems to be using some sort of 5.0 Lua subset (can't find the exact version).
Some language features in the client AIO addon are using lua 5.1 thus trigerring lua errors in the client.
So far :
- the # operator => easily fixed by replacing with string.len()
- varargs in function body => can't fix it yet
Server-side, I'm using cmangos-classic and I had to make some modifications to Eluna for it to work with the latest revision, but maybe it should be another issue. I managed to make it work, so I might be able to provide a pull request for that.
The 1.12.x client seems to be using some sort of 5.0 Lua subset (can't find the exact version).
Some language features in the client AIO addon are using lua 5.1 thus trigerring lua errors in the client.
So far :
Server-side, I'm using cmangos-classic and I had to make some modifications to Eluna for it to work with the latest revision, but maybe it should be another issue. I managed to make it work, so I might be able to provide a pull request for that.