当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.js 2.13 KB
一键复制 编辑 原始数据 按行查看 历史
const conf=new JsonConfigFile("plugins\\sidebarDesigner\\config.json");
conf.init("fps",5);
conf.init("default",[
{
title:"欢迎语",
type:"text",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:1,
contents:"输入/sidebar自定义此侧边栏",
color:"g"
},
{
time:4,
contents:"输入/sidebar自定义此侧边栏",
color:"f"
}
]
}
}
]);
conf.init("title",{
type:"text",
animation:{
type:"roll",
contents:[
{
time:2,
contents:"§f欢迎您的加入",
color:"f",
length:3,
shake:true,
pause:3
}
]
}
})
conf.init("templates",[
{
type:"text",
title:"欢迎语",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"输入/sidebar自定义此侧边栏",
color:"f"
}
]
}
},
{
type:"text",
title:"tps",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"tps:$currenttps",
color:"f"
}
]
}
},
{
type:"text",
title:"世界时间",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"世界时间:$gametime",
color:"f"
}
]
}
},
{
type:"text",
title:"时间",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"时间:$time",
color:"f"
}
]
}
},
{
type:"text",
title:"天气",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"天气$weather",
color:"f"
}
]
}
},
{
type:"text",
title:"朝向",
display:true,
warp:true,
animation:{
type:"alt",
contents:[
{
time:2,
contents:"朝向:$facing",
color:"f"
}
]
}
}
])
conf.init("economy_type","llmoney")
conf.init("custom_placeholders",[]);
conf.init("force_title_display",false);
function getIFromTemp(title){
let temparr = conf.get("templates");
let i=0;
for(i=0;i<temparr.length;i++){
if(temparr[i].title==title){
return i;
}
}
return null;
}
module.exports={
conf,
getIFromTemp
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化