-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Initializes Patchwire-GM. Run this before any other script for networking.
Connects to the given server/port. Upon a successful connection, a "connected"
command is received.
Run this function in your networking controller's Async - Networking
event to enable networking.
Adds a command handler to Patchwire-GM which will run when the given command type is received. The script is passed a ds_map
of the incoming data.
NOTE: Your handler scripts do not need to clean up the data
ds_map
. Patchwire handles this for you.
Initializes a command to be sent to the server. Returns a ds_map
which you can add more data to.
Sends the given command to the server. If no arguments are provided, sends the most recently created command. PreventDestroy
can be set to true
to prevent Patchwire from cleaning up the command map after sending it.
NOTE: These are for internal use, and should probably never be used otherwise