I Need someone's help :’

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

CinaB

Member
Aug 15, 2019
1
0
0
33
Code:
options:
    Head: &f[ &3&lSystem&f ]&e

command /StarterKit:
    trigger:
        if {newbie::%player%} is 1:
            send ""
            send "{@Head} Already Set"
            send ""
            exit
        if {newbie::%player%} is not set:
            set {newbie::%player%} to 1
            loop {set.defaultitem::*}:
                if loop-value is not air:
                    give loop-value to player
            send "{@Head} StarterKit received"

command /skset [<text>] [<text>]:
    permission: zistered.defaultset
    permission message: &fUnknown command. type "help" for help.
    trigger:
        if arg 1 is not set:
            send ""
            send "{@Head} /skset reset [username]"
            send "{@Head} /skset item"
            send ""
        if arg 1 is "reset":
            delete {newbie::%arg 2%}
            send ""
            send "{@Head} &6%arg 2%&e's StarterKit Setting is cleared"
            send ""
        if arg 1 is "item":
            open chest with 4 row named "StarterKit Setting" to player
            loop {set.defaultitem::*}:
                add 1 to {_player}
                set slot {_player}-1 of current inventory of player to loop-value

on inventory close:
    if inventory name of current inventory of player contains "StarterKit Setting":
        delete {set.defaultitem::*}
        loop 36 times:
            add slot (loop-number)-1 of current inventory of player to {set.defaultitem::*}
        send ""
        send "{@Head} StarterKit Set"
        send ""
        stop




Hello, Guys!

This is my StarterKit Skript but does not work, and This kind of message comes up..

Can't understand this condition/ effect: open chest with 4 row named "StarterKit Setting" to player (starterkit.sk. line 33:emoji_astonished:pen chest with 4 row named "StarterKit Setting" to player")


Maybe I think this part, [efffect: open chest with 4 row ] is a problem.

But I can't figure out another way to replace this

Please someone help me :’
 
Maybe the problem is "open chest with 4 row named "StarterKit Setting" to player". Try writing rows instead maybe that already fixes it!
 
Status
Not open for further replies.