Search results

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

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

  1. couger44

    Solved When the player holds the item, execute the command (Help Me!)

    As @Killerz1243 said, TuSKe and Vanillas inventories are more efficient and do not bring the bugs that SkQuery inventories bring. Depending on what you are telling me, what you want would be something like this: Vanilla: command /emerald: trigger: open chest inventory with (number...
  2. couger44

    Solved Doesnt execute a command once i join the server

    Try: on join: while player is online: wipe player's sidebar set name of sidebar of player to "&3Blocks" if {glass::%player%} > 0: set score "&3Glass" in sidebar of player to {glass::%player%} #console command "scoreboard2 %arg 1%" <-- ...
  3. couger44

    Need help with prison ranks server skripting

    You must post this in Request section.
  4. couger44

    Solved What is obstructing my Automatic Notification?

    Oh, it's fine. Well, there you have it.
  5. couger44

    Solved What is obstructing my Automatic Notification?

    Like this? if player's gamemode is adventure: if player's gamemode is creative: if player's gamemode is survival: if player's gamemode is spectator: Or set it? set player's gamemode to adventure set player's gamemode to creative set player's gamemode to survivival set player's gamemode to spectator
  6. couger44

    Solved What is obstructing my Automatic Notification?

    No problem, my English is not that good. I speak spanish. So, what do you mean with "that" code? A code that has "player's gamemode is adventure" line? Or what?
  7. couger44

    Solved What is obstructing my Automatic Notification?

    What do you mean with "teach a phrase"?
  8. couger44

    Solved What is obstructing my Automatic Notification?

    Try this: on skript start: set {ads.status} to true every a second: if {ads.status} is not set: set {ads.status} to true if {ads.status} is true: set {ads.status} to false loop all players: loop-player's gamemode is adventure wait 2...
  9. couger44

    Custom Commands Error

    What's the code that you're using? Can you send it?
  10. couger44

    Solved What is obstructing my Automatic Notification?

    A question, do you want to do a type of skript about ads, right?
  11. couger44

    Custom Commands Error

    What? Send a screenshot of error message.
  12. couger44

    Solved What is obstructing my Automatic Notification?

    every 6 seconds: loop all players: loop-player's gamemode is adventure: if {Automatic Notice} is not set: set {Automatic Notice} to 1 send "{@prefix} Notice 1" to loop-player stop if {Automatic Notice} is 1...
  13. couger44

    Solved What is obstructing my Automatic Notification?

    Then add: on join: player's gamemode is adventure: #the code
  14. couger44

    Solved What is obstructing my Automatic Notification?

    Just move the every 6 seconds: event. Like this: every 6 seconds: if {Automatic Notice} is not set: set {Automatic Notice} to 1 broadcast "{@prefix} Notice" stop if {Automatic Notice} is 1: set {Automatic Notice} to 2 broadcast "{@prefix} Notice 2"...
  15. couger44

    Solved What is obstructing my Automatic Notification?

    "every 6 seconds" is not a condition, is a event.
  16. couger44

    Solved CPS command

    Skript is not good at this kind of thing. But well, try something like this: on join: delete {counter.%player%} on left click: add 1 to {counter.%player%} if {counter.%player%} >= 10: kick player due to "Reason to kick" wait 1 seconds subtract 1 from...
  17. couger44

    inventory GUI

    From what you tell me, then the problem would be the version you use. Or if this is not the error, it could be the value of the variable (%clicked entity%) at the time you check the inventory name.
  18. couger44

    inventory GUI

    Although, in the parser your code do not get an error, try this: on inventory click: if "%event.getView().getTitle()%" = {gui.%player%}: if clicked slot is 0: close inventory of player execute player command "/card %{gui.%player%}%" if clicked slot is...
  19. couger44

    Solved give and argument

    You're welcome, remember make the post as solved.