Yet another request, this time I want pages

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

Jake0125

Member
Mar 19, 2019
4
0
1
24
Category: Still dont know what this is

Suggested name: I don't care

Spigot/Skript Version: 2.2-dev36

What I want:
So you know every /help command in minecraft and how it has pages? I'd like to know how to make pages with skript, e.g. /tags 1 or /tags 2

Ideas for commands: /tags 1 or /tags 2

Ideas for permissions: non needed

When I'd like it by: A reasonable time (actually though, I don't mind when.)
 
? is this what you are trying to do?
Code:
command /tags [<text>]:
    trigger:
        if arg 1 is not set:
            message "&8&m-------&8[ &a&lTags Help&8 ]&m-------"
            message "&fCommand 1 &8- &7Description"
            message "&fCommand 2 &8- &7Description"
            message "&fCommand 3 &8- &7Description"
            message "&fCommand 4 &8- &7Description"
            message "&fCommand 5 &8- &7Description"
            message "&7Type &a/tags 2&7 to read the next page."
        if arg 1 is "1":
            message "&8&m-------&8[ &a&lTags Help&8 ]&m-------"
            message "&fCommand 1 &8- &7Description"
            message "&fCommand 2 &8- &7Description"
            message "&fCommand 3 &8- &7Description"
            message "&fCommand 4 &8- &7Description"
            message "&fCommand 5 &8- &7Description"
            message "&7Type &a/tags 2&7 to read the next page."
        if arg 1 is "2":
            message "&8&m-------&8[ &a&lTags Help&8 ]&m-------"
            message "&fCommand 6 &8- &7Description"
            message "&fCommand 7 &8- &7Description"
            message "&fCommand 8 &8- &7Description"
        if arg 1 is not "1" or "2":
            message "&8&m-------&8[ &a&lTags Help&8 ]&m-------"
            message "&fCommand 1 &8- &7Description"
            message "&fCommand 2 &8- &7Description"
            message "&fCommand 3 &8- &7Description"
            message "&fCommand 4 &8- &7Description"
            message "&fCommand 5 &8- &7Description"
            message "&7Type &a/tags 2&7 to read the next page."