Tracer

Results 171 comments of 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: > > ![image](https://private-user-images.githubusercontent.com/19859882/325767164-8bbeca30-c452-4989-8453-b110f35e4e42.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MTQyMTY2MDksIm5iZiI6MTcxNDIxNjMwOSwicGF0aCI6Ii8xOTg1OTg4Mi8zMjU3NjcxNjQtOGJiZWNhMzAtYzQ1Mi00OTg5LTg0NTMtYjExMGYzNWU0ZTQyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDA0MjclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwNDI3VDExMTE0OVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTk5MzNjNWFjOTQ5NzNlOTY0MmJlZDBlZDVjMDJlZDQ3OGIyOGIyZGI2MTZiNWEzYWE2OTU1NmQ4YzQwZDVjZTkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.SnEtjcVI-rzM1CFVPmxkUDAYKP6a3TBhuUD-4pjQGAI) ``` 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...