world.GetLineCount

MUSHclient script function (Method)

Gets count of lines received

Prototype

long GetLineCount();

Data type meanings

Description

This returns the number of lines received by this world. However, see GetLinesInBufferCount for the number of lines currently in the output buffer, which might be different.

VBscript example

world.note world.GetLineCount

Jscript example

world.note(world.GetLineCount());

PerlScript example

$world->note($world->GetLineCount());

Python example

world.note(world.GetLineCount)

Lua example

Note(GetLineCount())

Return value

The number of lines received by this world.

Related topic

Information

See also

FunctionDescription
GetLinesInBufferCountReturns the number of lines in the output window
GetReceivedBytesReturns the number of bytes received from the world
GetSentBytesReturns the number of bytes sent to the world