kubejs
This commit is contained in:
parent
dc089a3f45
commit
84f69e7eae
13 changed files with 82 additions and 2 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -1,4 +1,8 @@
|
||||||
logs/*
|
logs/*
|
||||||
|
saves/*
|
||||||
|
|
||||||
options.txt
|
options.txt
|
||||||
patchouli_data.json
|
patchouli_data.json
|
||||||
|
usernamecache.json
|
||||||
|
usercache.json
|
||||||
|
rhino.local.properties
|
||||||
1
config/voicechat/username-cache.json
Normal file
1
config/voicechat/username-cache.json
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{"9d9c39ad-4d3a-4e61-91c7-3d327f5dcf51":"SpeeeDCraft"}
|
||||||
15
kubejs/README.txt
Normal file
15
kubejs/README.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
Find out more info on the website: https://kubejs.com/
|
||||||
|
|
||||||
|
Directory information:
|
||||||
|
|
||||||
|
assets - Acts as a resource pack, you can put any client resources in here, like textures, models, etc. Example: assets/kubejs/textures/item/test_item.png
|
||||||
|
data - Acts as a datapack, you can put any server resources in here, like loot tables, functions, etc. Example: data/kubejs/loot_tables/blocks/test_block.json
|
||||||
|
|
||||||
|
startup_scripts - Scripts that get loaded once during game startup - Used for adding items and other things that can only happen while the game is loading (Can be reloaded with /kubejs reload_startup_scripts, but it may not work!)
|
||||||
|
server_scripts - Scripts that get loaded every time server resources reload - Used for modifying recipes, tags, loot tables, and handling server events (Can be reloaded with /reload)
|
||||||
|
client_scripts - Scripts that get loaded every time client resources reload - Used for JEI events, tooltips and other client side things (Can be reloaded with F3+T)
|
||||||
|
|
||||||
|
config - KubeJS config storage. This is also the only directory that scripts can access other than world directory
|
||||||
|
exported - Data dumps like texture atlases end up here
|
||||||
|
|
||||||
|
You can find type-specific logs in logs/kubejs/ directory
|
||||||
BIN
kubejs/assets/kubejs/textures/block/example_block.png
Normal file
BIN
kubejs/assets/kubejs/textures/block/example_block.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 247 B |
BIN
kubejs/assets/kubejs/textures/item/example_item.png
Normal file
BIN
kubejs/assets/kubejs/textures/item/example_item.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 372 B |
6
kubejs/client_scripts/example.js
Normal file
6
kubejs/client_scripts/example.js
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
// priority: 0
|
||||||
|
|
||||||
|
// Visit the wiki for more info - https://kubejs.com/
|
||||||
|
|
||||||
|
console.info('Hello, World! (Loaded client scripts)')
|
||||||
|
|
||||||
15
kubejs/config/client.properties
Normal file
15
kubejs/config/client.properties
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
#KubeJS Client Properties
|
||||||
|
#Fri Sep 15 19:52:14 NOVT 2023
|
||||||
|
backgroundColor=2E3440
|
||||||
|
barBorderColor=ECEFF4
|
||||||
|
exportAtlases=false
|
||||||
|
menuBackgroundBrightness=64
|
||||||
|
disableRecipeBook=false
|
||||||
|
title=
|
||||||
|
barColor=ECEFF4
|
||||||
|
overrideColors=false
|
||||||
|
fmlLogColor=ECEFF4
|
||||||
|
showTagNames=false
|
||||||
|
fmlMemoryColor=ECEFF4
|
||||||
|
menuBackgroundScale=32.0
|
||||||
|
menuInnerBackgroundBrightness=32
|
||||||
13
kubejs/config/common.properties
Normal file
13
kubejs/config/common.properties
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#KubeJS Common Properties
|
||||||
|
#Fri Sep 15 19:52:14 NOVT 2023
|
||||||
|
matchJsonRecipes=true
|
||||||
|
allowAsyncStreams=true
|
||||||
|
announceReload=true
|
||||||
|
startupErrorGUI=true
|
||||||
|
serverOnly=false
|
||||||
|
hideServerScriptErrors=false
|
||||||
|
saveDevPropertiesInConfig=false
|
||||||
|
packmode=default
|
||||||
|
ignoreCustomUniqueRecipeIds=false
|
||||||
|
creativeModeTabIcon=minecraft\:purple_dye
|
||||||
|
startupErrorReportUrl=
|
||||||
6
kubejs/server_scripts/example.js
Normal file
6
kubejs/server_scripts/example.js
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
// priority: 0
|
||||||
|
|
||||||
|
// Visit the wiki for more info - https://kubejs.com/
|
||||||
|
|
||||||
|
console.info('Hello, World! (Loaded server scripts)')
|
||||||
|
|
||||||
6
kubejs/startup_scripts/example.js
Normal file
6
kubejs/startup_scripts/example.js
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
// priority: 0
|
||||||
|
|
||||||
|
// Visit the wiki for more info - https://kubejs.com/
|
||||||
|
|
||||||
|
console.info('Hello, World! (Loaded startup scripts)')
|
||||||
|
|
||||||
14
local/kubejs/dev.properties
Normal file
14
local/kubejs/dev.properties
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
#KubeJS Dev Properties
|
||||||
|
#Fri Sep 15 19:52:14 NOVT 2023
|
||||||
|
logSkippedTags=false
|
||||||
|
logSkippedRecipes=false
|
||||||
|
logSkippedPlugins=true
|
||||||
|
debugInfo=false
|
||||||
|
strictTags=false
|
||||||
|
logAddedRecipes=false
|
||||||
|
logRemovedRecipes=false
|
||||||
|
logModifiedRecipes=false
|
||||||
|
logInvalidRecipeHandlers=true
|
||||||
|
dataPackOutput=false
|
||||||
|
logGeneratedData=false
|
||||||
|
logErroringRecipes=true
|
||||||
BIN
mods/rhino-forge-2001.2.2-build.6.jar
Normal file
BIN
mods/rhino-forge-2001.2.2-build.6.jar
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue