1. Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Addon skript-yaml v1.3.2

YAML the way it should be

  1. Sashie

    Addon Developer

    Joined:
    Jan 22, 2017
    Messages:
    52
    Likes Received:
    49
  2. Syst3ms

    Addon Developer

    Joined:
    Jan 24, 2017
    Messages:
    191
    Likes Received:
    22
    Oh yeah, this might help, cause rn the addon page suxx.
     
  3. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
  4. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    Comment away

    Read the rest of this update entry...
     
    Pikachu likes this.
  5. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    Bug fixes

    Read the rest of this update entry...
     
  6. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    Root directory support

    Read the rest of this update entry...
     
  7. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
  8. KroterPvP

    KroterPvP Active Member

    Joined:
    Apr 10, 2017
    Messages:
    178
    Likes Received:
    7
    Can somebody create a tutorial of how to use it with a skript example?
    EDIT: How can I create a config like that? I'm trying to update my SuperBans skript
    [​IMG]
     
    #8 KroterPvP, Apr 1, 2018
    Last edited: Apr 1, 2018
  9. Sashie

    Addon Developer

    Joined:
    Jan 22, 2017
    Messages:
    52
    Likes Received:
    49
    i'll talk to a few people, hopefully someone will help make something.
    for now i can tell you that comments in skript-yaml only work at the root level

    running this skript will output a small explaination of things hopefully this helps

    Code (Text):
    1.  
    2. on script load:
    3.    load yaml "plugins/skript-yaml/yaml-tutorial.yml" as "tutorial"
    4.    
    5.    set the header of "tutorial" to "This is a header" and "it can be multiple lines"
    6.        
    7.    set yaml value "rootNode1.subNode1.subNode2" from "tutorial" to "to get this string value the path/node is 'rootNode1.subNode1.subNode2'"
    8.    set the comments of yaml node "rootNode1" from "tutorial" to "this is the first comment of the first root node" and "comments can also be multiple lines" and "only root nodes can have comments so make use of this space to explain everything about each sub node"
    9.    set the comments of yaml node "rootNode1.subNode1.subNode2" from "tutorial" to "comments dont work on sub nodes, this will cause a console warning"
    10.    
    11.    set yaml value "rootNode2" from "tutorial" to "yay another string value"
    12.    set the comments of yaml node "rootNode2" from "tutorial" to "this is a comment for the second root node" and "at the moment there is no option to put a space between comments and nodes but"
    13.    
    14.    set yaml value "rootNode3" from "tutorial" to true
    15.    set {_comment::*} to "you can also use list variables to set comments and headers" and "yay choices"
    16.    set the comments of yaml node "rootNode3" from "tutorial" to {_comment::*}
    17.            
    18.    save yaml "tutorial"
    19.  
    when saved this yml file will look this.....

    Code (Text):
    1.  
    2. ## This is a header
    3. ## it can be multiple lines
    4.  
    5. # this is the first comment of the first root node
    6. # comments can also be multiple lines
    7. # only root nodes can have comments so make use of this space to explain everything about each sub node
    8. rootNode1:
    9.     subNode1:
    10.         subNode2: to get this string value the path/node is 'rootNode1.subNode1.subNode2'
    11.  
    12. # this is a comment for the second root node
    13. # at the moment there is no option to put a space between comments and nodes but
    14. rootNode2: yay another string value
    15.  
    16. # you can also use list variables to set comments and headers
    17. # yay choices
    18. rootNode3: true
    19.  
     
    KroterPvP likes this.
  10. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    More features

    Read the rest of this update entry...
     
  11. KroterPvP

    KroterPvP Active Member

    Joined:
    Apr 10, 2017
    Messages:
    178
    Likes Received:
    7
    Hi @Sashie

    I need to add a comment to a sub node:
    Code (Skript):
    1. SERVER:
    2. # The name of your server
    3.     Name: Server Name
    Also, I noticed that the first time the file is created, all the comments, headers and automatic spaces between nodes are correctly created but after a file reload, all of them disapear from the file. Why?
     
  12. Sashie

    Addon Developer

    Joined:
    Jan 22, 2017
    Messages:
    52
    Likes Received:
    49
    there are no sub node comments, you have to use the comment section above the main node to describe how your sub nodes work
    as for that other thing i'll have to check that out, its the first time ive heard of it
     
  13. KroterPvP

    KroterPvP Active Member

    Joined:
    Apr 10, 2017
    Messages:
    178
    Likes Received:
    7
    So you won't add sub node comments?
    And for the second question, here is my file code:
    Code (Skript):
    1. on load:
    2.     set {_&} to "&"
    3.     load yaml "plugins\SuperBans\config.yml" as "plugins\SuperBans\config.yml"
    4.     skript-yaml "plugins\SuperBans\config.yml" is empty:
    5.  
    6.         set the header of "plugins\SuperBans\config.yml" to "To completely reset this file, you must delete it and reload SuperBans." and " A new file with the default values will be created in a couple of seconds."
    7.  
    8.         set skript-yaml value "PUNISHMENTS.Notification-Type" from "plugins\SuperBans\config.yml" to "1"
    9.         set skript-yaml value "PUNISHMENTS.Console-Notifications" from "plugins\SuperBans\config.yml" to "true"
    10.         set skript-yaml value "PUNISHMENTS.Show-Leave-Message" from "plugins\SuperBans\config.yml" to "false"
    11.         set skript-yaml value "PUNISHMENTS.Max-Warns" from "plugins\SuperBans\config.yml" to "4"
    12.  
    13.         set skript-yaml value "GUI.Unban-Messages" from "plugins\SuperBans\config.yml" to "true"
    14.         set skript-yaml value "GUI.Keep-Open" from "plugins\SuperBans\config.yml" to "true"
    15.         set skript-yaml value "GUI.Silent" from "plugins\SuperBans\config.yml" to "false"
    16.  
    17.         set skript-yaml value "SERVER.Name" from "plugins\SuperBans\config.yml" to "Server Name"
    18.         set skript-yaml value "SERVER.Shop" from "plugins\SuperBans\config.yml" to "https://mc.yourserver.com/shop"
    19.         set skript-yaml value "SERVER.Web" from "plugins\SuperBans\config.yml" to "https://mc.yourserver.com/formum"
    20.  
    21.         set skript-yaml value "DISALLOWED.COMMANDS.While-Frozen" from "plugins\SuperBans\config.yml" to ""
    22.         add "spawn" to skript-yaml list "DISALLOWED.COMMANDS.While-Frozen" from "plugins\SuperBans\config.yml"
    23.         add "warp" to skript-yaml list "DISALLOWED.COMMANDS.While-Frozen" from "plugins\SuperBans\config.yml"
    24.         add "home" to skript-yaml list "DISALLOWED.COMMANDS.While-Frozen" from "plugins\SuperBans\config.yml"
    25.         add "tpa" to skript-yaml list "DISALLOWED.COMMANDS.While-Frozen" from "plugins\SuperBans\config.yml"
    26.         set skript-yaml value "DISALLOWED.COMMANDS.While-Muted" from "plugins\SuperBans\config.yml" to ""
    27.         add "tell" to skript-yaml list "DISALLOWED.COMMANDS.While-Muted" from "plugins\SuperBans\config.yml"
    28.         add "msg" to skript-yaml list "DISALLOWED.COMMANDS.While-Muted" from "plugins\SuperBans\config.yml"
    29.         add "me" to skript-yaml list "DISALLOWED.COMMANDS.While-Muted" from "plugins\SuperBans\config.yml"
    30.  
    31.         set skript-yaml value "ANTISWEAR.Enabled" from "plugins\SuperBans\config.yml" to "true"
    32.         set skript-yaml value "ANTISWEAR.Word-Replacer" from "plugins\SuperBans\config.yml" to "*"
    33.         set skript-yaml value "ANTISWEAR.WORDS" from "plugins\SuperBans\config.yml" to ""
    34.         add "shit of server" to skript-yaml list "ANTISWEAR.WORDS" from "plugins\SuperBans\config.yml"
    35.         add "fuck" to skript-yaml list "ANTISWEAR.WORDS" from "plugins\SuperBans\config.yml"
    36.         add "dick" to skript-yaml list "ANTISWEAR.WORDS" from "plugins\SuperBans\config.yml"
    37.  
    38.         set skript-yaml value "MAIN.File-Name" from "plugins\SuperBans\config.yml" to "SuperBans"
    39.         set skript-yaml value "MAIN.Check-For-Updates" from "plugins\SuperBans\config.yml" to "true"
    40.        
    41.         set the comment of yaml node "PUNISHMENTS" from "plugins\SuperBans\config.yml" to "Notification-Type: This will be the type of notification sent on new punishments. Valid values are: '1' for messages, '2' for actionbars."
    42.  
    43.     load yaml "plugins\SuperBans\customization.yml" as "plugins\SuperBans\customization.yml"
    44.     skript-yaml "plugins\SuperBans\customization.yml" is empty:
    45.  
    46.         set the header of "plugins\SuperBans\customization.yml" to "To completely reset this file, you must delete it and reload SuperBans." and "A new file with the default values will be created in a couple of seconds." and "The actionbar and console messages will be automatically chosen depending on your configuration options."
    47.  
    48.         set skript-yaml value "MESSAGES.Prefix" from "plugins\SuperBans\customization.yml" to "%{_&}%c%{_&}%lSuperBans %{_&}%8» "
    49.         set skript-yaml value "MESSAGES.No-Permission" from "plugins\SuperBans\customization.yml" to "%{_&}%cYou are not allowed to perform this command"
    50.         set skript-yaml value "MESSAGES.No-Console" from "plugins\SuperBans\customization.yml" to "%{_&}%7This command is only available for players"
    51.         set skript-yaml value "MESSAGES.Command-Removed" from "plugins\SuperBans\customization.yml" to "%{_&}%fUnknown command. Type ""/help"" for help."
    52.         set skript-yaml value "MESSAGES.Notifications-On" from "plugins\SuperBans\customization.yml" to "%{_&}%7You will receive new punishments"
    53.         set skript-yaml value "MESSAGES.Notifications-Off" from "plugins\SuperBans\customization.yml" to "%{_&}%7You will not receive new punishments"
    54.         set skript-yaml value "MESSAGES.Search-Player" from "plugins\SuperBans\customization.yml" to "%{_&}%7Type player name or ""%{_&}%ccancel%{_&}%7"" to cancel the search."
    55.         set skript-yaml value "MESSAGES.Search-Anulated" from "plugins\SuperBans\customization.yml" to "%{_&}%7You have successfully annulated the search"
    56.         set skript-yaml value "MESSAGES.Cannot-Punish-Yourself" from "plugins\SuperBans\customization.yml" to "%{_&}%7You can't punish yourself"
    57.         set skript-yaml value "MESSAGES.Who-To-Punish" from "plugins\SuperBans\customization.yml" to "%{_&}%7Who do you want to punish?"
    58.         set skript-yaml value "MESSAGES.No-Online" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is not online"
    59.         set skript-yaml value "MESSAGES.No-Join" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player has not joined"
    60.         set skript-yaml value "MESSAGES.No-Bans" from "plugins\SuperBans\customization.yml" to "%{_&}%7There are not banned players"
    61.         set skript-yaml value "MESSAGES.Ban-Join" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_PLAYER} %{_&}%7is banned and tried to join"
    62.  
    63.         set skript-yaml value "REASONS.No-Reason" from "plugins\SuperBans\customization.yml" to "%{_&}%7Write a reason after ""r:"""
    64.         set skript-yaml value "REASONS.DEFAULT-REASONS" from "plugins\SuperBans\customization.yml" to ""
    65.         set skript-yaml value "REASONS.DEFAULT-REASONS.Mute" from "plugins\SuperBans\customization.yml" to "Be careful what you say!"
    66.         set skript-yaml value "REASONS.DEFAULT-REASONS.Tempmute" from "plugins\SuperBans\customization.yml" to "Be careful what you say!"
    67.         set skript-yaml value "REASONS.DEFAULT-REASONS.Kick" from "plugins\SuperBans\customization.yml" to "Be careful of your behavior. Enter again, but take it right!"
    68.         set skript-yaml value "REASONS.DEFAULT-REASONS.Ban" from "plugins\SuperBans\customization.yml" to "You have a disastrous behavior, you will not be able to enter any more!"
    69.         set skript-yaml value "REASONS.DEFAULT-REASONS.Tempban" from "plugins\SuperBans\customization.yml" to "You have a disastrous behavior. Even so, we give you another opportunity"
    70.  
    71.         set skript-yaml value "PUNISHMENTS.FROZEN" from "plugins\SuperBans\customization.yml" to ""
    72.         set skript-yaml value "PUNISHMENTS.FROZEN.Already" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is already frozen"
    73.         set skript-yaml value "PUNISHMENTS.FROZEN.Cannot" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be frozen"
    74.         set skript-yaml value "PUNISHMENTS.FROZEN.No" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is not frozen"
    75.         set skript-yaml value "PUNISHMENTS.FROZEN.BLOCKED" from "plugins\SuperBans\customization.yml" to ""
    76.         set skript-yaml value "PUNISHMENTS.FROZEN.BLOCKED.Move" from "plugins\SuperBans\customization.yml" to "%{_&}%7You cannot move while you are frozen. Do not fight against physics!"
    77.         set skript-yaml value "PUNISHMENTS.FROZEN.BLOCKED.Command" from "plugins\SuperBans\customization.yml" to "%{_&}%7You cannot execute this command while you are frozen"
    78.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN" from "plugins\SuperBans\customization.yml" to ""
    79.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Frozen-Actionbar" from "plugins\SuperBans\customization.yml" to "&a&lFROZEN %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER}"
    80.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Unfrozen-Actionbar" from "plugins\SuperBans\customization.yml" to "&a&lDEFROSTED %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER}"
    81.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Frozen-Console" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7frozen %{_&}%e{_PLAYER}"
    82.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Unfrozen-Console" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7defrosted %{_&}%e{_PLAYER}"
    83.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml" to ""
    84.         add "{_PREFIX}%{_&}%7I have &a&lFROZEN%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    85.         add " " to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    86.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    87.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    88.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml" to ""
    89.         add "{_PREFIX}%{_&}%7I have &a&lDEFROSTED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    90.         add " " to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    91.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    92.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    93.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml" to ""
    94.         add "{_PREFIX}%{_&}%7You are now &a&lFROZEN%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    95.         add " " to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    96.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    97.         set skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml" to ""
    98.         add "{_PREFIX}%{_&}%7You are now &a&lDEFROSTED%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    99.         add " " to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    100.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    101.  
    102.         set skript-yaml value "PUNISHMENTS.MUTE" from "plugins\SuperBans\customization.yml" to ""
    103.         set skript-yaml value "PUNISHMENTS.MUTE.Already-1" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is already muted"
    104.         set skript-yaml value "PUNISHMENTS.MUTE.Already-2" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is already tempmuted"
    105.         set skript-yaml value "PUNISHMENTS.MUTE.Cannot-1" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be muted"
    106.         set skript-yaml value "PUNISHMENTS.MUTE.Cannot-2" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be tempmuted"
    107.         set skript-yaml value "PUNISHMENTS.MUTE.No" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is not muted"
    108.         set skript-yaml value "PUNISHMENTS.MUTE.BLOCKED" from "plugins\SuperBans\customization.yml" to ""
    109.         set skript-yaml value "PUNISHMENTS.MUTE.BLOCKED.Talk" from "plugins\SuperBans\customization.yml" to "%{_&}%7You cannot talk while you are muted"
    110.         set skript-yaml value "PUNISHMENTS.MUTE.BLOCKED.Command" from "plugins\SuperBans\customization.yml" to "%{_&}%7You cannot execute this command while you are muted"
    111.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE" from "plugins\SuperBans\customization.yml" to ""
    112.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-1" from "plugins\SuperBans\customization.yml" to "&a&lMUTE %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_EXPIRATION}%{_&}%7)"
    113.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-2" from "plugins\SuperBans\customization.yml" to "&a&lMUTE %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_EXPIRATION}%{_&}%7)"
    114.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-3" from "plugins\SuperBans\customization.yml" to "&a&lUNMUTE %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER}"
    115.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-1" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7muted %{_&}%e{_PLAYER} %{_&}%7('%{_&}%a{_REASON}%{_&}%7') %{_&}%7- (%{_&}%a{_EXPIRATION}%{_&}%7)"
    116.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-2" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7muted %{_&}%e{_PLAYER} %{_&}%7('%{_&}%a{_REASON}%{_&}%7') %{_&}%7- (%{_&}%a{_EXPIRATION}%{_&}%7)"
    117.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-3" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7unmuted %{_&}%e{_PLAYER}"
    118.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml" to ""
    119.         add "{_PREFIX}%{_&}%7I have &a&lMUTED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    120.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    121.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    122.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    123.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    124.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    125.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml" to ""
    126.         add "{_PREFIX}%{_&}%7I have &a&lMUTED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    127.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    128.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    129.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    130.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    131.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    132.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml" to ""
    133.         add "{_PREFIX}%{_&}%7I have &a&lUNMUTED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    134.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    135.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    136.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    137.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml" to ""
    138.         add "{_PREFIX}%{_&}%7You are now &a&lMUTED%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    139.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    140.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    141.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    142.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    143.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml" to ""
    144.         add "{_PREFIX}%{_&}%7You are now &a&lMUTED%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml"
    145.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml"
    146.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml"
    147.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml"
    148.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" from "plugins\SuperBans\customization.yml"
    149.         set skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-3" from "plugins\SuperBans\customization.yml" to ""
    150.         add "{_PREFIX}%{_&}%7You are now &a&lUNMUTED%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-3" from "plugins\SuperBans\customization.yml"
    151.         add " " to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-3" from "plugins\SuperBans\customization.yml"
    152.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-3" from "plugins\SuperBans\customization.yml"
    153.  
    154.         set skript-yaml value "PUNISHMENTS.WARN" from "plugins\SuperBans\customization.yml" to ""
    155.         set skript-yaml value "PUNISHMENTS.WARN.Cannot" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be warned"
    156.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN" from "plugins\SuperBans\customization.yml" to ""
    157.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.Actionbar" from "plugins\SuperBans\customization.yml" to "&a&lWARN %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_WARNS} %{_&}%7- %{_&}%a{_MAXWARNS}%{_&}%7)"
    158.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.Console" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7warned %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_WARNS} %{_&}%7- %{_&}%a{_MAXWARNS}%{_&}%7)"
    159.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml" to ""
    160.         add "{_PREFIX}%{_&}%7I have &a&lWARNED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    161.         add " " to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    162.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    163.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    164.         add " %{_&}%7Status %{_&}%8» %{_&}%e{_WARNS} %{_&}%7- %{_&}%e{_MAXWARNS}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    165.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml" to ""
    166.         add "{_PREFIX}%{_&}%7You have been &a&lWARNED%{_&}%r%{_&}%7!" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    167.         add " " to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    168.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    169.         add " %{_&}%7Status %{_&}%8» %{_&}%e{_WARNS} %{_&}%7- %{_&}%e{_MAXWARNS}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" from "plugins\SuperBans\customization.yml"
    170.         set skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml" to ""
    171.         add "%{_&}%7You have received lots of warnings and because of this you have been expelled from %{_&}%b{_SERVERNAME}%{_&}%7." to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    172.         add " " to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    173.         add "%{_&}%7You were warned by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    174.         add " " to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    175.         add "%{_&}%7You have reached %{_&}%8» %{_&}%e{_WARNS} %{_&}%7of a maxium of %{_&}%e{_MAXWARNS} %{_&}%7warns." to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    176.         add " " to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    177.         add "%{_&}%eOur store %{_&}%8» %{_&}%c{_SHOP}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    178.         add "%{_&}%eOur website %{_&}%8» %{_&}%c{_WEB}" to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    179.  
    180.         set skript-yaml value "PUNISHMENTS.KICK" from "plugins\SuperBans\customization.yml" to ""
    181.         set skript-yaml value "PUNISHMENTS.KICK.Cannot" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be kicked"
    182.         set skript-yaml value "PUNISHMENTS.KICK.NEW-KICK" from "plugins\SuperBans\customization.yml" to ""
    183.         set skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.Actionbar" from "plugins\SuperBans\customization.yml" to "&a&lKICK %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER}"
    184.         set skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.Console" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7kicked %{_&}%e{_PLAYER} %{_&}%7('%{_&}%a{_REASON}%{_&}%7')"
    185.         set skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml" to ""
    186.         add "{_PREFIX}%{_&}%7I have &a&lKICKED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    187.         add " " to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    188.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    189.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    190.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    191.         set skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml" to ""
    192.         add "%{_&}%7Your behavior is not right for us, so we have decided to expel you from %{_&}%b{_SERVERNAME}%{_&}%7." to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    193.         add " " to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    194.         add "%{_&}%7You were kicked by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    195.         add " " to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    196.         add "%{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    197.         add " " to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    198.         add "%{_&}%eOur store %{_&}%8» %{_&}%c{_SHOP}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    199.         add "%{_&}%eOur website %{_&}%8» %{_&}%c{_WEB}" to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    200.  
    201.         set skript-yaml value "PUNISHMENTS.BAN" from "plugins\SuperBans\customization.yml" to ""
    202.         set skript-yaml value "PUNISHMENTS.BAN.Already-1" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is already banned"
    203.         set skript-yaml value "PUNISHMENTS.BAN.Already-2" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is already tempbanned"
    204.         set skript-yaml value "PUNISHMENTS.BAN.Cannot-1" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be banned"
    205.         set skript-yaml value "PUNISHMENTS.BAN.Cannot-2" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player cannot be tempbanned"
    206.         set skript-yaml value "PUNISHMENTS.BAN.No" from "plugins\SuperBans\customization.yml" to "%{_&}%7This player is not banned"
    207.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN" from "plugins\SuperBans\customization.yml" to ""
    208.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-1" from "plugins\SuperBans\customization.yml" to "&a&lBAN %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_EXPIRATION}%{_&}%7)"
    209.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-2" from "plugins\SuperBans\customization.yml" to "&a&lBAN %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER} %{_&}%7(%{_&}%a{_EXPIRATION}%{_&}%7)"
    210.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-3" from "plugins\SuperBans\customization.yml" to "&a&lUNBAN %{_&}%8| %{_&}%a{_SORCERER} %{_&}%8» %{_&}%e{_PLAYER}"
    211.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-1" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7banned %{_&}%e{_PLAYER} %{_&}%7('%{_&}%a{_REASON}%{_&}%7') %{_&}%7- (%{_&}%a{_EXPIRATION}%{_&}%7)"
    212.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-2" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7banned %{_&}%e{_PLAYER} %{_&}%7('%{_&}%a{_REASON}%{_&}%7') %{_&}%7- (%{_&}%a{_EXPIRATION}%{_&}%7)"
    213.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-3" from "plugins\SuperBans\customization.yml" to "%{_&}%a{_SORCERER} %{_&}%7unbanned %{_&}%e{_PLAYER}"
    214.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml" to ""
    215.         add "{_PREFIX}%{_&}%7I have &a&lBANNED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    216.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    217.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    218.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    219.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    220.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" from "plugins\SuperBans\customization.yml"
    221.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml" to ""
    222.         add "{_PREFIX}%{_&}%7I have &a&lTEMPBANNED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    223.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    224.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    225.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    226.         add " %{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    227.         add " %{_&}%7Expiration %{_&}%8» %{_&}%e{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" from "plugins\SuperBans\customization.yml"
    228.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml" to ""
    229.         add "{_PREFIX}%{_&}%7I have &a&lUNBANNED%{_&}%r %{_&}%7a new player!" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    230.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    231.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    232.         add " %{_&}%7Done by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" from "plugins\SuperBans\customization.yml"
    233.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml" to ""
    234.         add "%{_&}%7Your behavior is not right for us, so we have decided to completly expel you from %{_&}%b{_SERVERNAME}%{_&}%7." to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    235.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    236.         add "%{_&}%7You were banned by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    237.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    238.         add "%{_&}%7Banned on %{_&}%8» %{_&}%c{_PUNISHEDON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    239.         add "%{_&}%7Expiration %{_&}%8» %{_&}%c{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    240.         add "%{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    241.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    242.         add "%{_&}%eOur store %{_&}%8» %{_&}%c{_SHOP}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    243.         add "%{_&}%eOur website %{_&}%8» %{_&}%c{_WEB}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" from "plugins\SuperBans\customization.yml"
    244.         set skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml" to ""
    245.         add "%{_&}%7Your behavior is not right for us, so we have decided to completly expel you from %{_&}%b{_SERVERNAME}%{_&}%7." to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    246.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    247.         add "%{_&}%7You were banned by %{_&}%8» %{_&}%e{_SORCERER}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    248.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    249.         add "%{_&}%7Banned on %{_&}%8» %{_&}%c{_PUNISHEDON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    250.         add "%{_&}%7Expiration %{_&}%8» %{_&}%7(%{_&}%c{_DURATION}%{_&}%7) - %{_&}%c{_EXPIRATION}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    251.         add "%{_&}%7Reason %{_&}%8» %{_&}%e{_REASON}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    252.         add " " to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    253.         add "%{_&}%eOur store %{_&}%8» %{_&}%c{_SHOP}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    254.         add "%{_&}%eOur website %{_&}%8» %{_&}%c{_WEB}" to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" from "plugins\SuperBans\customization.yml"
    255.  
    256.         set skript-yaml value "ANTISWEAR.Actionbar" from "plugins\SuperBans\customization.yml" to "&a&lSWEAR %{_&}%8| %{_&}%e{_PLAYER} %{_&}%8» %{_&}%7(%{_&}%a{_WORD}%{_&}%7) %{_&}%7- %{_&}%a{_TIMES} %{_&}%7times"
    257.         set skript-yaml value "ANTISWEAR.Console" from "plugins\SuperBans\customization.yml" to "%{_&}%e{_PLAYER} %{_&}%7has said a blocked word! (%{_&}%a{_WORD}%{_&}%7) %{_&}%7- %{_&}%a{_TIMES} %{_&}%7times"
    258.         set skript-yaml value "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml" to ""
    259.         add "{_PREFIX}%{_&}%7I have detected a player &a&lSWEARING&7!" to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    260.         add " " to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    261.         add " %{_&}%7Player %{_&}%8» %{_&}%e{_PLAYER}" to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    262.         add " %{_&}%7Said %{_&}%8» %{_&}%7(%{_&}%a{_WORD}%{_&}%7)" to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    263.         add " %{_&}%7You have said %{_&}%8» %{_&}%a{_TIMES} %{_&}%7bad word(s)" to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" from "plugins\SuperBans\customization.yml"
    264.         set skript-yaml value "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml" to ""
    265.         add "{_PREFIX}%{_&}%7You are &a&lSWEARING%{_&}%7!" to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    266.         add " " to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    267.         add " %{_&}%7You have said %{_&}%8» %{_&}%a{_TIMES} %{_&}%7bad word(s)" to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    268.         add " " to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    269.         add " %{_&}%7I have notified admins. You will be processed soon!" to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" from "plugins\SuperBans\customization.yml"
    270.  
    271.     save yaml "plugins\SuperBans\config.yml"
    272.     save yaml "plugins\SuperBans\customization.yml"
    273.  
    274. #I CHECK THE VALUES DIRECTLY INSTEAD OF DOING THIS: suggested by @Snow-Pyon
    275.  
    276.     set {MESSAGES::Prefix} to skript-yaml value "MESSAGES.Prefix" of "plugins\SuperBans\customization.yml"
    277.     set {MESSAGES::No-Permission} to skript-yaml value "MESSAGES.No-Permission" of "plugins\SuperBans\customization.yml"
    278.     set {MESSAGES::No-Console} to skript-yaml value "MESSAGES.No-Console" of "plugins\SuperBans\customization.yml"
    279.     set {MESSAGES::Command-Removed} to skript-yaml value "MESSAGES.Command-Removed" of "plugins\SuperBans\customization.yml"
    280.     set {MESSAGES::Notifications-On} to skript-yaml value "MESSAGES.Notifications-On" of "plugins\SuperBans\customization.yml"
    281.     set {MESSAGES::Notifications-Off} to skript-yaml value "MESSAGES.Notifications-Off" of "plugins\SuperBans\customization.yml"
    282.     set {MESSAGES::Search-Player} to skript-yaml value "MESSAGES.Search-Player" of "plugins\SuperBans\customization.yml"
    283.     set {MESSAGES::Search-Anulated} to skript-yaml value "MESSAGES.Search-Anulated" of "plugins\SuperBans\customization.yml"
    284.     set {MESSAGES::Cannot-Punish-Yourself} to skript-yaml value "MESSAGE.Cannot-Punish-Yourself" of "plugins\SuperBans\customization.yml"
    285.     set {MESSAGES::Who-To-Punish} to skript-yaml value "MESSAGES.Who-To-Punish" of "plugins\SuperBans\customization.yml"
    286.     set {MESSAGES::No-Online} to skript-yaml value "MESSAGES.No-Online" of "plugins\SuperBans\customization.yml"
    287.     set {MESSAGES::No-Join} to skript-yaml value "MESSAGES.No-Join" of "plugins\SuperBans\customization.yml"
    288.     set {MESSAGES::No-Bans} to skript-yaml value "MESSAGES.No-Bans" of "plugins\SuperBans\customization.yml"
    289.     set {MESSAGES::Ban-Join} to skript-yaml value "MESSAGES.Ban-Join" of "plugins\SuperBans\customization.yml"
    290.     set {MESSAGES::REASONS::No-Reason} to skript-yaml value "REASONS.No-Reason" of "plugins\SuperBans\customization.yml"
    291.     set {MESSAGES::REASONS::DEFAULT-REASONS::Mute} to skript-yaml value "REASONS.DEFAULT-REASONS.Mute" of "plugins\SuperBans\customization.yml"
    292.     set {MESSAGES::REASONS::DEFAULT-REASONS::TempMute} to skript-yaml value "REASONS.DEFAULT-REASONS.Tempmute" of "plugins\SuperBans\customization.yml"
    293.     set {MESSAGES::REASONS::DEFAULT-REASONS::Kick} to skript-yaml value "REASONS.DEFAULT-REASONS.Kick" of "plugins\SuperBans\customization.yml"
    294.     set {MESSAGES::REASONS::DEFAULT-REASONS::Ban} to skript-yaml value "REASONS.DEFAULT-REASONS.Ban" of "plugins\SuperBans\customization.yml"
    295.     set {MESSAGES::REASONS::DEFAULT-REASONS::Tempban} to skript-yaml value "REASONS.DEFAULT-REASONS.Tempban" of "plugins\SuperBans\customization.yml"
    296.     set {MESSAGES::PUNISHMENTS::FROZEN::Already} to skript-yaml value "PUNISHMENTS.FROZEN.Already" of "plugins\SuperBans\customization.yml"
    297.     set {MESSAGES::PUNISHMENTS::FROZEN::Cannot} to skript-yaml value "PUNISHMENTS.FROZEN.Cannot" of "plugins\SuperBans\customization.yml"
    298.     set {MESSAGES::PUNISHMENTS::FROZEN::No} to skript-yaml value "PUNISHMENTS.FROZEN.No" of "plugins\SuperBans\customization.yml"
    299.     set {MESSAGES::PUNISHMENTS::FROZEN::BLOCKED::Move} to skript-yaml value "PUNISHMENTS.FROZEN.BLOCKED.Move" of "plugins\SuperBans\customization.yml"
    300.     set {MESSAGES::PUNISHMENTS::FROZEN::BLOCKED::Command} to skript-yaml value "PUNISHMENTS.FROZEN.BLOCKED.Command" of "plugins\SuperBans\customization.yml"
    301.     set {MESSAGES::PUNISHMENTS::FROZEN::NEW-FROZEN::Frozen-Actionbar} to skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Frozen-Actionbar" of "plugins\SuperBans\customization.yml"
    302.     set {MESSAGES::PUNISHMENTS::FROZEN::NEW-FROZEN::Unfrozen-Actionbar} to skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Unfrozen-Actionbar" of "plugins\SuperBans\customization.yml"
    303.     set {MESSAGES::PUNISHMENTS::FROZEN::NEW-FROZEN::Frozen-Console} to skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Frozen-Console" of "plugins\SuperBans\customization.yml"
    304.     set {MESSAGES::PUNISHMENTS::FROZEN::NEW-FROZEN::Unfrozen-Console} to skript-yaml value "PUNISHMENTS.FROZEN.NEW-FROZEN.Unfrozen-Console" of "plugins\SuperBans\customization.yml"
    305.     set {MESSAGES::PUNISHMENTS::FROZEN::FROZEN-SENT-TO-ADMINS::*} to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-ADMINS" of "plugins\SuperBans\customization.yml"
    306.     set {MESSAGES::PUNISHMENTS::FROZEN::UNFROZEN-SENT-TO-ADMINS::*} to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-ADMINS" of "plugins\SuperBans\customization.yml"
    307.     set {MESSAGES::PUNISHMENTS::FROZEN::FROZEN-SENT-TO-PLAYER::*} to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.FROZEN-SENT-TO-PLAYER" of "plugins\SuperBans\customization.yml"
    308.     set {MESSAGES::PUNISHMENTS::FROZEN::UNFROZEN-SENT-TO-PLAYER::*} to skript-yaml list "PUNISHMENTS.FROZEN.NEW-FROZEN.UNFROZEN-SENT-TO-PLAYER" of "plugins\SuperBans\customization.yml"
    309.  
    310.     set {MESSAGES::PUNISHMENTS::MUTE::Already-1} to skript-yaml value "PUNISHMENTS.MUTE.Already-1" of "plugins\SuperBans\customization.yml"
    311.     set {MESSAGES::PUNISHMENTS::MUTE::Already-2} to skript-yaml value "PUNISHMENTS.MUTE.Already-2" of "plugins\SuperBans\customization.yml"
    312.     set {MESSAGES::PUNISHMENTS::MUTE::Cannot-1} to skript-yaml value "PUNISHMENTS.MUTE.Cannot-1" of "plugins\SuperBans\customization.yml"
    313.     set {MESSAGES::PUNISHMENTS::MUTE::Cannot-2} to skript-yaml value "PUNISHMENTS.MUTE.Cannot-2" of "plugins\SuperBans\customization.yml"
    314.     set {MESSAGES::PUNISHMENTS::MUTE::No} to skript-yaml value "PUNISHMENTS.MUTE.No" of "plugins\SuperBans\customization.yml"
    315.     set {MESSAGES::PUNISHMENTS::MUTE::BLOCKED::Talk} to skript-yaml value "PUNISHMENTS.MUTE.BLOCKED.Talk" of "plugins\SuperBans\customization.yml"
    316.     set {MESSAGES::PUNISHMENTS::MUTE::BLOCKED::Command} to skript-yaml value "PUNISHMENTS.MUTE.BLOCKED.Command" of "plugins\SuperBans\customization.yml"
    317.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Actionbar-1} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-1" of "plugins\SuperBans\customization.yml"
    318.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Actionbar-2} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-2" of "plugins\SuperBans\customization.yml"
    319.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Actionbar-3} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Actionbar-3" of "plugins\SuperBans\customization.yml"
    320.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Console-1} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-1" of "plugins\SuperBans\customization.yml"
    321.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Console-2} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-2" of "plugins\SuperBans\customization.yml"
    322.     set {MESSAGES::PUNISHMENTS::MUTE::NEW-MUTE::Console-3} to skript-yaml value "PUNISHMENTS.MUTE.NEW-MUTE.Console-3" of "plugins\SuperBans\customization.yml"
    323.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-ADMINS-1::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-1" of "plugins\SuperBans\customization.yml"
    324.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-ADMINS-2::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-2" of "plugins\SuperBans\customization.yml"
    325.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-ADMINS-3::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-ADMINS-3" of "plugins\SuperBans\customization.yml"
    326.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-PLAYER-1::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-1" of "plugins\SuperBans\customization.yml"
    327.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-PLAYER-2::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-2" of "plugins\SuperBans\customization.yml"
    328.     set {MESSAGES::PUNISHMENTS::MUTE::SENT-TO-PLAYER-3::*} to skript-yaml list "PUNISHMENTS.MUTE.NEW-MUTE.SENT-TO-PLAYER-3" of "plugins\SuperBans\customization.yml"
    329.     set {MESSAGES::PUNISHMENTS::WARN::Cannot} to skript-yaml value "PUNISHMENTS.WARN.Cannot" of "plugins\SuperBans\customization.yml"
    330.     set {MESSAGES::PUNISHMENTS::WARN::NEW-WARN::Actionbar} to skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.Actionbar" of "plugins\SuperBans\customization.yml"
    331.     set {MESSAGES::PUNISHMENTS::WARN::NEW-WARN::Console} to skript-yaml value "PUNISHMENTS.WARN.NEW-WARN.Console" of "plugins\SuperBans\customization.yml"
    332.     set {MESSAGES::PUNISHMENTS::WARN::NEW-WARN::SENT-TO-ADMINS-1::*} to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-ADMINS-1" of "plugins\SuperBans\customization.yml"
    333.     set {MESSAGES::PUNISHMENTS::WARN::NEW-WARN::SENT-TO-PLAYER-1::*} to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-1" of "plugins\SuperBans\customization.yml"
    334.     set {MESSAGES::PUNISHMENTS::WARN::NEW-WARN::SENT-TO-PLAYER-SCREEN-1::*} to skript-yaml list "PUNISHMENTS.WARN.NEW-WARN.SENT-TO-PLAYER-SCREEN-1" of "plugins\SuperBans\customization.yml"
    335.     set {MESSAGES::PUNISHMENTS::KICK::Cannot} to skript-yaml value "PUNISHMENTS.KICK.Cannot" of "plugins\SuperBans\customization.yml"
    336.     set {MESSAGES::PUNISHMENTS::KICK::NEW-KICK::Actionbar} to skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.Actionbar" of "plugins\SuperBans\customization.yml"
    337.     set {MESSAGES::PUNISHMENTS::KICK::NEW-KICK::Console} to skript-yaml value "PUNISHMENTS.KICK.NEW-KICK.Console" of "plugins\SuperBans\customization.yml"
    338.     set {MESSAGES::PUNISHMENTS::KICK::NEW-KICK::SENT-TO-ADMINS-1::*} to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-ADMINS-1" of "plugins\SuperBans\customization.yml"
    339.     set {MESSAGES::PUNISHMENTS::KICK::NEW-KICK::SENT-TO-PLAYER-SCREEN-1::*} to skript-yaml list "PUNISHMENTS.KICK.NEW-KICK.SENT-TO-PLAYER-SCREEN-1" of "plugins\SuperBans\customization.yml"
    340.     set {MESSAGES::PUNISHMENTS::BAN::Already-1} to skript-yaml value "PUNISHMENTS.BAN.Already-1" of "plugins\SuperBans\customization.yml"
    341.     set {MESSAGES::PUNISHMENTS::BAN::Already-2} to skript-yaml value "PUNISHMENTS.BAN.Already-2" of "plugins\SuperBans\customization.yml"
    342.     set {MESSAGES::PUNISHMENTS::BAN::Cannot-1} to skript-yaml value "PUNISHMENTS.BAN.Cannot-1" of "plugins\SuperBans\customization.yml"
    343.     set {MESSAGES::PUNISHMENTS::BAN::Cannot-2} to skript-yaml value "PUNISHMENTS.BAN.Cannot-2" of "plugins\SuperBans\customization.yml"
    344.     set {MESSAGES::PUNISHMENTS::BAN::No} to skript-yaml value "PUNISHMENTS.BAN.No" of "plugins\SuperBans\customization.yml"
    345.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Actionbar-1} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-1" of "plugins\SuperBans\customization.yml"
    346.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Actionbar-2} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-2" of "plugins\SuperBans\customization.yml"
    347.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Actionbar-3} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Actionbar-3" of "plugins\SuperBans\customization.yml"
    348.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Console-1} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-1" of "plugins\SuperBans\customization.yml"
    349.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Console-2} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-2" of "plugins\SuperBans\customization.yml"
    350.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::Console-3} to skript-yaml value "PUNISHMENTS.BAN.NEW-BAN.Console-3" of "plugins\SuperBans\customization.yml"
    351.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::SENT-TO-ADMINS-1::*} to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-1" of "plugins\SuperBans\customization.yml"
    352.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::SENT-TO-ADMINS-2::*} to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-2" of "plugins\SuperBans\customization.yml"
    353.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::SENT-TO-ADMINS-3::*} to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-ADMINS-3" of "plugins\SuperBans\customization.yml"
    354.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::SENT-TO-PLAYER-SCREEN-1::*} to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-1" of "plugins\SuperBans\customization.yml"
    355.     set {MESSAGES::PUNISHMENTS::BAN::NEW-BAN::SENT-TO-PLAYER-SCREEN-2::*} to skript-yaml list "PUNISHMENTS.BAN.NEW-BAN.SENT-TO-PLAYER-SCREEN-2" of "plugins\SuperBans\customization.yml"
    356.     set {MESSAGES::ANTISWEAR::Actionbar} to skript-yaml value "ANTISWEAR.Actionbar" of "plugins\SuperBans\customization.yml"
    357.     set {MESSAGES::ANTISWEAR::Console} to skript-yaml value "ANTISWEAR.Console" of "plugins\SuperBans\customization.yml"
    358.     set {MESSAGES::ANTISWEAR::SENT-TO-ADMINS::*} to skript-yaml list "ANTISWEAR.SENT-TO-ADMINS" of "plugins\SuperBans\customization.yml"
    359.     set {MESSAGES::ANTISWEAR::SENT-TO-PLAYER::*} to skript-yaml list "ANTISWEAR.SENT-TO-PLAYER" of "plugins\SuperBans\customization.yml"
    360.  
    361.     set {OPTIONS::PUNISHMENTS::Notification-Type} to skript-yaml value "PUNISHMENTS.Notification-Type" of "plugins\SuperBans\config.yml"
    362.     set {OPTIONS::PUNISHMENTS::Console-Notifications} to skript-yaml value "PUNISHMENTS.Console-Notifications" of "plugins\SuperBans\config.yml"
    363.     set {OPTIONS::PUNISHMENTS::Show-Leave-Message} to skript-yaml value "PUNISHMENTS.Show-Leave-Message" of "plugins\SuperBans\config.yml"
    364.     set {OPTIONS::PUNISHMENTS::Max-Warns} to skript-yaml value "PUNISHMENTS.Max-Warns" of "plugins\SuperBans\config.yml"
    365.     set {OPTIONS::GUI::Unban-Messages} to skript-yaml value "GUI.Unban-Messages" of "plugins\SuperBans\config.yml"
    366.     set {OPTIONS::GUI::Keep-Open} to skript-yaml value "GUI.Keep-Open" of "plugins\SuperBans\config.yml"
    367.     set {OPTIONS::GUI::Silent} to skript-yaml value "GUI.Silent" of "plugins\SuperBans\config.yml"
    368.     set {OPTIONS::SERVER::Name} to skript-yaml value "SERVER.Name" of "plugins\SuperBans\config.yml"
    369.     set {OPTIONS::SERVER::Shop} to skript-yaml value "SERVER.Shop" of "plugins\SuperBans\config.yml"
    370.     set {OPTIONS::SERVER::Web} to skript-yaml value "SERVER.Web" of "plugins\SuperBans\config.yml"
    371.     set {OPTIONS::DISALLOWED::COMMANDS::While-Frozen::*} to skript-yaml list "DISALLOWED.COMMANDS.While-Frozen" of "plugins\SuperBans\config.yml"
    372.     set {OPTIONS::DISALLOWED::COMMANDS::While-Muted::*} to skript-yaml list "DISALLOWED.COMMANDS.While-Muted" of "plugins\SuperBans\config.yml"
    373.     set {OPTIONS::ANTISWEAR::Enabled} to skript-yaml value "ANTISWEAR.Enabled" of "plugins\SuperBans\config.yml"
    374.     set {OPTIONS::ANTISWEAR::Word-Replacer} to skript-yaml value "ANTISWEAR.Word-Replacer" of "plugins\SuperBans\config.yml"
    375.     set {OPTIONS::ANTISWEAR::WORDS::*} to skript-yaml list "ANTISWEAR.WORDS" of "plugins\SuperBans\config.yml"
    376.     set {OPTIONS::MAIN::File-Name} to skript-yaml value "MAIN.File-Name" of "plugins\SuperBans\config.yml"
    377.     set {OPTIONS::MAIN::Check-For-Updates} to skript-yaml value "MAIN.Check-For-Updates" of "plugins\SuperBans\config.yml"
     
    #13 KroterPvP, Apr 29, 2018
    Last edited: Apr 30, 2018
  14. Snow-Pyon

    Snow-Pyon Well-Known Member

    Joined:
    Jan 25, 2017
    Messages:
    1,235
    Likes Received:
    176
    Medals:
    @KroterPvP setting variables to the options defeats the whole purpose of this addon. Just use the values directly.
     
  15. KroterPvP

    KroterPvP Active Member

    Joined:
    Apr 10, 2017
    Messages:
    178
    Likes Received:
    7
    Okey, Thanks
     
    #15 KroterPvP, Apr 29, 2018
    Last edited: Apr 29, 2018
  16. Sashie

    Addon Developer

    Joined:
    Jan 22, 2017
    Messages:
    52
    Likes Received:
    49
    The current yaml implementation I'm using doesn't allow for sub node comments otherwise it would already be a feature :emoji_wink:
    --- Double Post Merged, Apr 30, 2018, Original Post Date: Apr 30, 2018 ---
    @KroterPvP I tested loading a file that already has comments and a header and its contents were unchanged are you sure you didn't zig when you should have zagged?
     
  17. KroterPvP

    KroterPvP Active Member

    Joined:
    Apr 10, 2017
    Messages:
    178
    Likes Received:
    7
    Oh, thanks for considering adding comments in a future update!

    And for the file getting reset every time I reload the skript, can you try using my code posted a few threads before? Only your addon is needed.
    You will notice that all is correct the first time but after a skript reload, the files got refresh, the comments dissapear, also the lines between nodes but the values of each node aren't lost.
     
  18. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    Bugfixes and more

    Read the rest of this update entry...
     
  19. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    v1.2.2

    Read the rest of this update entry...
     
  20. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Sashie updated skript-yaml with a new update entry:

    v1.2.3

    Read the rest of this update entry...
     

Share This Page

Loading...