Giter Club home page Giter Club logo

Comments (5)

IntelSDM avatar IntelSDM commented on June 14, 2024

The 0xB8 To access the static field contents is because unity creates a Heap at 0xB8, Think of it like an instance of the class for the static access of it. It will always be at 0xB8 in any static class.
Whenever I have an instance set to 0 it is because I am going to get the instance from a field in the static class so I just set it to 0 until it is read.

from rustdmacheat.

Aiden-10 avatar Aiden-10 commented on June 14, 2024

Using your project, I was able to get all the information I need to make a radar cheat. I am having trouble however including files in the solution. I have never used pch but whenever I try and include for example imgui I get this error which prevents me from building:

"Error C2857 '#include' statement specified with the /Ycpch.h command-line option was not found in the source file"

Currently I made a new folder inside of misc named gui with all the imgui files I need to create a dx11 window. But when for example I #include "gui/imgui.h" I get this error and have tried for hours to fix it.

Thanks for the help

from rustdmacheat.

IntelSDM avatar IntelSDM commented on June 14, 2024

With a PCH you need to #include "pch.h" as the first line of any c++ file.

from rustdmacheat.

Aiden-10 avatar Aiden-10 commented on June 14, 2024

Thanks that fixed the problem. Sorry for so many questions this will be my last. For my radar cheat I have started looping through the networkables and grabbing the positions of all ores, hemp, and TCs etc. The problem arises when I want to display all the positions on the window. Currently I re-read base networkables every 15 seconds in the main loop and then store all of the pointers to position and name and read from that. But next time I loop networkables it causes some lag so how would you go about this?

thanks

from rustdmacheat.

IntelSDM avatar IntelSDM commented on June 14, 2024

The simple fix to lag with DMA is multi thread a caching and drawing thread and, mutex them together. Then use scatter reads for all your caching and only update when needed. Most static entities won't need to be updated while animals can be updated every 25ms instead of every frame.

from rustdmacheat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.