I didn't try it. I'll try it now. Here are my results.
Current base MM and base 761 bot:
Code: Select all
Command> local tt = getTime() for i = 1,2000 do player:update() end print(deltaT
ime(getTime(),tt))
58694.339688503
Your version:
Code: Select all
Command> local tt = getTime() for i = 1,2000 do player:update() end print(deltaT
ime(getTime(),tt))
5838.4886878483
Your micromacro.exe in the base MM folder.
Code: Select all
Command> local tt = getTime() for i = 1,2000 do player:update() end print(deltaT
ime(getTime(),tt))
58598.863144398
So it's not the micromacro.exe executable that's making it fast. It must be some other file.
I had a look at the differences between the other files and lib.lua stands out as the most likely cause. I copied that over and immediately got a faster result.
Code: Select all
Command> local tt = getTime() for i = 1,2000 do player:update() end print(deltaT
ime(getTime(),tt))
5554.9107726285
So it's something in that file.