Recent content by oHeckGage

  • 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. O

    Server cannot bind to proxy server address even though another paper server already did

    Your issue is that the proxy server and the paper 2 server are both bound to port 8000. Try and set maybe the proxy server to port 25565 so that you can join directly with localhost
  2. O

    Checking for number of Players

    # [the] [((real|default)|(fake|shown|displayed))] [online] player (count|amount|number) # [the] [((real|default)|(fake|shown|displayed))] (count|amount|number|size) of online players # vanilla skript command /onlineplayers: trigger: send "&aThere are &c%online player count%&a...
  3. O

    Iron Golems aggro

    I know about the AngryAt NBT tag, but how would I use Skript to summon an Iron Golem that instantly is hostile?
  4. O

    I need help on listing the possible arguments of a command

    SkBee has a tab complete feature if that's what you're asking about. on tab complete of "/breakfast": set tab completions for position 1 to "toast", "eggs" and "waffles" if tab arg-1 = "toast": set tab completions for position 2 to "butter", "peanut_butter" and "jam" else...
  5. O

    can't be set to because the latter is not an object

    Hello, I'm trying to revive an old server with a hologram leaderboard system using MorkazSK and skript-holo but whenever I try and reload the Skript file, it brings this error: {_slevels::*} can't be set to 'sorted {gold::*} from highest to lowest with format "@{index}"' because the latter is...
  6. O

    Allowed commands not working.

    It would be helpful to know the issue before hand lol. Can't do anything about it if we don't know your issue. Ex: is it just not working, or is there an error in your code, is there an error in console, etc. etc.
  7. O

    Solved <Command> JSON With %player%

    I need it to be with Skript, how would I use that command with a minecraft generator. That command wouldn't work since you need it to be personalized with %player%
  8. O

    Anti Naked Kill Skript

    you could just check their armor value and if it's none then theyre not wearing any armor on damage: if victim's armor value is 0: cancel event
  9. O

    Solved <Command> JSON With %player%

    When I try and use the <command:command> format in text with Skript, it only shows in chat and is not clickable like how I want it to be. In the file I linked, I showed how it doesnt seem to want to be in the normal format and shows the whole <command> statement thats supposed to be clickable...
  10. O

    Help with shulker boxes

    I was checking if there was a way to check the items inside a shulker box inside a player's inventory maybe using like NBT or something along those lines. If you don't know, then that's fine, thanks anyways.
  11. O

    Solved Custom variable prefix

    if you're asking what I think you're asking, you can make a custom chat format to include the level inside the chat message. Ex: on chat: set chat format to "&a[&7%{level::%player%}%&7] %player% &f%message%"
  12. O

    Formatting numbers

    No you can't cause if it was something like 101000, you'd be formatting it to 100k, not 101k, and I don't want to type out every thousand up to the trillions lmfao
  13. O

    I can't delete a skript-holo hologram!

    if you restart your server, it should automatically get rid of it
  14. O

    Formatting numbers

    I don't know how to do that, so no, sorry
  15. O

    There's no location in an on script load event

    on script load: create new holo with line "&7» &c&lGold Leaderboard &7«" and store in {gold_lbs::*} at location at 84, 80, 83 in world "NORMALWORLD" refreshGoldLB() create new holo with line "&7» &c&lGPC Leaderboard &7«" and store in {gpc_lbs::*} at location at 52, 80, 83 in world...