跳至主要內容

標頭

芒果凍布丁2025年3月29日小於 1 分鐘

在 1.19.2+ 版本中,您可以在腳本的頂部添加各種標頭來更改其加載條件。

標頭名稱類型說明
ignored布林值當為 true 時,腳本將被忽略
packmode字串當與 kubejs/config/common.properties 中的 packmode 設置相符時,腳本將被加載
priority數字腳本的加載優先級,數字越大,優先級越高
requires字串要求加載的模組 ID,可以堆疊使用
requiresclient要求腳本在僅客戶端加載

範例

例如:

//ignored: true
console.log("我永遠不會被打印")
//packmode: default
console.log('只有當 kubejs/config/common.properties 中的 packmode 設置為 default 時,我才會打印')

您也可以堆疊它們!

//requires: minecraft
//requires: create
console.log('只有當加載了 id 為 minecraft 和 create 的模組時,我才會打印')
//priority: 10
//packmode: hard
//requires: create
//requires: tconstruct
console.log('我很複雜!')
上次編輯於: 2025/3/29 上午5:04:42
貢獻者: Mango