Data Component Method

Store in Global Variable Cache

Image

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

Image

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

Image

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

Image

Check if data exists in the global variable cache

Requires String

Store Data in Database

Image

Store data in the database

Requires: String, String\Number\Location instance\World instance\BossBar instance

Retrieve Data from Database

Image

Retrieve data from the database

Requires String

Return Anything

Delete Data from Database

Image

Delete data from the database

Requires String

Check if Key Exists in Database

Image

Check if data exists in the database

Requires String

Retrieve Character Value from Config File

Image

Retrieve text from the config file

Requires String

Return String

Retrieve Integer Value from Config File

Image

Retrieve number from the config file

Requires String

Return Number

Retrieve Decimal Value from Config File

Image

Retrieve number from the config file

Requires String

Return Number

Retrieve Boolean Value from Config File

Image

Retrieve boolean from the config file

Requires String

Return Boolean

Store Character Value in Config File

Image

Store text in the config file

Requires String, String

Store Integer Value in Config File

Image

Store number in the config file

Requires String, Number

Store Decimal Value in Config File

Image

Store number in the config file

Requires String, Number

Store Boolean Value in Config File

Image

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.

Last Updated:
Contributors: SensenPlayer, TongHui