Data Component Method
Store in Global Variable Cache
Store data in the global variable cache for convenient access from anywhere. Note! The cached data will disappear when the server restarts or shuts down, as the data essentially resides in memory!
Requires String
, Anything
Retrieve Data from Global Variable Cache
Retrieve data from the global variable cache. Note! The cached data will disappear when the server restarts or shuts down, as the data essentially resides in memory!
Requires String
Return Anything
Delete Data from Global Variable Cache
Delete data from the global variable cache. Note! The cached data will disappear when the server restarts or shuts down, as the data essentially resides in memory!
Requires String
Check if Key Exists in Global Variable
Check if data exists in the global variable cache
Requires String
Store Data in Database
Store data in the database
Requires: String
, String\Number\Location instance\World instance\BossBar instance
Retrieve Data from Database
Retrieve data from the database
Requires String
Return Anything
Delete Data from Database
Delete data from the database
Requires String
Check if Key Exists in Database
Check if data exists in the database
Requires String
Retrieve Character Value from Config File
Retrieve text from the config file
Requires String
Return String
Retrieve Integer Value from Config File
Retrieve number from the config file
Requires String
Return Number
Retrieve Decimal Value from Config File
Retrieve number from the config file
Requires String
Return Number
Retrieve Boolean Value from Config File
Retrieve boolean from the config file
Requires String
Return Boolean
Store Character Value in Config File
Store text in the config file
Requires String
, String
Store Integer Value in Config File
Store number in the config file
Requires String
, Number
Store Decimal Value in Config File
Store number in the config file
Requires String
, Number
Store Boolean Value in Config File
Store boolean in the config file
Requires String
, Boolean
Get Character Collection from Config File
Retrieve a List instance
of type Text
from the config file.
Return List instance
.
Get Integer Collection from Config File
Retrieve a List instance
of type Number
(integer) from the config file.
Return List instance
.
Get Decimal Collection from Config File
Retrieve a List instance
of type Number
(decimal) from the config file.
Return List instance
.