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

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

  1. Jason Paige

    Solved Colored Console Messages

    hey, Yea does not look like your console supports color. white is regular text. yellow is warn. and red is error. they come with all server wrappers. if you are thinking of a switch i recommend bloom host. much cheaper. pterodactyl panel more stats. and you get a server splitter. here is their...
  2. Jason Paige

    Solved Colored Console Messages

    Yea as long as your console supports it you send it just like everything. send "&aColored Message" I don't think it's possible to change existing ones without a packet listener. but whenever your console runs a command with that code in it. It will display the color
  3. Jason Paige

    Help with coordinates

    Ok. I am not here to write your code for you. but i will point you a little further in the correct direction. Let's break the problem down into smaller bits so we can take it on one at a time We need a command that allows players to do /calldoctor command calldoctor: description: calls a...
  4. Jason Paige

    Jump

    Mittens#2223
  5. Jason Paige

    Jump

    I am assuming you are using a plugin for some kind of minigame that works with sheers. typically sheers have no interaction with players so there is no way for us to stop it for you. in that case remove the cancel event and optimise the code so it drops the shears before the players use them to...
  6. Jason Paige

    Solved How bad would this hurt performance?

    Alright now that i understand you have a few good options for this. First and probably the best. Get happyhud. and skript-placeholder. Make a placeholder for your status effect that would output something like true or false then go in happyhud set up a listener for your placeholder. and you just...
  7. Jason Paige

    Solved How bad would this hurt performance?

    On a scale of 1 to 10? about 15. I logged my alt account via technic and logged my main account on my dev server and sat there with it on for about a 30 seconds. while it did not do much in 120 seconds and for two people. my spark profiler did this In order to test fairly i made another script...
  8. Jason Paige

    need help with a skript

    Hi 1) Yes it is. but my sources are listed and it's indented on that so i am sure it's not hard to figure out. 2) I had a feeling but at least maybe someone else can get some help from it 3) It's a very small snippet form a larger bit of code. Take a look at this and the performance...
  9. Jason Paige

    Jump

    Hi, Alright firstly there is a very simple way to do this This one can be a bit slow to respond so you can mess with it to make it run faster on jump: event-player does not have permission "jump" cancel event Secondly I am not sure exactly what you want here. the only part...
  10. Jason Paige

    Balance info

    Hey, I am rather new so i got no idea what that check is. is it Solved? Regardless i will reply anyway. This one took me a second to get :D on right click: if player is sneaking: send balance of target player to player If you need anything else from me send me a DM as i don't...
  11. Jason Paige

    need help with a skript

    alright you need to be much much more specific than that if you want help on here. but i will try my best and fill in the blanks myself with guesses. Pleases note tab complicators can not be defined before the command Firstly I personally use SkBee If you do as well your tab list code should...
  12. Jason Paige

    Help with coordinates

    I am not sure what arg-2 number is or if it has nothing to do with this. Ok a few things here need to be fixed to make this easy for you. First if you want arg-1 to always be set (Again i am not sure but it seems so in your code) you can remove the square brackets like this Secondly I...
  13. Jason Paige

    Is it possible to do this?

    Hi, Assuming i am understanding you correct you are tying to basically backup your skript files with multiple versions of them and only one set is active at a time? It's a hassle and easier to just auto backup with your host or on your pc, but if you want to do it. It can be done, firstly create...
  14. Jason Paige

    Storage Efficacy

    Hey, recently I wanted to make custom item bags that are based on player heads. these items can then be crafted into something else for sale and transport, as well as being placeable and only holds 8 items that are exchanged via crafting recipe. simple enough I thought. Wrong, but I digress. I...