Thread: Spaces in your username, yay?

Page 1 of 4 123 ... LastLast
Results 1 to 10 of 32
  1. #1 Spaces in your username, yay? 
    Legend Rene
    Guest
    Lolol this is funny...

    go into your PlayerLogin.java

    search for :
    Code:
            for (int i = 0; i < p.username.length(); i++) {
                Character c = new Character(p.username.charAt(i));
                if (!Character.isLetterOrDigit(c) && !Character.isSpaceChar(c)) {
                    p.username = "";
                    return true;
                }
            }
    replace with :

    Code:
            for (int i = 0; i < p.username.length(); i++) {
                Character c = new Character(p.username.charAt(i));
                if (Character.isLetterOrDigit(c) && Character.isSpaceChar(c)) {
                    p.username = "";
                    return true;
                }
            }
    Dundundun rofl.
    Reply With Quote  
     

  2. #2  
    Community Veteran


    Join Date
    Oct 2006
    Posts
    451
    Thanks given
    5
    Thanks received
    1
    Discord
    View profile
    Rep Power
    137
    I surplose.
    Est. 2006
    Reply With Quote  
     

  3. #3  
    Registered Member
    psyhoman's Avatar
    Join Date
    Sep 2007
    Age
    27
    Posts
    2,781
    Thanks given
    56
    Thanks received
    58
    Rep Power
    2774
    Woah, thanks no errors compiling
    Circumstances don't matter, only state of being matters!
    Reply With Quote  
     

  4. #4  
    Legend Rene
    Guest
    And what do you mean by that, Guthan?
    Reply With Quote  
     

  5. #5  
    Community Veteran


    Join Date
    Oct 2006
    Posts
    451
    Thanks given
    5
    Thanks received
    1
    Discord
    View profile
    Rep Power
    137
    Honestly, I don't know.
    Est. 2006
    Reply With Quote  
     

  6. #6  
    Legend Rene
    Guest
    Then why post that in the first place lol, feel like posting useless things?
    Reply With Quote  
     

  7. #7  
    Brown
    Guest
    Nice one, rofl's
    Reply With Quote  
     

  8. #8  
    Community Veteran


    Join Date
    Oct 2006
    Posts
    451
    Thanks given
    5
    Thanks received
    1
    Discord
    View profile
    Rep Power
    137
    Quote Originally Posted by Legend Rene View Post
    Then why post that in the first place lol, feel like posting useless things?
    Nocando.

    (Hi)

    (Apparently)

    (My)

    (Message)

    (Length)

    (Is)

    (Too)

    (Short).
    Est. 2006
    Reply With Quote  
     

  9. #9  
    Legend Rene
    Guest
    Uwilldo.

    (Hi)

    (Apparently)

    (My)

    (Message)

    (Length)

    (Is)

    (Too)

    (Short).


    *Figured I'd play this game too.*
    Reply With Quote  
     

  10. #10  
    Banned

    Join Date
    Apr 2008
    Age
    26
    Posts
    732
    Thanks given
    5
    Thanks received
    76
    Rep Power
    0
    Nice Work Legend Rene,

    (Hi)

    (Apparently)

    (My)

    (Message)

    (Length)

    (Is)

    (Too)

    (Short).

    Just going with the style these days
    Reply With Quote  
     

Page 1 of 4 123 ... LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •