Package me.vudu.Conflict.Runnables

Examples of me.vudu.Conflict.Runnables.BaseLocationUpdateRunnable


  private void initSchedulers() {
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new BlockUpdateRunnable(),
        ConflictPlugin.blockUpdateTicks, ConflictPlugin.blockUpdateTicks);
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new HungerUpdateRunnable(),
        ConflictPlugin.hungerDelayTicks, ConflictPlugin.hungerIntervallTicks);
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new BaseLocationUpdateRunnable(), 2L, 2L);
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new PlayerLocationUpdateRunnable(),
        ConflictPlugin.campingDamageIntervall, ConflictPlugin.campingDamageIntervall);
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new TeamnameBackupRunnable(), 200L, 200L); // ((alle 10s))
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new PlayerHealerRunnable(), 40L, 40L); // ((alle 2s))
    getServer().getScheduler().scheduleAsyncRepeatingTask(this, new VirusRunnable(this), 4L, 4L); // ((alle 0.2s))
View Full Code Here

TOP

Related Classes of me.vudu.Conflict.Runnables.BaseLocationUpdateRunnable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.