<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://modding.bcs.place/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://modding.bcs.place/feed.php">
        <title>Blockland Modding - scripting:doc:u:tcpobject</title>
        <description></description>
        <link>https://modding.bcs.place/</link>
        <image rdf:resource="https://modding.bcs.place/_media/wiki:dokuwiki.svg" />
       <dc:date>2026-04-15T02:00:34+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:connect?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:delete?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:disconnect?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:listen?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:savebuffertofile?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:send?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:setbinary?rev=1772782356&amp;do=diff"/>
                <rdf:li rdf:resource="https://modding.bcs.place/scripting:doc:u:tcpobject:setbinarysize?rev=1772782356&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://modding.bcs.place/_media/wiki:dokuwiki.svg">
        <title>Blockland Modding</title>
        <link>https://modding.bcs.place/</link>
        <url>https://modding.bcs.place/_media/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:connect?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>connect</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:connect?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::connect

(string addr)Connect to the given address.

Syntax


void TCPObject::connect(string %addr);


Parameters

string %addr

No description available.

Return value

void

No description available.

Remarks

Examples

Source

Engine

See also

TCPObject::delete</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:delete?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>delete</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:delete?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::delete

There is no doc-string available for this function.

Syntax


void TCPObject::delete();


Parameters

This function does not accept any parameters.

Return value

void

No description available.

Remarks

Examples

Source

Engine

See also</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:disconnect?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>disconnect</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:disconnect?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::disconnect

Disconnect from whatever we&#039;re connected to, if anything.

Syntax


void TCPObject::disconnect();


Parameters

This function does not accept any parameters.

Return value

void

No description available.

Remarks

Examples

Source</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:listen?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>listen</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:listen?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::listen

(int port)Start listening on the specified ports for connections.

Syntax


void TCPObject::listen(int %port);


Parameters

int %port

No description available.

Return value

void

No description available.

Remarks

Examples

Source

Engine</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:savebuffertofile?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>savebuffertofile</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:savebuffertofile?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::saveBufferToFile

(string filename)Save the data recieved since isBinary(true) to a file.

Syntax


void TCPObject::saveBufferToFile(string %filename);


Parameters

string %filename

No description available.

Return value

void

No description available.</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:send?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>send</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:send?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::send

(...)Parameters are transmitted as strings, one at a time.

Syntax


void TCPObject::send(__unk %__param0[, __unk %__param1, __unk %__param2, __unk %__param3, __unk %__param4, __unk %__param5, __unk %__param6, __unk %__param7, __unk %__param8, __unk %__param9, __unk %__param10, __unk %__param11, __unk %__param12, __unk %__param13, __unk %__param14, __unk %__param15, __unk %__param16, __unk %__param17, __unk %__param18]);</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:setbinary?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>setbinary</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:setbinary?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::setBinary

(bool true/false)Starts to accumulate recived data into a buffer. This can be saved with saveBufferToFile

Syntax


void TCPObject::setBinary(bool %true/false);


Parameters

bool %true/false

No description available.

Return value</description>
    </item>
    <item rdf:about="https://modding.bcs.place/scripting:doc:u:tcpobject:setbinarysize?rev=1772782356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T07:32:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>setbinarysize</title>
        <link>https://modding.bcs.place/scripting:doc:u:tcpobject:setbinarysize?rev=1772782356&amp;do=diff</link>
        <description>TCPObject::setBinarySize

(int filesize)Starts to accumulate recived data into a buffer and initialises an array of size filesize. This can be saved with saveBufferToFile

Syntax


void TCPObject::setBinarySize(int %filesize);


Parameters

int %filesize</description>
    </item>
</rdf:RDF>
