|
|
|
@ -14,6 +14,7 @@ import engine.devcmd.AbstractDevCmd;
@@ -14,6 +14,7 @@ import engine.devcmd.AbstractDevCmd;
|
|
|
|
|
import engine.gameManager.ChatManager; |
|
|
|
|
import engine.objects.AbstractGameObject; |
|
|
|
|
import engine.objects.PlayerCharacter; |
|
|
|
|
import engine.server.MBServerStatics; |
|
|
|
|
|
|
|
|
|
public class SetLevelCmd extends AbstractDevCmd { |
|
|
|
|
|
|
|
|
@ -46,7 +47,7 @@ public class SetLevelCmd extends AbstractDevCmd {
@@ -46,7 +47,7 @@ public class SetLevelCmd extends AbstractDevCmd {
|
|
|
|
|
this.sendUsage(pc); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (level < 1 || level > 75) { |
|
|
|
|
if (level < 1 || level > MBServerStatics.LEVELCAP) { |
|
|
|
|
this.sendHelp(pc); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -62,7 +63,7 @@ public class SetLevelCmd extends AbstractDevCmd {
@@ -62,7 +63,7 @@ public class SetLevelCmd extends AbstractDevCmd {
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected String _getHelpString() { |
|
|
|
|
return "Sets your character's level to 'amount'. 'amount' must be between 1-75"; |
|
|
|
|
return "Sets your character's level to 'amount'. 'amount' must be between 1-" + MBServerStatics.LEVELCAP; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|