SetWorldData

From RAGE Multiplayer Wiki
Revision as of 01:39, 27 November 2019 by Muphy (talk | contribs) (Created page with "This function sets world data but the data is only accessible by the server. It is not synced to any client. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.SetWorldDat...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This function sets world data but the data is only accessible by the server. It is not synced to any client.

Syntax

void NAPI.Data.SetWorldData(string key, object value);

Required Arguments

  • key: parameter input should be in string type.
  • value: parameter input should be in object type.


Usage example(s)

Example Description

NAPI.Data.SetWorldData("mykey", 1);