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

    make player's name invisible

    How can i make a players name invisible so that when he is not sneaking noone can see him
  2. Lukhausen

    Get Block Info

    How can I get detailed block info like with the //info tool of World edit? type of block and how do i find out of a chest is a double chest?
  3. Lukhausen

    Solved Check Doublechest 1.13.2

    How can i differenciate a double chest from two chest next to each other? http://prntscr.com/mcuy84 I want to write a chestlock but i dont know how to detect a double chest. loop the blocks around will not work because it could also be a single chest :emoji_astonished:
  4. Lukhausen

    GUI Inventory slot

    I wanted to know if there is an up-to-date method of opening an GUI inventory to the player because i stopped skripting for about 2 years and recently started it again. i used tuske for the guis and now tuske is totaly outdated and crashed the server... open virtual hopper inventory named...
  5. Lukhausen

    1.8 pvp on 1.12.X Server

    Is there any posibility to have 1.8 pvp only for specific clients?
  6. Lukhausen

    Not downloading on Linux

    no errors everything stays cool
  7. Lukhausen

    Not downloading on Linux

    I wrote a script to download a plugin from my website. as i tested it on my pc it worked but as i thew it on linux it stopped working. i think the problem could be that the linux server dows not allow to down from websites or smth like that :/ anyone a idea? delete file...
  8. Lukhausen

    Solved I don't know what the problem is

    just trick the system :P Command /command [<text>] [<integer>]: Permission: skript.command Permission message: &cYou do not have permission to use this command! Description: Test Usage: /command <text> [integer] Aliases: /cmd Trigger: if player is in world...
  9. Lukhausen

    Check if clicked player exists

    you can use a target entity :) on leftclick: if distance between target and player is smaller than 3.5: broadcast "%target entity%"
  10. Lukhausen

    Solved I don't know what the problem is

    I think the problem is that skript will interpret the 20.5 as a text. because an integer can only take full numbers. if you just replace the word integer with number skript will know what to do :)
  11. Lukhausen

    Solved Command cooldown

    you can check the time between some things :p command /cooldown: trigger: if difference between now and {time.%player%} is greater than 3 seconds: message "GOGOGOGO" set {time.%player%} to now stop else: message "&cYou have to...
  12. Lukhausen

    TuSKe Error

    # {property.owner.%{_p}%} if a player owns anything or not? returns true or nothing # {property.activebuy::%{_p}%} if a player is in the purchasig action right now or not returns true or nothing/false # {property.property::owner::ID} returns the owner of a property # {property.ownerid} the...
  13. Lukhausen

    TuSKe Error

    THis error of TuSKe is keeping popping up... and all the tuske effects are taking yearsd to load [21:21:17 INFO]: [TuSKe] [21:21:17 ERROR]: #!#! [21:21:17 ERROR]: #!#! [Skript] Severe Error: [21:21:17 ERROR]: #!#! TuSKe's class com.github.tukenuke.tuske.effects.EffMakeDrop generated an...
  14. Lukhausen

    How to replace the code?

    No Problem :) # {property.owner.%{_p}%} if a player owns anything or not? returns true or nothing # {property.activebuy::%{_p}%} if a player is in the purchasig action right now or not returns true or nothing/false # {property.property::owner::ID} returns the owner of a property #...
  15. Lukhausen

    How to replace the code?

    im am running it on a 3gb ram server on my pc and the reload is taking long not the execution :) and its only 1 skript
  16. Lukhausen

    How to replace the code?

    still laaaging as f***
  17. Lukhausen

    How to replace the code?

    Those two lines of code cause extreme lag... how can i fix it or replace them? show 10 "FLAME" particles at location of block over block at {property.activebuy::%loop-player%::pos1} for loop-player offset by 0, 2, 0 show a title from "&7{@price}{@money} pro m²" and subtitle "&7Wähle einen...
  18. Lukhausen

    encrypt a skript

    i have seen a possibility where you can put every row in a script in one line with some [[]] brackets or smthng like this... i think its calles something like bolevear I have no idea what it is but i want to know how to use it :D
  19. Lukhausen

    Number in between

    i basicly want to check if the player is standing in between that coordinates but this wont work: every second: loop all players: if x coordinate of loop-player is between {property.property::%player%::x1} and {property.property::%player%::x2}: message "LEVEEEEE...
  20. Lukhausen

    Solved turn a number positive

    Solved it dieferent :) thx if z coordinate of {property.activebuy::%{_p}%::pos1} is bigger than z coordinate of {property.activebuy::%{_p}%::pos2}: set {property.activebuy::%{_p}%::lenghtz} to z coordinate of {property.activebuy::%{_p}%::pos1} - z coordinate of...