NetworkClientInteger

Family: Multiplayer · One form

What it does

NetworkClientInteger reads from a Multiplayer object without changing it. It takes iNetID (an integer), client (an integer) and name (a string), and answers an integer. iNetID is the id of a Net object, obtained elsewhere in the Multiplayer family.

Syntax

NetworkClientInteger(iNetID integer, client integer, name string) → integer

Parameters

NameType
iNetIDinteger
clientinteger
namestring

Every form returns

integer

Example · generated

net = CreateNetworkMessage()DO  Print(NetworkClientInteger(net, 1, "player"))  Sync()LOOP

CreateNetworkMessage is there to give the call something to act on; NetworkClientInteger is the line that matters. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

91 commands in Multiplayer