Usage
Object syntax: serverr.varname
Explanation
The serverr prefix is used to set variables that are accessible both by scripts on the serverside and the clientside, but only writable on the serverside. Clientside scripts are unable to change the value of a serverr variable.
These days, serverr variables are not used often, since variable changes must be sent out to all clients, and a long list of serverr variables can use a lot of bandwidth unnecessarily. However, they are still useful for sending out very small amounts of information that do not change often like the current weather or season.
For server variables that are not readable by the client, see server.
Example
function onCreated() { serverr.variable = "value"; } //#CLIENTSIDE function onCreated() { player.chat = serverr.variable; }
Categories
CategoryVariablePrefix
There are no comments on this page. [Add comment]