События
PlayerViolationEvent
Вызывается, когда игрок помечается античитом
Методы
java
package me.rerere.matrix.api.events;
public class PlayerViolationEvent extends Event implements Cancellable {
public Player getPlayer()
public HackType getHackType()
public String getMessage()
public int getViolations()
public String getComponent()
public boolean isCancelled()
public void setCancelled(boolean b)
}
PlayerViolationCommandEvent
Вызывается, когда уровень нарушений игрока достигает порога, установленного в конфигурационном файле, и начинает выполняться команда.
Методы
java
package me.rerere.matrix.api.events;
public class PlayerViolationCommandEvent extends Event implements Cancellable {
public Player getPlayer()
public HackType getHackType()
public String getCommand()
@Override
public boolean isCancelled()
@Override
public void setCancelled(boolean b)
}