Player Ignore Module
How to use the Mineplex Studio Player Ignore Module.
This is an archived Mineplex-era document, kept for reference during the transition. It may contain outdated branding and is not part of the core SixTwenty documentation.
View the Java SDK reference
The Player Ignore Module is one of the built-in Studio Modules that allows you to check which players are ignoring each other. This can be useful for creating custom chat filters, or for creating custom moderation tools.
Module Retrieval
You can retrieve the module by using the MineplexModuleManager via
import com.mineplex.studio.sdk.modules.MineplexModuleManager;
PlayerIgnoreModule ignoreModule = MineplexModuleManager.getRegisteredModule(PlayerIgnoreModule.class);
Checking if a Player is Ignoring Another
You can check if a player is ignoring another player by using the isIgnoring(OfflinePlayer, OfflinePlayer) or isIgnoring(UUID, UUID) method.
In this example we are checking if player is ignoring toCheck. This will also return true if the data for player is not loaded.
You can use isLoaded(OfflinePlayer) and isLoaded(UUUID) to check if the data is loaded.
public boolean isIgnoring(Player player, Player toCheck) {
return ignoreModule.isIgnoring(player, target);
}