Help to prevent give

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

ThePraZ

Member
Feb 20, 2017
37
1
8
I want to know if is possible to prevent /give items to a player because Im making a skript and I want if a player have a variable he can not receive items
 
Last edited:
Yeah, u listen to the event "on pickup" by Skript and cancel event if the player have this variable
code_language.skript:
on pickup:
    if {pickup.%player%} is false:
        cancel event
 
I mean prevent /give
You would either have to make a custom command for /give, and add something into the command to prevent this, or loop players inventories every so often and check if they have the item and remove it, I'd suggest remaking the /give command it would be fairly simple.
 
Status
Not open for further replies.