Tracer
Tracer
> crun t1 = getTickCount() for i=1, 1000000 do tocolor(1, 2, 3, 4) end t2 = getTickCount() outputChatBox(t2-t1) 254 > > I then added your lua version of tocolor into...
> What kind of use case do you have for these two events? Well, we have some events for creation of elements (`onClientProjectileCreation`, `onClientBrowserCreated`), why not have one for creation...
https://wiki.multitheftauto.com/wiki/SetFPSLimit 74 FPS is the breaking point that opens the door to various more severe GTA bugs related to FPS and physics. * Physics of vehicles is effected, both high...
iirc this is the engine's issue. Not much can be fixed with shitty engine. Only small patches. If it wasnt fixed for a very long time, that means it cant...
> @TracerDS The problem is caused by a failure to query your compiler, the logging `Unable to resolve configuration with compilerPath "D:\Users\Tracer\Desktop\CrossCompiler\bin\cross\bin\x86_64-elf-g++". Using "cl.exe" instead.`. > > Is that file...
> @TracerDS Yes, we query the compiler for system defines and includes. Is the file executable on Windows? Nope. The compiler is not windows compatible. It is however fully WSL...
With `"C_Cpp.loggingLevel": "Debug"`: ``` [4/24/2024, 12:37:40 PM] Unable to resolve configuration with compilerPath "D:\Users\Tracer\Desktop\CrossCompiler\bin\cross\bin\x86_64-elf-g++". Using "cl.exe" instead. [4/24/2024, 12:37:40 PM] Unable to resolve configuration with compilerPath "D:\Users\Tracer\Desktop\CrossCompiler\bin\cross\bin\x86_64-elf-g++". Using "cl.exe" instead....
> @TracerDS We're looking for the logging from the pane with name "C/C++". In particular, the logs related to the compiler querying that is failing. Okay, how to get the...
> @TracerDS The same way you got the other logging: > >  ``` loggingLevel: Debug LSP: (received) cpptools/initialize (id: 1) LSP: (invoked) cpptools/initialize (id: 1) cpptools version (TypeScript): 1.19.9...
> Does your compiler support -std=c++23 and -std=c++2x? Setting `-std=c++23` in my CrossCompiler will set `#define __cplusplus 202100L `. Setting it to `-std=c++2x` will error (`unrecognized command-line option`). Setting it...