remove named item

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

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

loadka95

Active Member
Feb 24, 2017
78
6
8
Im not sure im doing it wrong or its just not working. It doesn't remove the book from my inventory, and i have no idea why

code_language.skript:
command /testp:
    trigger:
        add 1 written book named "asd" to player's inventory
        wait 1 second
        remove all written book named "asd" from player's inventory
 
Im not sure im doing it wrong or its just not working. It doesn't remove the book from my inventory, and i have no idea why

code_language.skript:
command /testp:
    trigger:
        add 1 written book named "asd" to player's inventory
        wait 1 second
        remove all written book named "asd" from player's inventory

I think something like this should work :emoji_wink:

code_language.skript:
Loop player's inventory:
    If name of loop-item is "asd":
        Remove loop-item from player's inventory
        Stop
 
Status
Not open for further replies.