Thread: Need some help

Results 1 to 2 of 2
  1. #1 Need some help 
    Banned

    Join Date
    Apr 2013
    Posts
    1,456
    Thanks given
    341
    Thanks received
    148
    Rep Power
    0
    hello everyone so when i login i get this error



    I am no t using the same client that came with it i was just testing the client i wnated to use with it
    Reply With Quote  
     

  2. #2  
    Registered Member Nissan Nut's Avatar
    Join Date
    Jul 2012
    Age
    28
    Posts
    111
    Thanks given
    0
    Thanks received
    7
    Rep Power
    7
    Go to the line of code your error message mentions and figure out what went wrong, ArrayOutOfBounds means you are trying to access a value that isn't there, your array length may be 32 and you are trying to grab the 33rd item... out of bounds. Sometimes arrays can be confusing for people.

    Ex. keep in mind if an array has 5 values the index of the last value would be 4.
    int[] array = {15, 25, 20, 40, 100}

    so basically
    array[0] is equal to 15
    array[4] is 100

    array[5] even though there is 5 values, this does not exist. ArrayOutOfBoundsException
    Click the image below to check out my server development thread, "Project Lord of The Rings"
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Need some help ReFormating / Deleting an OS
    By David in forum Software
    Replies: 16
    Last Post: 06-25-2008, 05:45 AM
  2. Need Some Help
    By Pitbull in forum Graphics
    Replies: 0
    Last Post: 05-11-2008, 12:15 PM
  3. I Need some help with Sprites..
    By XKoed in forum Graphics
    Replies: 3
    Last Post: 02-17-2008, 09:27 PM
  4. Need some help?
    By Bridget7298 in forum Tutorials
    Replies: 1
    Last Post: 02-13-2008, 02:11 AM
  5. i need some help with...
    By mewrenee in forum Tutorials
    Replies: 0
    Last Post: 01-19-2008, 01:02 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •