Recent content by AC_AKB

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

  1. AC_AKB

    Open Inventory - Armor

    Hey ArthurMorgan, This works fine: command /viewarmor [<offlineplayer>]: trigger: if arg-1 is not set: send "&cUsage: /viewarmor <player>" to player if arg-1 is set: set {_viewarmor} to a new chest inventory with 1 row named "&cPlayer's Armor"...
  2. AC_AKB

    How would I make a fireball not explode?

    Hey es63! This works for me: on explode: if event-projectile is a fireball: cancel event
  3. AC_AKB

    Teleport player to another player's coordinates

    Have you tried this? command /spectate [<player>]: aliases: /spec, /spectator trigger: if arg-1 is set: set player's gamemode to spectator set {_player} to "%arg-1%" broadcast "%{_player}%" teleport player to arg-1 Just teleport...
  4. AC_AKB

    Solved GUI Slots with variables

    Hey Aberforth! This works well for me, try this: on right click on entity: if name of clicked entity is "gui": set {_gui} to a new chest inventory with 6 row with name "*" set {_numbers::*} to "45", "46", "47", "48", "49", "50", "51", "52" and "53" set {_switch} to...
  5. AC_AKB

    [HELP] Non OPS cant do anything.

    Well.. I couldn't find anything. It seems fine because you added this: if player has permission "awpcc.default": But maybe you can try removing it. So it doesn't require any permission, maybe that helps.
  6. AC_AKB

    [HELP] Non OPS cant do anything.

    Oh alright.. could you send me your full code in 1 pastebin or hastebin? Then I can read your code and see if I can find any solution.
  7. AC_AKB

    [HELP] Non OPS cant do anything.

    Hey AlexWarrior, One of the reasons your GUI is not working is because of the with lore. The with lore usally is from SkQuery but Skript now has its own. So I recommend removing SkQuery and replace it with TuSKe (you already have it). The code that works fine for me is here: hastebin -...