TheRedCraft Posted May 27, 2017 Share Posted May 27, 2017 (edited) Hi ich will überprüfen ob ein in game eingegebener name kleiner als 16 ist ich habe es so versucht aber es ging nicht: if(args[0]<16) args[0] kommt von CommandExecutor der sied so aus public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) Edited May 27, 2017 by TheRedCraft Link to comment Share on other sites More sharing options...
Joey Posted May 27, 2017 Share Posted May 27, 2017 args[0] ist ja indem Fall ein String. Daher kannst du einfach die länge eines String abfragen if (args[0].length() < 16) then Link to comment Share on other sites More sharing options...
TheRedCraft Posted May 27, 2017 Author Share Posted May 27, 2017 danke Link to comment Share on other sites More sharing options...
Baustein Posted May 28, 2017 Share Posted May 28, 2017 Es kann natürlich sein, dass du wirklich abfragen willst, ob der Name kleiner als 16 Zeichen lang ist. Ein Minecraft-Name kann allerdings maximal 16 Zeichen haben, weswegen ich mir args[0].length() <= 16 eher vorstellen könnte. Liebe Grüße, Baustein Link to comment Share on other sites More sharing options...
SuchtyTV Posted July 28, 2017 Share Posted July 28, 2017 Oder meinst du, dass du ein Alter oder soetwas auslesen willst? boolean b = Double.parse(args[0])<16 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now