Giter Club home page Giter Club logo

Comments (3)

hollow87 avatar hollow87 commented on June 26, 2024

You can take mProc.MainModule.BaseAddress and subtract that from the AoB output to get the offset from the base address.

long offset = aobResult - mem.mProc.MainModule.BaseAddress;
string CEOutputEquiv = $"Growtopia.exe+{offset:X}";

In reality though both are equivalent to each other.

You can use the output of the aob scan by converting it to a hex string easy way to do that is to use string interpolation like similar to this.

long aobResultRaw = (await m.AoBScan(AOB)).FirstOrDefault();
string aobResultString = $"0x{aobResultRaw:X}";

Also please do note that AoB scans are async tasks so you really should await on them to get the result instead of accessing the result directly. Also some calls may return 0 or more results so using Sum() on the result may not do what you intend.

from memory.dll.

DiddoBoi avatar DiddoBoi commented on June 26, 2024

You can take mProc.MainModule.BaseAddress and subtract that from the AoB output to get the offset from the base address.

long offset = aobResult - mem.mProc.MainModule.BaseAddress;
string CEOutputEquiv = $"Growtopia.exe+{offset:X}";

In reality though both are equivalent to each other.

You can use the output of the aob scan by converting it to a hex string easy way to do that is to use string interpolation like similar to this.

long aobResultRaw = (await m.AoBScan(AOB)).FirstOrDefault();
string aobResultString = $"0x{aobResultRaw:X}";

Also please do note that AoB scans are async tasks so you really should await on them to get the result instead of accessing the result directly. Also some calls may return 0 or more results so using Sum() on the result may not do what you intend.

Thanks for the answer @hollow87. Unfortunately my output (aobresult) is a string. VS Gives this error "Operator '-' cannot be applied to operands of type 'string' and 'IntPtr' ". How do i convert IntPtr to string? Or is there any other solution to this error? Thanks!

from memory.dll.

hollow87 avatar hollow87 commented on June 26, 2024

This is beyond the scope of an github issue. I can suggest joining the discord to see if someone will help you with programming in general.

from memory.dll.

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.