Mods
Link to mods
Contiene información sobre todos los mods que están registrados. Se puede acceder usando la palabra clave global cargada
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 Copyimport crafttweaker.api.mod.Mods;
Methods
Link to methods
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");
Parameter | Type | Description |
---|---|---|
Parameter modid - mod que lo añade | Type string | Description No Description Provided |
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");
Parameter | Type | Description |
---|---|---|
Parameter modid - mod que lo añade | Type string | Description modificar para comprobar |
Operadores
Link to operadores
Name: MEMBERGETTER
Gets a specific mod
ZenScript CopymyMods.modid as string
loadedMods."minecraft"
Properties
Link to properties
Nombre | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Nombre mods | Type stdlib.List<Mod> | Has Getter true | Has Setter false | Description Gets a list of all mods in the game |
Nombre size | Type int | Has Getter true | Has Setter false | Description Gets the amount of mods loaded |