🆕Add a new Crate

You can creat new crates in config.js

IMPORTANT

Each case must contain at least 2 items and one of them has at least 1000 of winrate

How to add new Crate ?

Check the "Customize your crate" section for exemple and full documentation.

Check the "winRate & Rarity" section for winRate

config.js
{
        Item : "(ITEM NAME)", 
        Label : "(LABEL OF CASE)",
        NameColor: "(CRATE NAME COLOR)",
        BgColor: "(BACKGROUND COLOR)",
        BgShadow : "(BACKGROUND SHADOW)",
        TxtShadow : "(TEXT SHADOW)",
        ImgShadow : "(CRATE SHADOW)",
        Lid : lid."(COLOR NAME)",
        Front : front."(COLOR NAME)",
        Inside : inside."(COLOR NAME)",
        
        // at least 2 items and one of them must have at least 1000 of winrate
        
        Items : [
            {
                ItemLabel : "(ITEM LABEL)",
                ItemName : "(ITEM NAME OR WEAPON NAME OR money_)", // for money (prefix = money_) : example (money_cash)
                winRate : "(WIN RATE)" // 1000 = Common / 750 = Rare /  500 = VeryRare / 250 = Epic / 50 = Legendary / 5 = Extra (best item)
                Count : "(AMOUNT WIN ITEM)" // if not Count -> default = 1
            },
        ]
    },

Last updated