Зацепка информации обо всех зарегистрированных модах. Можно получить доступ с помощью загруженных модов глобального ключевого слова

Импорт класса

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

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
Copy
myMods.modid as string
loadedMods."minecraft"

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
моды
Тип
stdlib.List<Mod>
Имеет Getter
true
Имеет Setter
false
Описание
Gets a list of all mods in the game
Название
size
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
Gets the amount of mods loaded