Posted October 13, 201311 yr Hey, I can't seem to squash this bug. When i type the command /mschouses create 1 1 1 5 5 5 test 1 false 0 This code is getting hung up on the highlighted line. I think it would be better if I had a 2nd pair of eyes look over it. http://i.imgur.com/gWwyMMO.jpg[/img]
October 13, 201311 yr Your 7th argument is "test" 1 - 1st 1 - 2nd 1 - 3rd 5 - 4th 5 - 5th 5 - 6th test - 7th 1 - 8th false - 9th 0 - 10th if(!isNumeric(arguments[7])){ should be if(!isNumeric(arguments[8])){ Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
October 14, 201311 yr To add to Draco18s answer further down : int legnth = Integer.parseInt(arguments[7]); String name = arguments[8]; should be : int legnth = Integer.parseInt(arguments[8]); String name = arguments[7]; Unless the code is correct then you can just change your command to : /mschouses create 1 1 1 5 5 5 1 test false 0
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.