I use a Skript Adddon (skript-yaml) to generate a YAML config. Then I converted those YML values to variables, like this one:
And then I have the variable called {iEssentials::config::no-permission-message}.
Now I want to be able to use it in this code:
Remember permission message in the config is &cYou do not have permission for this command!, and I want the permission message to be &cYou do not have permission for this command!.
My results:
{iEssentials::config::no-permission-message}
Results supposed to be:
&cYou do not have permission for this command!
If you don't understand I'll explain in more detail
code_language.skript:
set {iEssentials::config::no-permission-message} to yaml value "no-permission-message" from "config"
Now I want to be able to use it in this code:
code_language.skript:
permission message: {iEssentials::config::no-permission-message}
My results:
{iEssentials::config::no-permission-message}
Results supposed to be:
&cYou do not have permission for this command!
If you don't understand I'll explain in more detail