CTPerkFunction
Link to ctperkfunction
Импорт класса
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.CTPerkFunction;
Методы
Link to методы
Name: apply
This function represents the logic being executed for a perk. All perks are provided the player this perk is contextually applicable to, a map of settings and the players current level in the skill associated in the users' config.
Returns: output data. not all events use output data, and your perk may not have anything to return. In this case an empty map is sufficient.
Return Type: MapData
ZenScript CopyCTPerkFunction.apply(player as Player, nbt as MapData, level as int) as MapData
Параметр | Тип | Описание |
---|---|---|
Параметр player | Тип Player | Описание perk executor |
Параметр nbt | Тип MapData | Описание data provided by PMMO |
Параметр level | Тип int | Описание the current level of the player in the skill configured |