How to make Custom Craft with perms

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

Tadass

New Member
Jul 17, 2018
7
1
0
27
Hi guys please help me :/
What i want is:

how to make custom crafting with perms?

I have:
on load:
register new shapeless recipe for diamond sword named "&b&lFun &c&lDip" using diamond, air, air, air, air, air, air, air, air
and if u don't have perms u can't craft it
how to do this?

sry bad at english lel.
 
Hi guys please help me :/
What i want is:

how to make custom crafting with perms?

I have:
on load:
register new shapeless recipe for diamond sword named "&b&lFun &c&lDip" using diamond, air, air, air, air, air, air, air, air
and if u don't have perms u can't craft it
how to do this?

sry bad at english lel.
Hey
First of all, make sure to use the HELP section when you are requesting help with a skript.
The request section is meant for requesting someone to make a skript for you.

Next you simply just do a craft event
code_language.skript:
on craft:
    if event-item is diamond sword:
        if name of event-item is "&b&lFun &c&lDip":
            if player does not have permission "craft.fundip":
                cancel event
                close inventory of player
                send "&cYou do not have permission to craft &b&lFun &c&lDip"