mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
71 lines
1.8 KiB
Java
71 lines
1.8 KiB
Java
package com.earth2me.essentials.signs;
|
|
|
|
import com.earth2me.essentials.ChargeException;
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.IEssentials;
|
|
import com.earth2me.essentials.Trade;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
|
|
|
|
|
|
public class SignWarp extends EssentialsSign
|
|
{
|
|
public SignWarp()
|
|
{
|
|
super("Warp");
|
|
}
|
|
|
|
@Override
|
|
protected boolean onSignCreate(final ISign sign, final User player, final String username, final IEssentials ess) throws SignException
|
|
{
|
|
validateTrade(sign, 3, ess);
|
|
final String warpName = sign.getLine(1);
|
|
|
|
if (warpName.isEmpty())
|
|
{
|
|
sign.setLine(1, "§c<Warp name>");
|
|
throw new SignException(_("invalidSignLine", 1));
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
ess.getWarps().getWarp(warpName);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw new SignException(ex.getMessage(), ex);
|
|
}
|
|
final String group = sign.getLine(2);
|
|
if ("Everyone".equalsIgnoreCase(group) || "Everybody".equalsIgnoreCase(group))
|
|
{
|
|
sign.setLine(2, "§2Everyone");
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected boolean onSignInteract(final ISign sign, final User player, final String username, final IEssentials ess) throws SignException, ChargeException
|
|
{
|
|
final String warpName = sign.getLine(1);
|
|
final String group = sign.getLine(2);
|
|
if ((!group.isEmpty()
|
|
&& ("§2Everyone".equals(group)
|
|
|| player.inGroup(group)))
|
|
|| (group.isEmpty() && (!ess.getSettings().getPerWarpPermission() || player.isAuthorized("essentials.warps." + warpName))))
|
|
{
|
|
final Trade charge = getTrade(sign, 3, ess);
|
|
try
|
|
{
|
|
player.getTeleport().warp(warpName, charge, TeleportCause.PLUGIN);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw new SignException(ex.getMessage(), ex);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|