SetWorldData

From RAGE Multiplayer Wiki
Revision as of 13:13, 27 November 2019 by Xabi (talk | contribs) (Xabi moved page NAPI.Data.SetWorldData to SetWorldData)
(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);