Joao Pasqualini Costa

Results 62 comments of Joao Pasqualini Costa

> Alright, so after doing some bench marks the results are: > > Both systems had a max time of: 0.00100 sec > > Difference: The new pathfinding NEVER clocked...

> Alright, I will add more as they come. Just wanted to update. > > This is benchmarks with clear sight and straight line > > https://pastebin.com/KjJ22K7H The results sounds...

This is just to reduce the compiling time or is there any more benefits to it? Because I really like having all the lua API in a single file, whenever...

There is already a exported binder that @edubart create based on OTClient take a look: https://github.com/edubart/euluna-binder

Can't we just call setId on each creature class consctructor?

Amazing work @brunominervino ! Thanks

What is the status of this pull request? I'm thinking in using it, and testing it because I have CGNAT ipv4 address

Tested it and it is working on Ipv6. I just couldn't connect between my own network, dunno why.

For lambda functions I create this macro: ``` #define CREATE_TASK_LAMBDA(lambda) createNewTask(lambda, #lambda, __FUNCTION__) #define createTask(...) CREATE_TASK_LAMBDA(__VA_ARGS__) #define CREATE_TIMED_TASK_LAMBDA(delay, lambda) createNewTask(delay, lambda, #lambda, __FUNCTION__) #define createTimedTask(delay, ...) CREATE_TIMED_TASK_LAMBDA(delay, __VA_ARGS__) #define CREATE_SCHEDULER_TASK_LAMBDA(delay,...

Tested on Windows VS code and it reports all the complete lambda function Please add me the credits as well.