New Check System Implemented!

Massive Overhaul
This commit is contained in:
Driftay
2019-09-08 01:25:19 -04:00
parent 9f2f491dc9
commit ed5394565d
14 changed files with 617 additions and 108 deletions

View File

@@ -23,11 +23,25 @@ import java.util.concurrent.ConcurrentHashMap;
public interface Faction extends EconomyParticipator {
long getCheckNotifier();
void setCheckNotifier(long minutes);
void sendCheckNotify();
int getWallCheckMinutes();
void setWallCheckMinutes(int minutes);
int getBufferCheckMinutes();
void setBufferCheckMinutes(int minutes);
Map<Long, String> getChecks();
Map<UUID, Integer> getPlayerBufferCheckCount();
Map<UUID, Integer> getPlayerWallCheckCount();
boolean isWeeWoo();
void setWeeWoo(boolean weeWoo);
boolean altInvited(FPlayer fplayer);