Mods
Link to mods
Contiene informazioni su tutte le mod registrate. È possibile accedere usando la parola chiave globale caricata.Mods
Importare la Classe
Link to importare-la-classe
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.mods.Mods;
Metodi
Link to metodi
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");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro modid | Tipo string | Descrizione 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");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro modid | Tipo string | Descrizione modid per controllare |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome mod | Tipo stdlib.List<ModInfo> | Ha Getter sì | Ha Setter no | Descrizione Gets a list of all mods in the game |
Nome size | Tipo int | Ha Getter sì | Ha Setter no | Descrizione Gets the amount of mods loaded |