Communicate(procedure, msg, args)
{
world.Export("byond://[ip]:[port]?encryption:[encryption]&procedure:[procedure]&msg:[msg]&args:[args]")
}
OOC(msg, args)
{
Communicate("/world/proc/OOC", msg, args)
}
world
Topic(encryption, msg as text, args)
if(encryption != md5("xxx")) { return } else { call(world,text2path(msg))(args) }
proc
OOC(msg, args)
{
world << "[msg]:[args]"
}
Problem description:
Basically im trying to send messages from one server to the other and calling procedures...so far i can't really get it to work any help would be nice
The proper way to parse the values is to use = instead of : in a the GET procedure.