mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-14 21:22:09 +00:00
![snowleo](/assets/img/avatar_default.png)
/spawn and /home now call the PlayerRespawnEvent to make it more compatible with other plugins.
63 lines
1.5 KiB
Java
63 lines
1.5 KiB
Java
package com.earth2me.essentials;
|
|
|
|
import com.earth2me.essentials.perm.PermissionsHandler;
|
|
import com.earth2me.essentials.register.payment.Methods;
|
|
import org.bukkit.World;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.plugin.Plugin;
|
|
import org.bukkit.scheduler.BukkitScheduler;
|
|
|
|
|
|
public interface IEssentials extends Plugin
|
|
{
|
|
void addReloadListener(IConf listener);
|
|
|
|
void reload();
|
|
|
|
boolean onCommandEssentials(CommandSender sender, Command command, String commandLabel, String[] args, ClassLoader classLoader, String commandPath, String permissionPrefix, IEssentialsModule module);
|
|
|
|
User getUser(Object base);
|
|
|
|
I18n getI18n();
|
|
|
|
User getOfflineUser(String name);
|
|
|
|
World getWorld(String name);
|
|
|
|
int broadcastMessage(IUser sender, String message);
|
|
|
|
ISettings getSettings();
|
|
|
|
BukkitScheduler getScheduler();
|
|
|
|
Jail getJail();
|
|
|
|
Warps getWarps();
|
|
|
|
Worth getWorth();
|
|
|
|
Backup getBackup();
|
|
|
|
Methods getPaymentMethod();
|
|
|
|
int scheduleAsyncDelayedTask(Runnable run);
|
|
|
|
int scheduleSyncDelayedTask(Runnable run);
|
|
|
|
int scheduleSyncDelayedTask(Runnable run, long delay);
|
|
|
|
int scheduleSyncRepeatingTask(final Runnable run, long delay, long period);
|
|
|
|
TNTExplodeListener getTNTListener();
|
|
|
|
PermissionsHandler getPermissionsHandler();
|
|
|
|
AlternativeCommandsHandler getAlternativeCommandsHandler();
|
|
|
|
void showError(final CommandSender sender, final Throwable exception, final String commandLabel);
|
|
|
|
ItemDb getItemDb();
|
|
|
|
UserMap getUserMap();
|
|
}
|