Skip to content
Phil edited this page Jan 27, 2015 · 35 revisions

Welcome to the Vaser wiki!

exemple:

hello(container) -> [system(Portal) <-> system(portal)] -> hello(container)

send a message:

con.message = "transmitting a message via Vaser.";
system.SendContainer(link, con, 1, 1);

receive a message:

foreach (Packet_Recv pak in system.getPakets())
{
  con.UnpackDataObject(pak, system);
  Console.WriteLine(con.message);
}
Clone this wiki locally