My string is showing as "<none>"

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.
Jan 13, 2021
3
0
1
24
So I was making something to help the admins on the server I'm on and when everything works but the "suslist" command it shows up as <none> please help.



Code:
command suslist:
    trigger:
        message "&6&lMagma&4&lLands &7&l>> &7Sus list: "
        message "%{_suslist::*}%"

command susadd <offline player>:
    trigger:
        add arg 1 to {_suslist::%arg 1%}
        message "&6&lMagma&4&lLands &7&l>> &7Added %arg 1% &7to suslist"

command susremove <offline player>:
    permission: op
    trigger:
        delete {_suslist::%arg 1%}
        message "&6&lMagma&4&lLands &7&l>> &7Removed %arg 1%&7 from suslist"
 
Last edited:
Status
Not open for further replies.