Customization

Customization of the script

Remember that this resource has verified DMCA protection, and its illegal use or distribution could imply a claim for protection of Title 17 of Chapter 512 (c) (3) of the Digital Millennium Copyright Act

If you want you can change the design of the script to the colors that best suit your server.

Step 1 : Find config

Find the config.json file, it's inside the web/assets/config

Path of NUI config

Step 2 : Basic explanation

Open the config.json file.

"main-color-inside": "black",
"main-card-color" : "url(https://www.calyx.ai/wp-content/uploads/2022/09/14SEP2022-Casestudy-ReducingOveragewithIRT-header2000x1000_v1-600x300.jpg)",
"main-card-color-border": "#7300ff",

"weapon-card-color-bg" : "url(https://i.pinimg.com/736x/6e/0f/d6/6e0fd69a36ee8bbf9504f3132c79faff.jpg)",
"weapon-card-color-border":"#381f57",
"weapon-card-color-header":"url(https://media.istockphoto.com/id/181481366/vector/purple-background.jpg?s=612x612&w=0&k=20&c=Z9k63QLh8zw7MB5g2yHnHY63aDm9oWWHIGqTQ1WaQXw=)",
"weapon-card-color-text-color":"white",

"category-card-background" : "url(https://i.pinimg.com/736x/6e/0f/d6/6e0fd69a36ee8bbf9504f3132c79faff.jpg)",
"category-header-background": "black",
"category-header-bordercolor":"#7300ff",
"category-header-textcolor":"white",

"item-card-color-bg": "url(https://i.pinimg.com/originals/de/0b/c2/de0bc27d31d9f8614baa518b2524945b.png)",
"item-card-color-headerTextname":"Name",
"item-card-color-headerPricename":"Price",
"item-card-color-headertext": "white",

"item-card-item-bgcolor" : "black",
"item-card-item-hover": "#7300ff",
"item-card-item-textcolor" : "white",

"empty-basket-header":"Alerts",
"empty-basket-text":"Empy basket",

"buy-header":"?Confirm buy",
"buy-text":"You pay ",
"buy-text-yes":"Yes",
"buy-text-no":"No",

"footer-bg":"black",
"footer-border":"#7300ff",
"footer-text":"HotLife Rp",
"footer-textcolor":"white",

"message-buy-successful":"Purchase done correctly",
"message-buy-unsuccessful":"You dont have money"

Destructuring (Meaning of each block)

Main Block

"main-color-inside": "black",
"main-card-color" : "url(https://www.calyx.ai/wp-content/uploads/2022/09/14SEP2022-Casestudy-ReducingOveragewithIRT-header2000x1000_v1-600x300.jpg)",
"main-card-color-border": "#7300ff",
1st block explanation

Possible values

main-color-inside: url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

main-card-color: url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

main-card-color-border: #F21341 (only colors/hexadecimal colors)

WeaponCard Block

"weapon-card-color-bg" : "url(https://i.pinimg.com/736x/6e/0f/d6/6e0fd69a36ee8bbf9504f3132c79faff.jpg)",
"weapon-card-color-border":"#381f57",
"weapon-card-color-header":"url(https://media.istockphoto.com/id/181481366/vector/purple-background.jpg?s=612x612&w=0&k=20&c=Z9k63QLh8zw7MB5g2yHnHY63aDm9oWWHIGqTQ1WaQXw=)",
"weapon-card-color-text-color":"white",
2st block explanation

Possible values

weapon-card-color-bg: url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

weapon-card-color-border: #F21341 (only colors/hexadecimal colors)

weapon-card-color-header: url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

weapon-card-color-text-color: #F21341 (only colors/hexadecimal colors)

CategoryCard Block

"category-card-background" : "url(https://i.pinimg.com/736x/6e/0f/d6/6e0fd69a36ee8bbf9504f3132c79faff.jpg)",
"category-header-background": "black",
"category-header-bordercolor":"#7300ff",
"category-header-textcolor":"white",
3st block explanation

Possible values

category-card-background : url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

category-header-background: url(someurl.png) / #F21341 / white / radial-gradient("some gradient");

category-header-bordercolor: #F21341 (only colors/hexadecimal colors)

category-header-textcolor: #F21341 (only colors/hexadecimal colors)

ItemCard Block

"item-card-color-bg": "url(https://i.pinimg.com/originals/de/0b/c2/de0bc27d31d9f8614baa518b2524945b.png)",
"item-card-color-headerTextname": "Name",
"item-card-color-headerPricename": "Price",
"item-card-color-headertext": "white",
4st block explanation

Possible values

"item-card-color-bg": url(someurl.png) / #F21341 / white / radial-gradient("some gradient")

"item-card-color-headerTextname": "Only Text"

"item-card-color-headerPricename": "Only Text"

"item-card-color-headertext": #F21341 (only colors/hexadecimal colors)

ItemCardItem Block

"item-card-item-bgcolor" : "black",
"item-card-item-hover": "#7300ff",
"item-card-item-textcolor" : "white",

Possible values

"item-card-item-bgcolor" : url(someurl.png) / #F21341 / white / radial-gradient("some gradient")

"item-card-item-hover": #F21341 (only colors/hexadecimal colors)

"item-card-item-textcolor" : #F21341 (only colors/hexadecimal colors)

Messages Block

 "empty-basket-header":"Alerts",
 "empty-basket-text":"Empy basket",
 "buy-header":"?Confirm buy",
 "buy-text":"You pay ",
 "buy-text-yes":"Yes",
 "buy-text-no":"No",
 "message-buy-successful":"Purchase done correctly",
 "message-buy-unsuccessful":"You dont have money",
 "message-vip":"You are not VIP",

5st block explanation
5st block explanation

Possible values

"empty-basket-header": "Only Text"

"empty-basket-text": "Only Text"

"buy-header": "Only Text"

"buy-text": "Only Text"

"buy-text-yes": "Only Text"

"buy-text-no": "Only Text"

"message-buy-successful": "Only Text"

"message-buy-unsuccessful": "Only Text"

"message-vip": "Only Text"

"footer-bg":"black",
"footer-border":"#7300ff",
"footer-text":"LeoShop",
"footer-textcolor":"white"
6st Block explanation

Last updated