Here you can find the source of randomNick()
public static String randomNick()
//package com.java2s; //License from project: Open Source License public class Main { public static String randomNick() { return "MC" + randomInt(1000, 9999); }/*from w w w. j ava2 s .com*/ public static int randomInt(int min, int max) { return min + (int) (Math.random() * ((max - min) + 1)); } }