ID:170826
 
Hey, I am messing around with World.Export and World.Topic and stuff, and was wondering if there's a way to send the player's name along with world.Export, and receive it with world.topic, I have tried various ways to do set this in world.Export, but to no avail. Thanks for any help in advance, it is appreciated. :P


--Lenox
For a shout verb that sends information to another server:

var/ShadowWorld="127.0.0.1:7000"

mob/verb/shout(Msg as text) 
world << Msg
world.Export("[ShadowWorld]?shout:[usr.name]shouts:[Msg]")


Then in the world that would recieve the 'shout'

world/Topic(T)
if(findtext(T,"shout:") == 1)
world << copytext(T,7) //(Cut out "shout:")
..()

In response to Nick231
[link]

~>Jiskuha