1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 21:38:38 +00:00

Updated Storage (markdown)

Robert Beekman 2017-09-12 14:22:28 +02:00
parent ac2026bef2
commit 61ae8930d0

@ -11,10 +11,10 @@ This is the preferred place to store things since it is not accesable outside th
#### Example:
```lua
-- Set a value the same way as a regular LUA table
ProfileStorage["highscore"] = 500;
ProfileStorage["highscore"] = 500
-- Retrieve the value at a later time
local lastHighscore = ProfileStorage["highscore"];
local lastHighscore = ProfileStorage["highscore"]
```
---
### GlobalStorage
@ -25,10 +25,10 @@ Anything you store here can be accessed by all LUA scripts, this is useful if yo
#### Example:
```lua
-- Set a value the same way as a regular LUA table
GlobalStorage["favoriteColor"] = "blue";
GlobalStorage["favoriteColor"] = "blue"
-- Retrieve the value at a later time
local favoriteColor = GlobalStorage["favoriteColor"];
local favoriteColor = GlobalStorage["favoriteColor"]
```
## Notes