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!
Remote Procedure Calls |
|
Make communicating between servers easy! |
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") 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! |
Feb 25 2011, 3:38 am
|
|
Nice job, this is definitely something I can use immediately.
|