OutdatedReign of Kings Hack

Posts 115 of 373 · Page 1 of 25
Reign of Kings Hack
Reign of Kings Public Hack
Updated

Features

ESP
See the location of players and the distance to them.

Flying
Uses the flying already in the game.

Teleport
Teleport to any player in the game.

Give Item
Gives any of the items in the game.

Hydrate
Refills your thirst bar.

Nourish
Refills your hunger bar.

Stealth
Makes you invisible. (Weapons Visible)


Instructions

Drag both files into your Reign of Kings managed folder.
Join a server and press "Insert". Arrow Keys to move up and down.
K to choose an option. If you get stuck in a textfield, click on screen.

Scans

https://www.virustotal.com/uk/file/c...is/1427331705/
https://www.metascan-online.com/en/s...ff284bc67b6db2

Screenshots
Release1.25_mpgh.net.zip2.0 MB · 15,821 downloads Clean
Hello matthew, I have been trying for a while now to use the posted Source Codes in a custom DLL. I have very limited knowledge of C#. I have searched for info on how do do these things, like, Hooking. Any chance that you could post some useful resources that could get me started? I am sick of people saying, "Oh, well you gotta search for them yourself." That's not fair, I am trying to learn. At least give me some sort of kickstart. Please?
Nice release man! I see you used that same menu that homeboy released back for Rust. Neat, we have the same features nearly. Glad you removed godmode (despite it already being public).
Quote Originally Posted by Khyy View Post
Nice release man! I see you used that same menu that homeboy released back for Rust. Neat, we have the same features nearly. Glad you removed godmode (despite it already being public).
I would just LOVE to learn how to make something like this. I have spent the last couple of days looking for information, but I can't find any specific items. Could I possibly get some examples of custom DLLs that I could expand on? I do not intend to release anything publicly; I merely would like to learn the basics of Hooking, and using custom code.
Quote Originally Posted by WayUpNorthMN View Post
I would just LOVE to learn how to make something like this. I have spent the last couple of days looking for information, but I can't find any specific items. Could I possibly get some examples of custom DLLs that I could expand on? I do not intend to release anything publicly; I merely would like to learn the basics of Hooking, and using custom code.
Easily the most informative post is here. I might make a guide to get people going.. as his instructions require you have at least a basic understanding.

Quote Originally Posted by TehManifest0r View Post
1) Download Visual Studio
2) Make a new class
3) Bare minimum, put this stuff in there
4) Get JustDecompile with "Assembly Editor" plugin (free) or .NET Reflector with Reflexil
5) Open RoK's Assembly-CSharp.dll
6) Find a point in the code that you want to hook, and (using reflexil) right click -> add operation -> call method reference -> find method in your compiled class.
7) Save dll and run game
8) Have fun

I use Game's static constructor because it is only called once.

Load GameObject with: (credits to someone somewhere)
Code:
        public static void Load()
        {
            GameObject gameObject = new GameObject();
            gameObject.AddComponent<CustomControl>();
            Object.DontDestroyOnLoad(gameObject);
        }
CustomControl class
Code:
    internal class CustomControl : MonoBehaviour
    {
    
        private void Start()
        {
                // initialize variables here
                // this is where I populate my menu
        }

        private void Update()
        {
                // called every frame (I think)
        }

        private void OnGUI()
        {
                if (Game.State == GameState.Playing)
            {
                if (GUIManager.CurrentCategory != GUIManager.MenuSystemCategories.System)
                {
                    // currently playing, do hacks
                }
                else
                {
                    // in pause/system menu, show menu
                    // here you could use a unity button that, when pressed, calls code posted earlier
                }
            }
        }

    }
I was in the same position as most of you when I started. I didn't have any clue of what to do, and I was stuck with public hacks and elitist users running their mouths about how they "did that sooooo long ago" or "already have ESP 2.0 max". I'm trying not to be like them, but I don't really want to release a compiled version because all the lazy noobs will use it as well. With the info in this post you should be up and running in no time. It's for pretty much any Unity game, the hardest part is hooking your DLL

See showthread.php?t=846668
showthread.php?t=841892
showthread.php?t=846210
different game but it will all be similar because it's all Unity
Quote Originally Posted by Khyy View Post
Easily the most informative post is here. I might make a guide to get people going.. as his instructions require you have at least a basic understanding.
I used that method, but when making the class in vb, i try importing it into Reflector and it gives me an error about an "MZ" Signature
I am so confused. I have achieved a few Assembly-CSharp edits, (resource modification, stamina) but I would like to create a menu to make them togglable. Is there a guide that I could use for this specific instance?
if you add infinite stamina there, it would be perfect!
Quote Originally Posted by xxxxxyyyyy View Post
if you add infinite stamina there, it would be perfect!
Probably the easiest hack out there, once this gets approved you can add it yourself. There is a complete tutorial on these forums.
Quote Originally Posted by kzq View Post
Probably the easiest hack out there, once this gets approved you can add it yourself. There is a complete tutorial on these forums.
Could you potentially link to that said thread?
Quote Originally Posted by WayUpNorthMN View Post
Could you potentially link to that said thread?
Sure thing, buddy. Here
where i can find the item id
You can find it in another Thread here ... It is called Reign of Kings Coding!
Flying is bugged out for me ... you can fly but sometimes it speeds up like a Ferrari and i end up Dead ...
I am currently building a huge castel so i would need Godmode to use the flying thing properly xD
Posts 115 of 373 · Page 1 of 25
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?