Items Require Permissions to Work

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

JacoB_101

Member
Nov 30, 2021
2
0
1
23
Can i make it so an item requires a permission to be used in game?
For example, i have a sword called "Cool Sword" that does 8 Damage (Custom item).
Can i make it so unless i have the permission "Cool Sword" it does no damage (the amount of a fist (1) is fine as well if its not possible to make it do 0

Please help :emoji_grinning:
[doublepost=1638252211,1638251287][/doublepost]I was also wondering if this is possible to add with a command
For example i have a skript like this:


command /itemeditor <text> [<text>]:
permission: itemeditor.use
trigger:
If arg-1 is "name":
set name of player's held item to coloured arg-2

If arg-1 is "lore":
set lore of player's held item to coloured arg-2

If arg-1 is "clearenchants":
disenchant the player's tool

I was wondering if i could make an arg that "Sets permission" or smth
[doublepost=1638252350][/doublepost]And i was also wondering how i can make it so i can add a "new line" option for the lore
[doublepost=1638252407][/doublepost]AND
Sorry about all these post merges

How can i make it so i can "hide enchantments" and attributes with a command as well
 
Yes you can make items can be used only if you have permission.

on damage:
if player's tool is <THE ITEM NOT NAME>:
if player's tool is named "Cool Sword":
if player has permission "coolsword.use":
# dont write anything here
if player does not have permission "coolsword.use":
cancel event
 
Status
Not open for further replies.