blob: 60c5eb8251f70e3be571dc9b629731b8933f4207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package me.Danker;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
public class GetkeyCommand extends CommandBase implements ICommand {
@Override
public String getCommandName() {
return "getkey";
}
@Override
public String getCommandUsage(ICommandSender arg0) {
return getCommandName();
}
@Override
public int getRequiredPermissionLevel() {
return 0;
}
@Override
public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
final EntityPlayer player = (EntityPlayer)arg0;
final ConfigHandler cf = new ConfigHandler();
if (cf.getString("api", "APIKey").equals("")) {
player.addChatMessage(new ChatComponentText("API key not set. Get a new one by doing /api new."));
} else {
player.addChatMessage(new ChatComponentText("Your set API key is " + cf.getString("api", "APIKey")));
}
}
}
|