Compare commits

16 Commits

Author SHA1 Message Date
1bbd75414c to stop autopushing dotzip 2026-01-23 08:59:41 +00:00
4ced5f0bda Questbook Update 2026-01-20 03:00:45 -05:00
0d41c79859 Questbook Update 2026-01-19 03:00:45 -05:00
09b23ab8e2 Questbook Update 2026-01-18 03:00:46 -05:00
dea3943f80 Questbook Update 2026-01-17 03:00:46 -05:00
APEX FIGHT
a042fa92e5 found and made temp fix for bug/notbug of kubejs's callback stuffs, fixed by reversing priority order to be backwards basically 2026-01-16 16:59:11 -05:00
APEX FIGHT
9821e2226f it works! added priority and removed extra crap 2026-01-16 16:07:39 -05:00
APEX FIGHT
68b85fe4de fixed little goof i made 2026-01-16 16:03:18 -05:00
APEX FIGHT
e27aed77ef trying something else for recipe dump 2026-01-16 16:00:54 -05:00
APEX FIGHT
04e80f0ce4 ditto 2026-01-16 15:54:22 -05:00
APEX FIGHT
1d31acbe32 again 2026-01-16 15:51:07 -05:00
APEX FIGHT
6bbcd2994d changed thingidk 2026-01-16 10:37:39 -05:00
APEX FIGHT
9eceeccbe8 fixed error 2026-01-16 10:34:31 -05:00
APEX FIGHT
924a3acd1e recipedump 2026-01-16 10:32:51 -05:00
APEX FIGHT
5ab76a1ce1 further improved recipe dump 2026-01-16 10:28:04 -05:00
APEX FIGHT
f3b553c3fa altered recipedump to be more informative 2026-01-16 10:15:11 -05:00
6 changed files with 26 additions and 5 deletions

1
.gitignore vendored
View File

@@ -11,6 +11,7 @@ lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
*.jar
*.zip
*.png
# Runtime data
pids

View File

@@ -6,6 +6,16 @@
id: "5A2A67F508C4304B"
order_index: 4
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"
}

View File

@@ -1,8 +1,18 @@
// priority: 0
const toggle = true;
ServerEvents.recipes(e => {
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.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);
}
});

View File

@@ -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
//autogenerated shapeless is separated by some whitespace cuz im lazyyy

View File

@@ -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/