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

    Help with Lobby-system with variables.

    ? Are you ok?
  2. couger44

    Solved Skript installation fail

    Use dev37c for 1.12.2 version.
  3. couger44

    Solved Enchanted Golden Recipe Not Working

    I recommend you use SkBee to do that.
  4. couger44

    Problem on skript

    From what I understood, do you want to make the event cancel when throwing, for example, a snowball? In these case, then dont use on right click event to cancel them. Just do this on shoot: projectile is an snowball or enderpearl shooter's gamemode isn't creative: cancel event
  5. couger44

    Solved How to make Weapons

    You're welcome.
  6. couger44

    Solved I need help on "if player has" line

    You're welcome.
  7. couger44

    Solved Apple Drop

    This was answered by ShaneBee to me a long time ago, so I will write you the same code(or similar) that he wrote me. In these cases, I recommend using this method. set {_random} to random integer between 0 and 1000 if {_random} is 1: drop 1 apple at event-block
  8. couger44

    Solved Apple Drop

    Just out of curiosity, have you tried putting the chance without the variable? Like chance of 0.1%: Instead of chance of {variable}: Nvm, I misread the code. In that case, you would have to make the variable as a number. And then do this: variable: {chance} = 0.1 on break of leaves...
  9. couger44

    Solved I need help on "if player has" line

    This should work: if amount of diamonds in player's inventory => {pay.player}: #do stuff Also, the variable {pay.player} is a general variable, not per player like this {pay.%player%} when the variable's value is per player.
  10. couger44

    Luckperms grant menu

    Good Luck with that.
  11. couger44

    Luckperms grant menu

    Well... if the host gives you limitations when it comes to customizing your server, I can hardly help you in that case. I don't know if you want to, but I recommend you look for another host that gives you comfort when modifying your server. (Obviously, if you want and if you can.) I don't...
  12. couger44

    Luckperms grant menu

    What do you mean? (And what is that servers host...) Do you have the ftp of that server? If you have it, move the SharpSk .jar to the plugins folder and it would be everything.
  13. couger44

    Luckperms grant menu

    With SharpSk you can do this to return all groups of luckperms. %lp groups% and Sk-Perms still supports your server version.
  14. couger44

    Luckperms grant menu

    You need to wait 24hrs to bump.
  15. couger44

    damage of fire

    Use {rank.%victim%} #or {rank.%attacker%} In on damage events. Check attacker and victim
  16. couger44

    Console message disable

    I don't understand why you would want to disable those messages. If I remember correctly, there was a way to do it, but it was in java.
  17. couger44

    Solved Make player look down

    What do you mean? Something like this? while blocks above player is air: teleport player to location(player's x-coords, player's y-coords - 1, player's z-coords, world) wait 5 ticks Edit: i made a mistake.
  18. couger44

    Solved Make player look down

    Well... this a simple method, but it does what you want it to do. set {_location} to player's location set {_pitch} to pitch of player + 180 set {_location}'s pitch to {_pitch} teleport player to {_location}
  19. couger44

    Help with Lobby-system with variables.

    This work to me too: set {_coords} to location(-681, 64, 966) if location of event-block is {_coords}: if player's world is "world": #do stuff
  20. couger44

    Help with Lobby-system with variables.

    Did you tried this? if event-block's location is location(-681, 64, 966, world "world")