Mods
Link to mods
保存所有注册模组的信息。 可以使用 加载模组
全局关键字 访问
导入类
Link to 导入类
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.mod.Mods;
使用方式
Link to 使用方式
Name: getMod
Gets a specific mod
Returns: a specific Mod
Return Type: Mod?
ZenScript Copy// Mods.getMod(modid as string) as Mod?
loadedMods.getMod("minecraft");
参数 | 类型 |
---|---|
参数 modid | 类型 string |
Name: getMods
Gets a list of all mods in the game
Returns: list of Mod
Return Type: stdlib.List<Mod>
ZenScript Copy// Mods.getMods() as stdlib.List<Mod>
loadedMods.getMods();
Name: getSize
Gets the amount of mods loaded
Returns: The amount of mods that are loaded
Return Type: int
ZenScript Copy// Mods.getSize() as int
loadedMods.getSize();
Name: isModLoaded
Checks if a mod is laoded
Returns: true if the mod is loaded
Return Type: boolean
ZenScript Copy// Mods.isModLoaded(modid as string) as boolean
loadedMods.isModLoaded("minecraft");
参数 | 类型 | 描述 |
---|---|---|
参数 modid | 类型 string | 描述 摩托车检查 |
运算符
Link to 运算符
Name: INDEXGET
ZenScript Copy[myMods]
Name: MEMBERGETTER
Gets a specific mod
ZenScript CopymyMods.modid as string
loadedMods."minecraft"
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 模组 | 类型 stdlib.List<Mod> | 可获得 true | 可设置 false | 描述 Gets a list of all mods in the game |
名称 size #大小 | 类型 int | 可获得 true | 可设置 false | 描述 Gets the amount of mods loaded |