abstract void | SetItem (string key, string value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, int value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, bool value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, float value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, long value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, byte value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, string[] value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, int[] value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, bool[] value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, float[] value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, long[] value) |
| Stores a value. More...
|
|
abstract void | SetItem (string key, byte[] value) |
| Stores a value. More...
|
|
abstract object | GetItem (string key) |
| Gets a value. More...
|
|
abstract bool | TryGetItem (string key, out object value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemString (string key, out string value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemInt (string key, out int value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemBool (string key, out bool value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemFloat (string key, out float value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemLong (string key, out long value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemByte (string key, out byte value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemStringArr (string key, out string[] value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemIntArr (string key, out int[] value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemBoolArr (string key, out bool[] value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemFloatArr (string key, out float[] value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemLongArr (string key, out long[] value) |
| Gets a value. More...
|
|
abstract bool | TryGetItemByteArr (string key, out byte[] value) |
| Gets a value. More...
|
|
abstract bool | ContainsKey (string key) |
| Checks if storage contains the key. More...
|
|
abstract bool | ContainsKeyValue (string key, string value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, int value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, bool value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, float value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, long value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, byte value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, string[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, int[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, bool[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, float[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, long[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract bool | ContainsKeyValue (string key, byte[] value) |
| Checks if storage contains the key-value. More...
|
|
abstract string[] | GetKeys () |
| Gets all current keys registered with a value. More...
|
|
abstract bool | RemoveItem (string key) |
| Removes an item from storage. More...
|
|
abstract void | Clear () |
| Clears all current keys in the storage. More...
|
|
abstract bool | RemoveNullValues () |
| Removes all key-value pairs where the value is null. More...
|
|
abstract void | WriteToConsole () |
| Writes the current storage data as to the output window in the map editor. For debugging only. More...
|
|
abstract bool | HasData () |
| Gets if any key-value pair exist. More...
|
|
Access to script storage.