Jump to content
SSForum.net is back!

Jareth

Member
  • Posts

    157
  • Joined

  • Last visited

Everything posted by Jareth

  1. Jareth

    Hello

    I've been using the name monkey. I hope to see you around in game more.
  2. Jareth

    Hello

    Hello Mr. Weebles Wobble, Welcome to the community, we welcome you with open arms. I've seen you in game several times now, and I must say you are an impressive player. Here is an example of some of your stats that I've noticed: I hope you enjoy your stay here, I know we enjoy your company. Sincerely, jareth
  3. I'll donate what I can.
  4. Jareth

    Chatnut

    Here's a working old version of chatnut.
  5. Jareth

    Chatnut

    That's because the zones.txt in the jar is out of date. You can get it to work by extracting the jar, and updating the zones.txt. Then rejar it and sign it.
  6. I don't know Java very well, but I think that is only for integers/characters.
  7. import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { InputStreamReader isr = new InputStreamReader(System.in); BufferedReader input = new BufferedReader(isr); String inStr; System.out.println("Enter a string:"); try { inStr = input.readLine(); System.out.print("You entered "); System.out.println(inStr); } catch (IOException e) { System.out.println("Error"); } } }
×
×
  • Create New...