OutdatedRealm Relay v1.1.0 - Proxy for RotMG 19.1

Posts 115 of 286 · Page 1 of 20
Realm Relay v1.1.0 - Proxy for RotMG 19.1
Realm Relay v1.1.0
The completely open RotMG proxy utility for those who cannot be bothered to figure out how to decrypt, parse, and re-encrypt packets

  • Simplifies packet hacking
    Use an easy JavaScript API to develop hacks which manipulate packets!
  • Easy installation and use
    Works with any client; use it in conjunction with your favorite hacked client!
  • Customize your proxy
    Mix and match scripts various scripts published by members of the community!
  • Prevent IP bans
    Optionally pipe your connection through your favorite Socks4/5 proxy to hide your real ip address


 
Example Script
Code:
// spamfilter.js

var ID_TEXT = $.findPacketId("TEXT");

var keywords = [
	".info",
	".net",
	".org",
	".us",
	"% off",
	"24/7",
	"cheap",
	"client",
	"customer",
	"del|very",
	"delivery",
	"dellvery",
	"pric", // pricing/prices/price
	"prize",
	"satis", // faction/factory/fied
	"service",
	"stock",
	"www"
];

function onServerPacket(event) {
	// get the packet involved in this event
	var packet = event.getPacket();
	
	// if this event's packet is a TEXT packet...
	if (packet.id() == ID_TEXT) {
	
		// make text lowercase to match the keyword list
		var text = packet.text.toLowerCase();
		
		// loop through every keyword for testing
		for (var i = 0; i < keywords.length; i++) {
		
			// if keyword exists in the text...
			if (text.indexOf(keywords[i]) != -1) {
				
				// cancel the event to stop the packet from being sent to the client
				event.cancel();
				
				// break the loop because we already know the packet is spam
				break;
			}
		}
	}
}

The documentation for developing scripts is available in every download.
Note: Scripts made before this update will have to be rescripted due to packet id changes. This update has changed how packet ids are handled, so this should not be a problem again.

Contributors
  • angelofsilence123

Want to contribute to the project?
View the source and contribute at https://github.com/DeVoidCoder/Realm-Relay.
Alternatively, publish JavaScript hacks for the rest of the community to use!



Q & A
Q: Help, I have no idea how to use this thing! What do I do?
A: Follow the directions in the readme.txt located inside the .zip file download. If you have any questions, feel free to ask them in this thread.

Q: Why do I get the "Realm Relay listener problem" error?
A: Close any previously opened instances of Realm Relay. Check your task manager for any running instances of java.exe.

Q: The "Realm Relay enabled!" notification does not show up when I enter the game. What did I do wrong?
A: You either did not edit your hosts file correctly or are not connecting to USEAST3. Refer to the readme.txt. If you continue having problems, post here and someone can help you.

Q: What exactly can this proxy do?
A: This proxy has the potential to do all kinds of hacks! You just need to find/create scripts to do them! If you cannot find the hack you want, someone might make it sooner or later.

Q: The console hangs at "Waiting for HELLO from client..." then disconnects. What is wrong?
A: You are either using the loader swf (playing on the website) or playing in the flash projector. To play using a browser, see http://www.mpgh.net/forum/720-realm-...-browsers.html

Report any bugs or issues to this thread
If it seems like I forgot anything, let me know. I am trying to make sure nothing is confusing.
VirusTotal
Jotti's malware scan
VirSCAN.org
Realm_Relay_1_1_0_mpgh.net.zip85 KB · 4,202 downloads Scanning…
Approved..
I'm not quite clear on what this is capable of. Can you spawn items/change store prices?
Quote Originally Posted by SquidManHero View Post
I'm not quite clear on what this is capable of. Can you spawn items/change store prices?
No. /tooshort
Quote Originally Posted by SquidManHero View Post
I'm not quite clear on what this is capable of. Can you spawn items/change store prices?
derp and this would be released publicly because?
btw if u don't know what this does then you probably shouldn't use it
go learn some code if u really curious
Quote Originally Posted by SquidManHero View Post
I'm not quite clear on what this is capable of. Can you spawn items/change store prices?
lmfao. best post of the day
Pfff couple of days you said... Thanks for releasing so quickly. New find functions too good.
Quote Originally Posted by Nisuxen View Post
Pfff couple of days you said... Thanks for releasing so quickly. New find functions too good.
I decided to delay a couple features and instead of rushing them for 17.3. With $.findPacketId scripts should be working with future versions, so hopefully you will not need to update your scripts over and over.

e. You make some nice, useful scripts, so if you update yours would it be okay if I feature them in the next version's thread?
Quote Originally Posted by DeVoidCoder View Post
I decided to delay a couple features and instead of rushing them for 17.3. With $.findPacketId scripts should be working with future versions, so hopefully you will not need to update your scripts over and over.

e. You make some nice, useful scripts, so if you update yours would it be okay if I feature them in the next version's thread?
Feel free to do with them what you want. I've updated them and will post after I'm done staring at HoffHorn's sig, I mean get a new script finished.
Quote Originally Posted by Nisuxen View Post
Pfff couple of days you said... Thanks for releasing so quickly. New find functions too good.
You should check out DeVoid/Angel's GitHub for new commits as I have had these new functions forever.
Void I have a bunch of scripts but none of them work :/ I save them as Ex: tp.js and it saves as a JS File and save it in scripts but I restart the proxy, try it and nothing happens just says unknown command.
its again giving me the same error can any 1 help pls it saying
realm relay listener started
connected socket[addr=/127.0.0.1,port=60593,locwalport=2050]
waiting for Hello from client...
Disconnected socket [same above]
whats the problem pls tell ... i wroted that 1 line on host file also still im getting the error
helpppppppppppppppppppppp......................... .......
Can you make this hack playing with adobe flash player ? Thanks
Good and fast job +rep
Posts 115 of 286 · Page 1 of 20
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?