CTPerkPredicate
Link to ctperkpredicate
Импорт класса
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 mods.pmmo.CTPerkPredicate;
Методы
Link to методы
Name: test
PMMO checks certain default conditions such as level requirements, and chance. If you have other conditions by which this perk should activate, such as a specific dimension, this is where you perform that check. Returning true indicates the requirements were met.
Returns: if the perk is permitted to execute
Return Type: boolean
ZenScript CopyCTPerkPredicate.test(player as Player, nbt as MapData, level as int) as boolean
Параметр | Тип | Описание |
---|---|---|
Параметр player | Тип Player | Описание perk executor |
Параметр nbt | Тип MapData | Описание data provided by PMMO |
Параметр level | Тип int | Описание the current level of the player in the skill configured |