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

    Chest GUI??

    What is the version of your skript?
  2. Andalmere

    Chest GUI??

    I think it's okay to reload all of it at once since he has only 9 skript files. I think the OP was only concerned about the 20 seconds delay and he felt that there's a problem so he rushed here to ask on how to fix such issue. And also @Choong Yun Chean, consider downloading the Tuske fork of...
  3. Andalmere

    Chest GUI??

    Tuske is inactive since 2017, so we can't expect support from TukeNuke right now. Update your skript.
  4. Andalmere

    Solved Force player to look in direction of entity

    Try this one, I added location since we can't modify an entity's yaw and pitch. on damage: set {_yaw} to yaw of attacker set {_pitch} to pitch of attacker set {_location} to location of victim set {_yaw} to {_yaw} * -1 set {_pitch} to {_pitch} * -1 if "%{_yaw}%" contains...
  5. Andalmere

    Player's Balance Error HELP!

    Update your skript
  6. Andalmere

    Locations and coordinates/teleport

    Lmao silly me sorry. I think this will now work. on right click holding a string: if {pot.tempvar} is not set: set {pot.tempvar} to 1 loop {pot.middle::*}: if loop-value is set: delete {pot.middle::%loop-index%} send "&cSuccessfully removed the...
  7. Andalmere

    Solved Force player to look in direction of entity

    Try to change this: with this:
  8. Andalmere

    Player's Balance Error HELP!

    Try to have this: Instead of this:
  9. Andalmere

    Give random permissions

    I think the OP wants to make an enchantment that prevents a player from being damaged because of hunger and can still sprint even the hunger bar is empty. And I still have no clue about this part:
  10. Andalmere

    Solved Force player to look in direction of entity

    Try this one: on damage: set {_yaw} to attacker's yaw set {_pitch} to attacker's pitch set {_yaw} to {_yaw} * -1 set {_pitch} to {_pitch} * -1 set {_yaw} to "%{_yaw}%.001" parsed as number set {_pitch} to "%{_pitch}%.001" parsed as number set victim's yaw to {_yaw}...
  11. Andalmere

    Locations and coordinates/teleport

    I fixed that error from your screenshot and I added "stop" at line 8. Make sure to use "/event reset" without the quotes before trying this code again. on right click holding a string: if {pot.tempvar} is not set: set {pot.tempvar} to 1 loop {pot.middle::*}: if...
  12. Andalmere

    Solved Force player to look in direction of entity

    Can you show me the value of {_direction} when the attacker hits the victim?
  13. Andalmere

    Give random permissions

    We don't know what you are talking about fully but since you are asking that is it possible to give a permission, yes you can give permission from a condition/situation.
  14. Andalmere

    Solved Force player to look in direction of entity

    Try this: set {_direction} to direction from player to {_entity}
  15. Andalmere

    Chest GUI??

    What is your server version? skript version? tuske version?
  16. Andalmere

    Solved Force player to look in direction of entity

    Get the yaw and pitch of the player from the player's direction towards the entity and store it on a variable. Then modify the player's yaw and pitch using that variable.
  17. Andalmere

    Locations and coordinates/teleport

    You can right click as many blocks as you can with my code. Anyways I changed the code according to your likings and this is what it looks like right now. on right click holding a string: if {pot.tempvar} is not set: set {pot.tempvar} to 1 loop {pot.middle::*}: if...
  18. Andalmere

    Locations and coordinates/teleport

    I am unsure that I understand you fully but I am posting this to help you. on right click holding a string: if {pot.tempvar} is not set: set {pot.tempvar} to 1 loop {pot.middle::*}: if loop-value is set: stop if {pot.middle::%{pot.tempvar}%} is not set...
  19. Andalmere

    Skript Things you probably didn't know were available in vanilla Skript

    I think this was from skellett. I'm glad that this was already added in skript. Thank you for creating this guide. Well done :emoji_clap::emoji_clap:
  20. Andalmere

    How to get name of item?

    Hey guys, i am here again asking a dumb question. How do i get the specific name of an item? When i do %minecraft name of player's tool%, it doesn't gave me the specific but rather the general one. For example, I am holding Granite and when i try to get the name of it, it will gave me Stone. I...