WINSOCK MAKE PACKET
Using this command along with the different WINSOCK ADD BYTE etc.. will simplify the sending and receiving enormously. Simply call this command to instruct the dll to start a new packet. Then commence adding data using the mentioned commands. When you're done, simply send the packet using the send command that corresponds to your channel type: WINSOCK SEND TCP PACKET for tcp channels and WINSOCK SEND UDP PACKET for UDP channels... If you use the wrong command then the dll will crash (assertion message with debug dll).
Note that you may not add more than 255 bytes into a single packet (equals to 63 integers). This is because the dll uses one byte per packet that indicates the length of it. In one byte its only possible to indicate a length of up to 255. You will not read or write this length byte using the packet commands, as it is managed by the dll for your benefit.
SYNTAX
WINSOCK MAKE PACKET
RELATED INFO
WINSOCK command menu
Index
EXAMPLE
Showcase-example 1
Showcase-example 2