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. Noblesuntzu

    hi in case your wondering what my avatar is its a picture of a bat that i used to photoshop my...

    hi in case your wondering what my avatar is its a picture of a bat that i used to photoshop my dog. maybe ill post it one day
  2. Noblesuntzu

    Grabbing info from .log files

    I really don't know anything about this but maybe this will promt something who does know? on chat: set {_i} to 1 loop (line count of file {@log}) times: add 1 to {_i} write "[SENDER=%player%] [MESSAGE] %message%" at line {_i} to file {@log} command /messagelog <offline...
  3. Noblesuntzu

    Setting block resistance for blocks?

    You can't actually change the block resistance because that's hard coded into the game, but I'm assuming something like this might be beneficial to you Hope this is helpful to you! The second code isn't working and I'm not entirely sure why. Additionally you would need to find a way to...
  4. Noblesuntzu

    Chatlock would not work...

    Your problem is that you used arg-1 is not set: For some reason this totally screws over my (and I'm assuming your) server. The solution: remove this line. Your command information will have to be shortened and put under the usage: section of the command, unless somebody can provide a fix for...
  5. Noblesuntzu

    An internal error occurred while attempting to perform this command.

    Sir you have solved my problem thank you very much! The only problem I have now is with reloading a specific script (it throws the same error) but I'm assuming this is because I screwed up syntax (this script) so don't bother looking into that. Anyway thanks again!
  6. Noblesuntzu

    An internal error occurred while attempting to perform this command.

    Yes there is I'll include it but it's pretty standard the only things I've changed are the effect commands and the update settings.
  7. Noblesuntzu

    Vixio loop problem

    I don’t know anything about Vixio and I’m on my phone so I can’t really do a ton of research but it seems like your error is on a line of code that isn’t posted?
  8. Noblesuntzu

    An internal error occurred while attempting to perform this command.

    I tried both Spigot 1.8.8 and PaperSpigot 1.8.8 and I still get the same error, except all the craftbukkit jars in the error are replaced with the spigot/paper jars.
  9. Noblesuntzu

    Detect if there is any item in some slot

    I believe he is trying to create a GUI which you can insert an item into, and then for example enchant it if it is a diamond sword named "Cow" (bad example maybe but I think it's what he's getting at haha) My server is being ridiculous currently so I can't test this but I believe you can use...
  10. Noblesuntzu

    An internal error occurred while attempting to perform this command.

    Super sorry if this is the wrong place to post this but any time I type any Skript command I receive this error in game An internal error has occurred while attempting to perform this command And this in console [18:04:51 INFO]: noblesuntzu issued server command: /sk reload all [18:04:51...
  11. Noblesuntzu

    TuSke GUI Error

    Skript Version: Skript 2.2 dev25 Skript Author: Bensku (its the offical dev25 so all of those people) Minecraft Version: 1.8.8 (paperspigot) Just a little backstory, I'm making a kit plugin with a GUI, and I'm saving each kits information in a list variable (if my method of list variables is...
  12. Noblesuntzu

    ShaneBee?

    Okay so I’m not crazy haha. Thanks!
  13. Noblesuntzu

    An unknown error

    What addons do you have?
  14. Noblesuntzu

    ShaneBee?

    So this may just be my imagination but it seems like some posts made by other users have been marked under the username ShaneBee? Am I just stupid or is there something I need to know?
  15. Noblesuntzu

    Solved At time event?

    Oh that's simple enough haha thank you!
  16. Noblesuntzu

    Solved At time event?

    I came up with the following solution which isn't perfect but it suits my needs. on command /timer <integer>: usage: /timer <time in minutes til cooldown reset> permission: timer.set trigger: set {time.left} to <integer> every minute: remove 1 from {time.left} [The reason I provided...
  17. Noblesuntzu

    Solved At time event?

    Okay quick question is there an addon with an event something like "at time 12:00PM EST?" I know there is an at minecraft time event but I need something that happens once a day, without having to worry about restarting the server and resetting the periodical track. Anyway thanks!
  18. Noblesuntzu

    Solved Ban player doesn't work?

    Skript Version 2.2-Fixes-V8b Super simple, literally when I ban a player with the syntax ban player because "he is an idiot" (which is from the docs btw, just to totally make sure it's not my fault XD) Nothing happens. It never actually bans the player. No errors. Just don't work. Thanks, XD...
  19. Noblesuntzu

    Solved Or in Skript?

    Super simple question, just wonder how to use 'or' in Skript? Is this not possible? I tried using the word or and || but it couldn't parse it. (Like my entire server wouldn't load because of it) I really need exactly this and not an if and else if statement (the code below this is extremely...
  20. Noblesuntzu

    Solved If item is armor?

    This is super quick, just wondering how to check if said item is any article of armor. (I could do this with a ton of if statements but that seems completely ridiculous and unnecessary.)