Untitled
unknown
plain_text
a year ago
3.4 kB
7
Indexable
effect store string %string% as %string% in [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
set string tag "%expr-2%" of {_n} to expr-1
save nbt file of {_n}
effect store int[eger] %integer% as %string% in [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
set int tag "%expr-2%" of {_n} to expr-1
save nbt file of {_n}
effect store bool[ean] %boolean% as %string% in [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
set boolean tag "%expr-2%" of {_n} to expr-1
save nbt file of {_n}
effect store double %number% as %string% in [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
set double tag "%expr-2%" of {_n} to expr-1
save nbt file of {_n}
effect store float %number% as %string% in [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
set float tag "%expr-2%" of {_n} to expr-1
save nbt file of {_n}
# DELETE
effect delete string %string% from [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
delete string tag "%expr-1%" of {_n}
save nbt file of {_n}
effect delete int[eger] %integer% from [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
delete int tag "%expr-1%" of {_n}
save nbt file of {_n}
effect delete bool[ean] %boolean% from [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
delete boolean tag "%expr-1%" of {_n}
save nbt file of {_n}
effect delete double %number% from [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
delete double tag "%expr-1%" of {_n}
save nbt file of {_n}
effect delete float %number% from [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
delete float tag "%expr-1%" of {_n}
save nbt file of {_n}
# GET
expression string %string% from [the] (db|database):
get:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
return string tag "%expr-1%" of {_n}
expression int[eger] %integer% from [the] (db|database):
get:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
return int tag "%expr-1%" of {_n}
expression bool[ean] %boolean% from [the] (db|database):
get:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
return boolean tag "%expr-1%" of {_n}
expression double %number% from [the] (db|database):
get:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
return double tag "%expr-1%" of {_n}
expression float %number% from [the] (db|database):
get:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
return float tag "%expr-1%" of {_n}
# CLEAR
effect clear [the] (db|database):
trigger:
set {_n} to nbt compound from file "plugins/Skript/scripts/db.nbt"
clear {_n}
save nbt file of {_n}Editor is loading...
Leave a Comment