登録されているすべてのModの情報を保持します。 loadedMods global keyword を使ってアクセスできます

Importing the class

Link to importing-the-class

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
Copy
import crafttweaker.api.mods.Mods;

Name: getMod

Gets a specific mod

Returns: a specific MCModInfo
Return Type: ModInfo

ZenScript
Copy
// Mods.getMod(modid as string) as ModInfo

loadedMods.getMod("minecraft");
ParameterTypeDescription
Parameter
modid
Type
string
Description
No Description Provided

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");
ParameterTypeDescription
Parameter
modid
Type
string
Description
確認しなければならない
名称TypeHas GetterHas SetterDescription
名称
Mod
Type
stdlib.List<ModInfo>
Has Getter
true
Has Setter
false
Description
Gets a list of all mods in the game
名称
size
Type
int
Has Getter
true
Has Setter
false
Description
Gets the amount of mods loaded