Illumination #2
@ -14,6 +14,7 @@ import com.redstoner.modules.chatgroups.Chatgroups;
|
||||
import com.redstoner.modules.check.Check;
|
||||
import com.redstoner.modules.cycle.Cycle;
|
||||
import com.redstoner.modules.damnspam.DamnSpam;
|
||||
import com.redstoner.modules.illumination.Illumination;
|
||||
import com.redstoner.modules.imout.Imout;
|
||||
import com.redstoner.modules.lagchunks.LagChunks;
|
||||
import com.redstoner.modules.loginsecurity.LoginSecurity;
|
||||
@ -34,7 +35,7 @@ import com.redstoner.modules.webtoken.WebToken;
|
||||
/** Main class. Duh.
|
||||
*
|
||||
* @author Pepich */
|
||||
@Version(major = 1, minor = 4, revision = 0, compatible = -1)
|
||||
@Version(major = 1, minor = 4, revision = 1, compatible = -1)
|
||||
public class Main extends JavaPlugin
|
||||
{
|
||||
public static JavaPlugin plugin;
|
||||
@ -57,6 +58,7 @@ public class Main extends JavaPlugin
|
||||
ModuleLoader.addModule(Check.class);
|
||||
ModuleLoader.addModule(DamnSpam.class);
|
||||
// TODO: ModuleLoader.addModule(Friends.class);
|
||||
ModuleLoader.addModule(Illumination.class);
|
||||
// TODO: ModuleLoader.addModule(Imbusy.class);
|
||||
ModuleLoader.addModule(Imout.class);
|
||||
ModuleLoader.addModule(LagChunks.class);
|
||||
|
62
src/com/redstoner/modules/illumination/Illumination.java
Normal file
62
src/com/redstoner/modules/illumination/Illumination.java
Normal file
@ -0,0 +1,62 @@
|
||||
package com.redstoner.modules.illumination;
|
||||
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.potion.PotionEffect;
|
||||
import org.bukkit.potion.PotionEffectType;
|
||||
|
||||
import com.nemez.cmdmgr.Command;
|
||||
import com.redstoner.annotations.Version;
|
||||
import com.redstoner.misc.Utils;
|
||||
import com.redstoner.modules.Module;
|
||||
|
||||
@Version(major = 1, minor = 0, revision = 0, compatible = 1)
|
||||
public class Illumination implements Module{
|
||||
|
||||
boolean enabled = false;
|
||||
PotionEffect effect = new PotionEffect(PotionEffectType.NIGHT_VISION, Integer.MAX_VALUE, 0, false, false);
|
||||
|
||||
@Command(hook = "illuminate")
|
||||
public void illuminate(CommandSender sender) {
|
||||
Player player = (Player) sender;
|
||||
if(player.hasPotionEffect(PotionEffectType.NIGHT_VISION)) {
|
||||
player.removePotionEffect(PotionEffectType.NIGHT_VISION);
|
||||
Utils.sendMessage(sender, null, "Night Vision Disabled.");
|
||||
}
|
||||
else {
|
||||
player.addPotionEffect(effect, true);
|
||||
Utils.sendMessage(sender, null, "Night Vision Enabled.");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
enabled = true;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
enabled = false;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean enabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCommandString() {
|
||||
return "command nightvision {\n" +
|
||||
" [empty] {\n" +
|
||||
" run illuminate;\n" +
|
||||
" type player;\n" +
|
||||
" help Gives the player infinte night vision;\n" +
|
||||
" perm utils.illuminate;\n" +
|
||||
" }\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"}";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user