Customcraft item

Is there any way to limit the crafting recipe for a custom item in minecraft server using plugins like customcrafting, skript, denizen,...
No description
6 Replies
Admincraft Meta
Thanks for asking your question!
Make sure to provide as much helpful information as possible such as logs/what you tried and what your exact issue is
Make sure to mark solved when issue is solved!!!
/close !close !solved !answered
Requested by aiufuon123#0
Lunaiskey
Lunaiskey2w ago
limit how?
Aretzera
Aretzera2w ago
that's the point, he asked how to limit the number of an item being crafted
undefined
undefined2w ago
As this person is Vietnamese, I will reply with my own language. :D
Bạn có thể truất quyền recipe của bạn trực tiếp bằng CustomCrafting 1. Thêm yêu cầu quyền vào (ví dụ: test.test), làm theo hướng dẫn này 2. Trong file recipe của bạn (trong thư mục plugin), thêm dòng này vào (bổ sung extensions vào result có sẵn):
result {
//...
extensions : [
{
"key" : "customcrafting:command",
"outer_radius" : [ 0.0, 0.0, 0.0 ],
"inner_radius" : [ 0.0, 0.0, 0.0 ],
"consoleCommands" : [ "lp user %player% permission set test.test false" ], // Nhớ thay permission
"playerCommands" : [ ],
"nearPlayer" : true,
"nearWorkstation" : true
},
],
//...
}
result {
//...
extensions : [
{
"key" : "customcrafting:command",
"outer_radius" : [ 0.0, 0.0, 0.0 ],
"inner_radius" : [ 0.0, 0.0, 0.0 ],
"consoleCommands" : [ "lp user %player% permission set test.test false" ], // Nhớ thay permission
"playerCommands" : [ ],
"nearPlayer" : true,
"nearWorkstation" : true
},
],
//...
}
Lunaiskey
Lunaiskey2w ago
they didnt specify what limit they wanted to put on the item, the amount crafted by 1 person, the amount crafted by every person, if they wanted it to be limited to a specific group, etc
Aretzera
Aretzera2w ago
Oh yeah sorry for not clarifying that But yeah I'm pretty sure the above answer is the solution

Did you find this page helpful?