rswiki-book/src/RS-String.md

16 lines
425 B
Markdown
Raw Normal View History

2018-07-03 08:59:44 -04:00
# RS String
2018-07-03 00:31:18 -04:00
2018-07-03 08:59:44 -04:00
RS String is the internal name for a custom string data-type used in the
RuneScape protocol.
The string data-type stores a collection of characters in order to
represent a textual message.
2018-07-03 00:31:18 -04:00
2018-07-03 08:59:44 -04:00
## Old Engine
2018-07-03 00:31:18 -04:00
2018-07-03 08:59:44 -04:00
In the old engine client, the RS String datatype is terminated by the new line
character (i.e. `\n`).
# New Engine
In the new-engine client, the RS String datatype is terminated by a null byte (i.e. `0`).