Compare commits
16 Commits
a9af509eef
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bbd75414c | |||
| 4ced5f0bda | |||
| 0d41c79859 | |||
| 09b23ab8e2 | |||
| dea3943f80 | |||
|
|
a042fa92e5 | ||
|
|
9821e2226f | ||
|
|
68b85fe4de | ||
|
|
e27aed77ef | ||
|
|
04e80f0ce4 | ||
|
|
1d31acbe32 | ||
|
|
6bbcd2994d | ||
|
|
9eceeccbe8 | ||
|
|
924a3acd1e | ||
|
|
5ab76a1ce1 | ||
|
|
f3b553c3fa |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,6 +11,7 @@ lerna-debug.log*
|
|||||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||||
*.jar
|
*.jar
|
||||||
|
*.zip
|
||||||
*.png
|
*.png
|
||||||
# Runtime data
|
# Runtime data
|
||||||
pids
|
pids
|
||||||
|
|||||||
Binary file not shown.
@@ -6,6 +6,16 @@
|
|||||||
id: "5A2A67F508C4304B"
|
id: "5A2A67F508C4304B"
|
||||||
order_index: 4
|
order_index: 4
|
||||||
quest_links: [ ]
|
quest_links: [ ]
|
||||||
quests: [ ]
|
quests: [{
|
||||||
|
description: ["CC is a powerful mod with which you can manage and interact through the world with computing, this page will show tips, tricks, and practical uses of the mod. CC is highly encouraged in this pack, as there arent many advanced logistics systems such as AE2"]
|
||||||
|
id: "0B94C9263FCDA26C"
|
||||||
|
tasks: [{
|
||||||
|
id: "109AC867B04CB651"
|
||||||
|
title: "beginning"
|
||||||
|
type: "checkmark"
|
||||||
|
}]
|
||||||
|
x: 0.0d
|
||||||
|
y: 0.5d
|
||||||
|
}]
|
||||||
title: "Computer Craft"
|
title: "Computer Craft"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,18 @@
|
|||||||
|
// priority: 0
|
||||||
|
|
||||||
const toggle = true;
|
const toggle = true;
|
||||||
|
|
||||||
ServerEvents.recipes(e => {
|
ServerEvents.recipes(e => {
|
||||||
|
|
||||||
if (toggle) {
|
if (toggle) {
|
||||||
console.warn("RECIPE DUMPING IS TURNED ON, THIS WILL DUMP JSON DATA OF ALL OF THE RECIPES IN THE GAME, WILL LAG");
|
console.warn("RECIPE DUMPING IS TURNED ON, THIS WILL DUMP JSON DATA OF ALL OF THE RECIPES IN THE GAME, WILL LAG");
|
||||||
console.log(JSON.stringify(e.getRecipes()));
|
let recipes=[];
|
||||||
|
e.forEachRecipe({},r=>{
|
||||||
|
// console.log("recipe",r.json.toString())
|
||||||
|
recipes.push(JSON.parse(r.json.toString()));
|
||||||
|
});
|
||||||
|
let recipe=JSON.stringify(recipes);
|
||||||
|
console.log(recipe);
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
|
// priority: 1
|
||||||
//kubejs totally freaked out when i had shapeless recipes being called from multiple locations, so all shapeless is here
|
//kubejs totally freaked out when i had shapeless recipes being called from multiple locations, so all shapeless is here
|
||||||
//autogenerated shapeless is separated by some whitespace cuz im lazyyy
|
//autogenerated shapeless is separated by some whitespace cuz im lazyyy
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// priority: 0
|
// priority: 12
|
||||||
|
//fun fact! serverevents.recipes is called in reverse order to the priority, this is because lat overlooked this possibility
|
||||||
// Visit the wiki for more info - https://kubejs.com/
|
// Visit the wiki for more info - https://kubejs.com/
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user