Git Product home page Git Product logo

blockadehax's Introduction

BlockadeHax

A proof of concept il2cpp mod for BlockadeHax that I scrapped together which shows you how to modify an il2cpp unity game.

Example of invoking an il2cpp method:

auto Assembly = Runtime::il2cpp_assembly_get_image("assemblyname"); //Example: Assembly-CSharp

auto Class = Runtime::il2cpp_class_from_name(Assembly, "namespace", "className"); //If the namespace is not there, just pass in ""

auto Method = Runtime::il2cpp_class_get_method_from_name(Class, "methodName", 0); //Pass in the target method's name, so if I wanted to attack a method called KillCurrentPlayer(), I'd pass in the name KillCurrentPlayer by itself.

auto Result = Runtime::il2cpp_runtime_invoke(Method, NULL, NULL); //Execute the method and get the result as an Il2CppObject which you can do whatever you want with.
auto assembly = Runtime::il2cpp_assembly_get_image("UnityEngine.CoreModule");

		auto Class = Runtime::il2cpp_class_from_name(assembly, "UnityEngine", "Debug");

		auto Method = Runtime::il2cpp_class_get_method_from_name(Class, "Log", 0);

		Runtime::il2cpp_runtime_invoke(Method, NULL, new void* [1] { Runtime::il2cpp_string_new("testing") });

blockadehax's People

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.