Recent content by AHappyLittleSloth

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

    Homing Arrows

    make %entity% home towards %location% make %entities% home towards %location% normally Cause an entity to home towards a locations. Specifying 'normally' reduces bugs caused by varying distances, but makes it less accurate.
  2. A

    Solved Removing NBTs from Items

    set player's tool to player's tool with no nbt
  3. A

    Solved Check if a player has a named item

    I tested this on my server and it works just fine. Make sure the name matches perfectly. Also what version of script are you using? This works for me with no addons: Skript version 2.6-beta2 command /check <player>: trigger: set arg-1's tool to 1 stick named "&6Fishing Rod Handle"...
  4. A

    Solved My quest skript doesn't give a quest sometimes and it also sometimes gives more than 1 quest

    There also MAY be a syntax for "chance of" that allows for multiple to chain together to make up 100% (AKA what you were trying to code originally). I've been away from skript for a while and I tried doing some research to find it, but couldn't. EDIT: NVM there is NO SYNTAX for this. "if you...
  5. A

    Solved Giving an item with special things to players

    No worries, on my previous post with the solution, just click on "Best Answer" in the bottom right hand corner
  6. A

    Im wondering how to create a a power lifting simulator in minecraft

    Minecoll is 100% right and you just proved it. The description is poorly written to the point I think a monkey wrote this. If you're not gonna take the time to write a proper post, why is anyone gonna bother skripting this? Also I just realized you thought patience meant competence. Well lucky...
  7. A

    Solved My quest skript doesn't give a quest sometimes and it also sometimes gives more than 1 quest

    The problem lies with the "chance of" event "chance of" is unreliable, because each individual "chance of 5%" is calculated on it's own, not as a part of a whole 100%. So they all have a 5% chance which is why sometimes you get 0 and other times 2. I recommend random integer set {_random} to a...
  8. A

    Solved Giving an item with special things to players

    Skript works differently than Minecraft commands and there is almost no relation between them. I would recommend watching some minehut tutorials on youtube to get started. Also post your code in code blocks like so: Anyways here you go: command /hook: description: Gives the user a key...
  9. A

    Solved trouble with gui commands

    First off, please post your code in a code block like so: Also are you trying to create a vanilla gui or are you using addons like tuske? command /warps: trigger: open chest with 3 rows named "&b&lWarps" to player if player has dirt: format slot 2 of player with dirt to close...
  10. A

    Solved Check if a player has a named item

    command /check <player>: trigger: if player has stick named "&6Fishing Rod Handle": broadcast "yes"
  11. A

    Solved Count blocks broken in lore

    I'll come back and explain later since I'm at work but here is the skript: command /pick: description: Gives the user a diamond pick that counts blocks mined trigger: give player 1 diamond pickaxe with no nbt named "&bDiamond Pickaxe" with lore " ", "&7Blocks Mined: &e0", and "&7Ores...
  12. A

    Skript value going into minus

    Please post your code in a code block
  13. A

    Index in list

    I have needed to do this before when I was still pretty new to skript. I've been away from minecraft for a while but I remember my work around was to create variables such as {exampleList::1} and next would be {exampleList::2} and you would set each of those to whatever you want. set...
  14. A

    TuSke Not Working on 1.16.5

    I recommend this fork of tuske: https://github.com/APickledWalrus/skript-gui It's last update was a couple months back and has almost all the same syntax as tuske. If not just use vanilla guis
  15. A

    I need help with a variable

    I'm pretty sure the issue lies with the variables not being stored correctly.