Net.Start
Skip to content
mnscript
bool Net.Start(number) 

Description ​

Starts a Network Transfer Message (NTM)

Arguments ​

number - The Network Transfer Protocol (NTP)

Returns ​

bool - True if the message was started

Example ​

msc
using Net;
using System;

// Starts a network message with the protocol 6000 and sends it to an IP address.
// It is recommended to use protocols of 1000 or above, to avoid using reserved Maxnet protocols.

number myProtocol = 6000;

Net.Start(myProtocol);
Net.SendToAddress("192.168.1.254");