• We see that you're not registered. Please read this thread and if you want, sign up on the forum.

Search results

  1. M

    Tutorial [Ultimate Guide] How to Write a Runescape Injection Bot

    I have a Data Mining & Machine Learning exam comming up soon, I will return and find out why my IntelliJ does not recognize the functions "visitMaxs", "visitEnd" and "add" after the exam.
  2. M

    Tutorial [Ultimate Guide] How to Write a Runescape Injection Bot

    Consider this, i have "import asm.tree.InsnList" and I try to call the function ".add()" on an InsnList. This is a legitimate function, that actually exists on objects of type "InsnList". HOWEVER, IntelliJ produces an error here, saying " Cannot resolve symbol 'add' "... But when I check the...
  3. M

    Tutorial [Ultimate Guide] How to Write a Runescape Injection Bot

    Yeah I tried invalidating caches and restarting etc., and no, this is the first time I am using visitMaxs in the program. But maybe I am doing something very basic wrong, do I need to do .setAccessible(true) for all the things I am trying to change? Here is the source code of my...
  4. M

    Tutorial [Ultimate Guide] How to Write a Runescape Injection Bot

    I made some progress by updating my JDK to 11.0.7 (it is LTS) and my JRE to 1.8.0_251. Now I can actually see, "Client.class implements List" after changing the reflection. :) However, the same methods are still not found by my system. When I google the function "MethodNode.visitMaxs" it says...
  5. M

    Tutorial [Ultimate Guide] How to Write a Runescape Injection Bot

    Hi! I have been able to follow every step up until the class transforming step of "Client.class" - It does not change the class at all, it is still in it's original state despite me being able to output "The client class is here! Client". However, after not being able to fix or find the error...
Top