Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Creators
Details
The project offers a highly customizable initial class selection, allowing modpacks to easily provide players with different builds and starting items from the start. The GUI panel's background image and size are customizable, but it requires another mod. Once in the world, without selecting a class, players will receive private messages every few minutes, as shown in the image.
项目提供了一个高度可自定义的初始职业选择,可以方便整合包在开局就让玩家可以选择不同流派的初始属性加成和初始物品,gui面板的背景图片和面板的大小都可自定义,但是要依赖另一个mod,进入世界后,不选择职业每隔分钟就会收到私聊,如图
After clicking on the career selection:
点击职业选择后:
After selecting a profession, the panel is locked, and you cannot switch professions or open the panel (default configuration).
选择职业后面板锁定,职业不能在切换也无法打开面板(配置项默认)
config\initialattributesitems\careers.json:
{
"id": "warrior",
"name": "战士",//标题|title
"description": "重甲近战,靠近敌人并承伤。",//文字介绍|Text introduction
"icon": "minecraft:iron_sword",
"attributes": [
{
"id": "minecraft:generic.armor",//要给予的属性|attributes to be given
"value": 1.0
},
{
"id": "minecraft:generic.attack_damage",
"value": 1.0
}
],
"items": [
{
"id": "minecraft:iron_sword",//要给予的物品|items to give
"count": 1
},
{
"id": "minecraft:bread",
"count": 8
}
]
},
config\initialattributesitems\client_gui.json:
{
"backgroundPath": "",//背景图片的绝对路径|absolute path of the background image
"panelWidth": 260,
"panelHeight": 200
}~~~~



