Remote Procedure Calls

by Nickr5
Make communicating between servers easy!
ID:110012
 
n_RPC is a small library that makes communicating between servers easy. It uses world/Export and world/Topic to let you call procs on other servers with a /connection object:
var/connection/server = new("byond://127.0.0.1:9999")
server.Call("say", "Hello, world!")


It also uses a hash (MD5 for now) to prevent anyone else's server from interacting with yours.

Go take a look at the demo!
Nice job, this is definitely something I can use immediately.