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!

  2. LOOKING FOR A VERSION OF SKRIPT?

    You can always check out our Wiki for downloads and any other information about Skript!

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

Solved GUI help.

Discussion in 'Skript' started by FallingCatus, Dec 22, 2017.

Thread Status:
Not open for further replies.
  1. FallingCatus

    FallingCatus Member

    Joined:
    Jun 29, 2017
    Messages:
    38
    Likes Received:
    0
    Hey all, i seem to be having an issue, i am creating a gui for my staff to use for banning warning and mute. I have only set ban and temp ban for now, I have gave the satff the permissions needed for both the ban plugin and my skript. The issue is i can use the gui fine, i click and it opens the next menu, but when my staff open the gui for example tempban nothing happens, no new page. I do get errors in consle though,

    This is the Skript:

    Code (Skript):
    1.  
    2.  
    3. # Name - PixelAdmin GUI
    4. # Version - AdvancedBan 2.0
    5. # Written By - Chris90 aka FallingCactus
    6.  
    7.  
    8.  
    9.  
    10. command /p [<offline player>]:
    11.     permission: PixelAdmin.use
    12.     permission message: &f&lPixel&c&lAdmin &8> &aNice try! &7Only our staff have this permission.
    13.  
    14.     trigger:
    15.         set {_banplayer} to arg-1
    16.         wait 2 ticks
    17.         if arg-1 is not set:
    18.             send "&f&lPixel&c&lAdmin &8> &6/ban &7<player>"
    19.         if arg-1 is set:
    20.             open virtual chest inventory with 1 rows named "&f&lPixel&c&lAdmin &7GUI" to player
    21.             create a gui slot 0 of player with light gray glass pane named " " to do nothing
    22.             create a gui slot 1 of player with light green glass pane named "&a&lMute: &a%{_banplayer}%" with lore "&7Click to select" to run player command "skript:smpadmintempmute %{_banplayer}%"
    23.             create a gui slot 2 of player with light gray glass pane named " " to do nothing
    24.             create a gui slot 3 of player with yellow glass pane named "&e&lWarn: &a%{_banplayer}%" with lore "&7Click to select" to run player command "skript:smpadmintempwarn %{_banplayer}%"
    25.             create a gui slot 4 of player with light gray glass pane named " " to do nothing
    26.             create a gui slot 5 of player with orange glass pane named "&6&lTemp Ban: &a%{_banplayer}%" with lore "&7Click to select" to run player command "skript:smpadmintempban %{_banplayer}%"
    27.             create a gui slot 6 of player with light gray glass pane named " " to do nothing
    28.             create a gui slot 7 of player with red glass pane named "&c&lPerm Ban: &a%{_banplayer}%" with lore "&7Click to select" to run player command "skript:smpadminban %{_banplayer}%"
    29.             create a gui slot 8 of player with light gray glass pane named " " to do nothing
    30.  
    31.  
    32. command /smpadminban [<offline player>]:
    33.     permission: PixelAdmin.ban
    34.     permission message: &f&lPixel&c&lAdmin &8> &aNice try! &7Only our mods and admins have this permission.
    35.     trigger:
    36.         set {_banplayer} to arg-1
    37.         wait 2 ticks
    38.         if arg-1 is not set:
    39.             send "&c&lSMP&f&lAdmin &8> &6/ban &7<player>"
    40.         if arg-1 is set:
    41.             open virtual chest inventory with 3 rows named "&cPerm Ban: &a%{_banplayer}%" to player
    42.             wait 1 tick
    43.             create a gui slot 9 of player with iron sword named "&aPvP/Kill Aura Hacks" to close:
    44.                 execute console command "/essentials:smite %{_banplayer}%"
    45.                 wait 5 ticks
    46.                 execute console command "/essentials:smite %{_banplayer}%"
    47.                 wait 5 ticks
    48.                 execute console command "/essentials:smite %{_banplayer}%"
    49.                 wait 5 ticks
    50.                 execute player command "/advancedban:ban %{_banplayer}% PvP/Kill Aura Hacks"
    51.             create a gui slot 10 of player with feather named "&aFly/Speed/Water Hacking" to close:
    52.                 execute console command "/essentials:smite %{_banplayer}%"
    53.                 wait 5 ticks
    54.                 execute console command "/essentials:smite %{_banplayer}%"
    55.                 wait 5 ticks
    56.                 execute console command "/essentials:smite %{_banplayer}%"
    57.                 wait 5 ticks
    58.                 execute player command "/advancedban:ban %{_banplayer}% Fly/Speed/Water Hacking"
    59.             create a gui slot 11 of player with diamond named "&aX-Ray" to close:
    60.                 execute console command "/essentials:smite %{_banplayer}%"
    61.                 wait 5 ticks
    62.                 execute console command "/essentials:smite %{_banplayer}%"
    63.                 wait 5 ticks
    64.                 execute console command "/essentials:smite %{_banplayer}%"
    65.                 wait 5 ticks
    66.                 execute player command "/advancedban:ban %{_banplayer}% X-Ray"
    67.             create a gui slot 12 of player with compass named "&aAdvertising" to close:
    68.                 execute console command "/essentials:smite %{_banplayer}%"
    69.                 wait 5 ticks
    70.                 execute console command "/essentials:smite %{_banplayer}%"
    71.                 wait 5 ticks
    72.                 execute console command "/essentials:smite %{_banplayer}%"
    73.                 wait 5 ticks
    74.                 execute player command "/advancedban:ban %{_banplayer}% Advertising"
    75.             create a gui slot 13 of player with creeper head named "&aStaff Impersonation/Disrespect" to close:
    76.                 execute console command "/essentials:smite %{_banplayer}%"
    77.                 wait 5 ticks
    78.                 execute console command "/essentials:smite %{_banplayer}%"
    79.                 wait 5 ticks
    80.                 execute console command "/essentials:smite %{_banplayer}%"
    81.                 wait 5 ticks
    82.                 execute player command "/advancedban:ban %{_banplayer}% Staff Impersonation/Disrespect"
    83.             create a gui slot 14 of player with Book and Quill named "&aSpam/Racism/Harassment/Sexism/Threats/KYS" to close:
    84.                 execute console command "/essentials:smite %{_banplayer}%"
    85.                 wait 5 ticks
    86.                 execute console command "/essentials:smite %{_banplayer}%"
    87.                 wait 5 ticks
    88.                 execute console command "/essentials:smite %{_banplayer}%"
    89.                 wait 5 ticks
    90.                 execute player command "/advancedban:ban %{_banplayer}% Spam/Racism/Harassment/Sexism/Threats/KYS"
    91.             create a gui slot 15 of player with tnt named "&aGriefing" to close:
    92.                 execute console command "/essentials:smite %{_banplayer}%"
    93.                 wait 5 ticks
    94.                 execute console command "/essentials:smite %{_banplayer}%"
    95.                 wait 5 ticks
    96.                 execute console command "/essentials:smite %{_banplayer}%"
    97.                 wait 5 ticks
    98.                 execute player command "/advancedban:ban %{_banplayer}% Griefing"
    99.             create a gui slot 16 of player with ender chest named "&aExploiting &7(Please remove items/money)" to close:
    100.                 execute console command "/essentials:smite %{_banplayer}%"
    101.                 wait 5 ticks
    102.                 execute console command "/essentials:smite %{_banplayer}%"
    103.                 wait 5 ticks
    104.                 execute console command "/essentials:smite %{_banplayer}%"
    105.                 wait 5 ticks
    106.                 execute player command "/advancedban:ban %{_banplayer}% Exploiting"
    107.             create a gui slot 17 of player with cobweb named "&aOther/Unspecified" to close:
    108.                 execute console command "/essentials:smite %{_banplayer}%"
    109.                 wait 5 ticks
    110.                 execute console command "/essentials:smite %{_banplayer}%"
    111.                 wait 5 ticks
    112.                 execute console command "/essentials:smite %{_banplayer}%"
    113.                 wait 5 ticks
    114.                 execute player command "/advancedban:ban %{_banplayer}% Other/Unspecified"
    115.  
    116. command /smpadmintempban [<offline player>]:
    117.     permission: PixelAdmin.tempban
    118.     permission message: &c&lSMP&f&lAdmin &8> &aNice try! &7Only our staff have this permission.
    119.     trigger:
    120.         set {_banplayer} to arg-1
    121.         wait 2 tick
    122.         if arg-1 is not set:
    123.             send "&c&lSMP&f&lAdmin &r&8> &6/tempban &7<player>"
    124.         if arg-1 is set:
    125.             open virtual chest inventory with 5 rows named "&eTemp Ban: &a%{_banplayer}%" to player
    126.             wait 1 tick
    127.             create a gui slot 9 of player with iron sword named "&aPvP/Kill Aura Hacks" with lore "&e7 Days" to close:
    128.                 execute console command "/essentials:smite %{_banplayer}%"
    129.                 wait 5 ticks
    130.                 execute console command "/essentials:smite %{_banplayer}%"
    131.                 wait 5 ticks
    132.                 execute console command "/essentials:smite %{_banplayer}%"
    133.                 wait 5 ticks
    134.                 execute player command "/advancedban:tempban %{_banplayer}% 7d PvP/Kill Aura Hacks"
    135.             create a gui slot 10 of player with feather named "&aFly/Speed/Water Hacking" with lore "&e7 Days" to close:
    136.                 execute console command "/essentials:smite %{_banplayer}%"
    137.                 wait 5 ticks
    138.                 execute console command "/essentials:smite %{_banplayer}%"
    139.                 wait 5 ticks
    140.                 execute console command "/essentials:smite %{_banplayer}%"
    141.                 wait 5 ticks
    142.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Fly/Speed/Water Hacking"
    143.             create a gui slot 11 of player with diamond named "&aX-Ray" with lore "&e7 Days" to close:
    144.                 execute console command "/essentials:smite %{_banplayer}%"
    145.                 wait 5 ticks
    146.                 execute console command "/essentials:smite %{_banplayer}%"
    147.                 wait 5 ticks
    148.                 execute console command "/essentials:smite %{_banplayer}%"
    149.                 wait 5 ticks
    150.                 execute player command "/advancedban:tempban %{_banplayer}% 7d X-Ray"
    151.             create a gui slot 12 of player with compass named "&aAdvertising" with lore "&e7 Days" to close:
    152.                 execute console command "/essentials:smite %{_banplayer}%"
    153.                 wait 5 ticks
    154.                 execute console command "/essentials:smite %{_banplayer}%"
    155.                 wait 5 ticks
    156.                 execute console command "/essentials:smite %{_banplayer}%"
    157.                 wait 5 ticks
    158.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Advertising"
    159.             create a gui slot 13 of player with creeper head named "&aStaff Impersonation/Disrespect" with lore "&e7 Days" to close:
    160.                 execute console command "/essentials:smite %{_banplayer}%"
    161.                 wait 5 ticks
    162.                 execute console command "/essentials:smite %{_banplayer}%"
    163.                 wait 5 ticks
    164.                 execute console command "/essentials:smite %{_banplayer}%"
    165.                 wait 5 ticks
    166.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Staff Impersonation/Disrespect"
    167.             create a gui slot 14 of player with Book and Quill named "&aSpam/Racism/Harassment/Sexism/Threats/KYS" with lore "&e7 Days" to close:
    168.                 execute console command "/essentials:smite %{_banplayer}%"
    169.                 wait 5 ticks
    170.                 execute console command "/essentials:smite %{_banplayer}%"
    171.                 wait 5 ticks
    172.                 execute console command "/essentials:smite %{_banplayer}%"
    173.                 wait 5 ticks
    174.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Spam/Racism/Harassment/Sexism/Threats/KYS"
    175.             create a gui slot 15 of player with tnt named "&aGriefing" with lore "&e7 Days" to close:
    176.                 execute console command "/essentials:smite %{_banplayer}%"
    177.                 wait 5 ticks
    178.                 execute console command "/essentials:smite %{_banplayer}%"
    179.                 wait 5 ticks
    180.                 execute console command "/essentials:smite %{_banplayer}%"
    181.                 wait 5 ticks
    182.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Griefing"
    183.             create a gui slot 16 of player with ender chest named "&aExploiting  &7(Please remove items/money)" with lore "&e7 Days" to close:
    184.                 execute console command "/essentials:smite %{_banplayer}%"
    185.                 wait 5 ticks
    186.                 execute console command "/essentials:smite %{_banplayer}%"
    187.                 wait 5 ticks
    188.                 execute console command "/essentials:smite %{_banplayer}%"
    189.                 wait 5 ticks
    190.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Exploiting"
    191.             create a gui slot 17 of player with cobweb named "&aOther/Unspecified" with lore "&e7 Days" to close:
    192.                 execute console command "/essentials:smite %{_banplayer}%"
    193.                 wait 5 ticks
    194.                 execute console command "/essentials:smite %{_banplayer}%"
    195.                 wait 5 ticks
    196.                 execute console command "/essentials:smite %{_banplayer}%"
    197.                 wait 5 ticks
    198.                 execute player command "/advancedban:tempban %{_banplayer}% 7d Other/Unspecified"
    199.             create a gui slot 27 of player with iron sword named "&aPvP/Kill Aura Hacks" with lore "&e14 Days" to close:
    200.                 execute console command "/essentials:smite %{_banplayer}%"
    201.                 wait 5 ticks
    202.                 execute console command "/essentials:smite %{_banplayer}%"
    203.                 wait 5 ticks
    204.                 execute console command "/essentials:smite %{_banplayer}%"
    205.                 wait 5 ticks
    206.                 execute player command "/advancedban:tempban %{_banplayer}% 14d PvP/Kill Aura Hacks"
    207.             create a gui slot 28 of player with feather named "&aFly/Speed/Water Hacking" with lore "&e14 Days" to close:
    208.                 execute console command "/essentials:smite %{_banplayer}%"
    209.                 wait 5 ticks
    210.                 execute console command "/essentials:smite %{_banplayer}%"
    211.                 wait 5 ticks
    212.                 execute console command "/essentials:smite %{_banplayer}%"
    213.                 wait 5 ticks
    214.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Fly/Speed/Water Hacking"
    215.             create a gui slot 29 of player with diamond named "&aX-Ray" with lore "&e14 Days" to close:
    216.                 execute console command "/essentials:smite %{_banplayer}%"
    217.                 wait 5 ticks
    218.                 execute console command "/essentials:smite %{_banplayer}%"
    219.                 wait 5 ticks
    220.                 execute console command "/essentials:smite %{_banplayer}%"
    221.                 wait 5 ticks
    222.                 execute player command "/advancedban:tempban %{_banplayer}% 14d X-Ray"
    223.             create a gui slot 30 of player with compass named "&aAdvertising" with lore "&e14 Days" to close:
    224.                 execute console command "/essentials:smite %{_banplayer}%"
    225.                 wait 5 ticks
    226.                 execute console command "/essentials:smite %{_banplayer}%"
    227.                 wait 5 ticks
    228.                 execute console command "/essentials:smite %{_banplayer}%"
    229.                 wait 5 ticks
    230.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Advertising"
    231.             create a gui slot 31 of player with creeper head named "&aStaff Impersonation/Disrespect" with lore "&e14 Days" to close:
    232.                 execute console command "/essentials:smite %{_banplayer}%"
    233.                 wait 5 ticks
    234.                 execute console command "/essentials:smite %{_banplayer}%"
    235.                 wait 5 ticks
    236.                 execute console command "/essentials:smite %{_banplayer}%"
    237.                 wait 5 ticks
    238.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Staff Impersonation/Disrespect"
    239.             create a gui slot 32 of player with Book and Quill named "&aSpam/Racism/Harassment/Sexism/Threats/KYS" with lore "&e14 Days" to close:
    240.                 execute console command "/essentials:smite %{_banplayer}%"
    241.                 wait 5 ticks
    242.                 execute console command "/essentials:smite %{_banplayer}%"
    243.                 wait 5 ticks
    244.                 execute console command "/essentials:smite %{_banplayer}%"
    245.                 wait 5 ticks
    246.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Spam/Racism/Harassment/Sexism/Threats/KYS"
    247.             create a gui slot 33 of player with tnt named "&aGriefing" with lore "&e14 Days" to close:
    248.                 execute console command "/essentials:smite %{_banplayer}%"
    249.                 wait 5 ticks
    250.                 execute console command "/essentials:smite %{_banplayer}%"
    251.                 wait 5 ticks
    252.                 execute console command "/essentials:smite %{_banplayer}%"
    253.                 wait 5 ticks
    254.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Griefing"
    255.             create a gui slot 34 of player with ender chest named "&aExploiting  &7(Please remove items/money)" with lore "&e14 Days" to close:
    256.                 execute console command "/essentials:smite %{_banplayer}%"
    257.                 wait 5 ticks
    258.                 execute console command "/essentials:smite %{_banplayer}%"
    259.                 wait 5 ticks
    260.                 execute console command "/essentials:smite %{_banplayer}%"
    261.                 wait 5 ticks
    262.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Exploiting"
    263.             create a gui slot 35 of player with cobweb named "&aOther/Unspecified" with lore "&e14 Days" to close:
    264.                 execute console command "/essentials:smite %{_banplayer}%"
    265.                 wait 5 ticks
    266.                 execute console command "/essentials:smite %{_banplayer}%"
    267.                 wait 5 ticks
    268.                 execute console command "/essentials:smite %{_banplayer}%"
    269.                 wait 5 ticks
    270.                 execute player command "/advancedban:tempban %{_banplayer}% 14d Other/Unspecified"
    This is the Console error: (only when other non opped staff try to open next gui)

    Code (Skript):
    1. [13:29:50 INFO]: BigSpikyCactus issued server command: /p SandoGO
    2. [13:29:50 INFO]: BigSpikyCactus [d38f650b-bc7c-46be-a415-3322507e2e12]: /p SandoGO
    3. [13:29:52 ERROR]: Could not pass event InventoryClickEvent to Skript v2.2-dev32c
    4. java.lang.NullPointerException: name
    5.         at me.lucko.luckperms.bukkit.model.LPPermissible.addAttachment(LPPermissible.java:204) ~[?:?]
    6.         at me.lucko.luckperms.bukkit.model.LPPermissible.addAttachment(LPPermissible.java:67) ~[?:?]
    7.         at org.bukkit.craftbukkit.v1_12_R1.entity.CraftHumanEntity.addAttachment(CraftHumanEntity.java:128) ~[spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    8.         at com.github.tukenuke.tuske.util.CommandUtils.runCommand(CommandUtils.java:37) ~[?:?]
    9.         at com.github.tukenuke.tuske.sections.gui.EffFormatGUI.lambda$execute$0(EffFormatGUI.java:132) ~[?:?]
    10.         at com.github.tukenuke.tuske.manager.gui.GUI.run(GUI.java:29) ~[?:?]
    11.         at com.github.tukenuke.tuske.manager.gui.GUIManager$1.onClick(GUIManager.java:149) ~[?:?]
    12.         at com.github.tukenuke.tuske.listeners.GUIListener.onEvent(GUIListener.java:57) ~[?:?]
    13.         at com.github.tukenuke.tuske.manager.gui.v2.SkriptGUIEvent.check(SkriptGUIEvent.java:39) ~[?:?]
    14.         at ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:145) ~[?:?]
    15.         at ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:109) ~[?:?]
    16.         at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    17.         at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:500) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    18.         at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:485) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    19.         at net.minecraft.server.v1_12_R1.PlayerConnection.a(PlayerConnection.java:1889) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    20.         at net.minecraft.server.v1_12_R1.PacketPlayInWindowClick.a(SourceFile:33) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    21.         at net.minecraft.server.v1_12_R1.PacketPlayInWindowClick.a(SourceFile:10) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    22.         at net.minecraft.server.v1_12_R1.PlayerConnectionUtils$1.run(SourceFile:13) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    23.         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_112]
    24.         at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_112]
    25.         at net.minecraft.server.v1_12_R1.SystemUtils.a(SourceFile:46) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    26.         at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:748) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    27.         at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    28.         at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    29.         at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577) [spigot-1.12.2.jar:git-Spigot-549c1fa-45c8386]
    30.         at java.lang.Thread.run(Thread.java:745) [?:1.8.0_112]
    The plugins are up to date and the staff haver permissions because they can run the command fine when typed ( /smpadmintempban <player> ) its just the gui that wont work.
     
    #1 FallingCatus, Dec 22, 2017
    Last edited: Dec 22, 2017
  2. FUZIK

    FUZIK Active Member

    Joined:
    Jan 26, 2017
    Messages:
    115
    Likes Received:
    10
    replace "open virtual chest inventory" to
    Code (Skript):
    1.  
    2. create a gui with virtual chest with 6 rows named "":
    3.         # stuff...
    4. open last gui to player
    5.  
    don't use "format slot". use tuske gui.
    tuske wiki
     
  3. FallingCatus

    FallingCatus Member

    Joined:
    Jun 29, 2017
    Messages:
    38
    Likes Received:
    0
    "create a gui with virtual chest with 6 rows named" just gives me errors on reload saying i need to check tuske documentation and it wont open a gui at all.
     
  4. FUZIK

    FUZIK Active Member

    Joined:
    Jan 26, 2017
    Messages:
    115
    Likes Received:
    10
    this my example(for a concept of how TuskeGUI works)
    Code (Skript):
    1. command /command <OfflinePlayer>:
    2.     usage: &c&lSMP&f&lAdmin &8> &6/ban &7<player>
    3.     trigger:
    4.         set {_banplayer} to arg-1
    5.         create a gui with virtual chest with 3 rows named "&cPerm Ban: &a%{_banplayer}%":
    6.             make gui slot 9 with (iron sword named "&aPvP/Kill Aura Hacks"):
    7.                 loop 3 times:
    8.                     execute console command "/essentials:smite %{_banplayer}%"
    9.                     wait 5 ticks
    10.                 execute player command "/advancedban:ban %{_banplayer}% PvP/Kill Aura Hacks"
    11.         open last gui to player
    "command params"
     
    #4 FUZIK, Dec 22, 2017
    Last edited: Dec 22, 2017
  5. FallingCatus

    FallingCatus Member

    Joined:
    Jun 29, 2017
    Messages:
    38
    Likes Received:
    0
    seem to be still having the same error using this layout/format. the error on console seems to reference my permission plugin "luckperms" but even if i remove the need for perms for all gui the users can not open the next gui unless opped.
     
  6. Syst3ms

    Addon Developer

    Joined:
    Jan 24, 2017
    Messages:
    191
    Likes Received:
    22
    @FUZIK "create gui slot" is TuSKe you idiot.

    Anyway, LuckPerms issue somehow. Any idea @Tuke_Nuke ?
     
  7. FUZIK

    FUZIK Active Member

    Joined:
    Jan 26, 2017
    Messages:
    115
    Likes Received:
    10
    you inattentive and rude.
     
  8. Syst3ms

    Addon Developer

    Joined:
    Jan 24, 2017
    Messages:
    191
    Likes Received:
    22
    upload_2017-12-22_16-51-31.png
    The entire point is that I'm more attentive than you.
     
  9. FallingCatus

    FallingCatus Member

    Joined:
    Jun 29, 2017
    Messages:
    38
    Likes Received:
    0
    so do you think it may be an issue with LuckPerms or Tuske?
    --- Double Post Merged, Dec 23, 2017, Original Post Date: Dec 22, 2017 ---
    bump: can anyone help with this?
     
  10. FinalPlayer024

    FinalPlayer024 Active Member

    Joined:
    Oct 19, 2017
    Messages:
    94
    Likes Received:
    4
    Here, you're the "idiot".. :emoji_grinning:
    --- Double Post Merged, Dec 23, 2017, Original Post Date: Dec 23, 2017 ---
    I understood you love TuSKe, but let people do what they want, if they want to use format slot or tuske, god
     
  11. FallingCatus

    FallingCatus Member

    Joined:
    Jun 29, 2017
    Messages:
    38
    Likes Received:
    0
    I still dont seem to have a solution for the actual issue here, the gui works fine, this issue is that non opped players can not move to the next page of the gui, when the click ban nothing happens but with opped players it works fine.
    --- Double Post Merged, Dec 23, 2017, Original Post Date: Dec 23, 2017 ---
    I have contacted the dev of the permission plugin. as this seems to be where the issue is.
     
  12. Syst3ms

    Addon Developer

    Joined:
    Jan 24, 2017
    Messages:
    191
    Likes Received:
    22
    Format slot is literal trash, I need to make a thread about that. One of old members' duties is to make sure that people follow the good practices, which imo is just as important as having working code.
    Format slot is a terrible practice. You still want to use format slot ? Ok. But don't expect any help from me.
     
Thread Status:
Not open for further replies.

Share This Page

Loading...