1. 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!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

How to make a naruto dojutsu using Skript

Discussion in 'Requests' started by HollowVoidGojo, May 17, 2022.

  1. HollowVoidGojo

    Joined:
    Aug 14, 2021
    Messages:
    10
    Likes Received:
    0
    Hello!

    So I am making a naruto server and I want to make a skript where I have at least 1 of the 3 great dojutsu

    Byakugan gives speed 2 and strength 1 to user and glowing to everyone else

    Sharingan gives glowing to everyone else and speed 2, jump boost 2 and strength

    Rinnegan allows you to pull people towards you, push other people and teleport people to sky and freeze them there for a few seconds.

    You use the abilities by right clicking and to switch the ability for the rinnegan you left click
     
  2. BanditEagle

    BanditEagle Active Member

    Joined:
    May 3, 2021
    Messages:
    55
    Likes Received:
    0
    how would you gain the abilities? By walking on a certain block or getting a certain item or something?
     
  3. HollowVoidGojo

    Joined:
    Aug 14, 2021
    Messages:
    10
    Likes Received:
    0
    It would be achieved through tournaments and be only obtainable through a command, as for activating them, right clicking
     
  4. BanditEagle

    BanditEagle Active Member

    Joined:
    May 3, 2021
    Messages:
    55
    Likes Received:
    0
    Not tested but the skunity parser didn't return any errors.
    Code (Text):
    1. options:
    2.     byakuganTimer: 1 minute
    3.     sharinganTimer: 1 minute
    4.  
    5. on drop of blaze rods:
    6.     if name of event-item is "Byakugan" or "Sharingan":
    7.         cancel event
    8.  
    9. on rightclick with blaze rods:
    10.     if name of event-item is "Byakugan":
    11.         remove event-item from player's inventory
    12.         apply potion of swiftness of tier 2 to player for {@byakuganTimer}
    13.         apply potion of strength of tier 1 to player for {@byakuganTimer}
    14.         apply potion of glowing of tier 1 to player for {@byakuganTimer}
    15.     if name of event-item is "Sharingan":
    16.         remove event-item from player's inventory
    17.         loop all players:
    18.             if loop-player is not player:
    19.                 apply potion of swiftness of tier 2 to loop-player for {@sharinganTimer}
    20.                 apply potion of jump boost of tier 2 to loop-player for {@sharinganTimer}
    21.                 apply potion of strength of tier 1 to loop-player for {@sharinganTimer}
    22.                 apply potion of glowing of tier 1 to loop-player for {@sharinganTimer}
    23.  
    24. command /dojutsu <text> <player>:
    25.     permission: op
    26.     usage: "/dojutsu (byakugan/sharingan) (player)"
    27.     trigger:
    28.         if arg-1 is "byakugan":
    29.             give arg-2 blaze rod named "Byakugan"
    30.         else if arg-1 is "sharingan":
    31.             give arg-2 blaze rod named "Sharingan"
    32.         else:
    33.             send "Use the following format: /dojutsu (byakugan/sharingan) (player)"
    Hope you like it! And if you do please leave a reaction to show the appreciation!
     
  5. HollowVoidGojo

    Joined:
    Aug 14, 2021
    Messages:
    10
    Likes Received:
    0
    --- Double Post Merged, May 19, 2022, Original Post Date: May 19, 2022 ---

    Does it need any skript addons?
     
  6. BanditEagle

    BanditEagle Active Member

    Joined:
    May 3, 2021
    Messages:
    55
    Likes Received:
    0

Share This Page

Loading...