Guest User

conifig

a guest
Mar 20th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.20 KB | None | 0 0
  1. public static boolean ALLOW_HOPZONE_VOTE_REWARD;
  2.     public static String HOPZONE_SERVER_LINK;
  3.     public static String HOPZONE_FIRST_PAGE_LINK;
  4.     public static int HOPZONE_VOTES_DIFFERENCE;
  5.     public static int HOPZONE_FIRST_PAGE_RANK_NEEDED;
  6.     public static int HOPZONE_REWARD_CHECK_TIME;
  7.     public static Map<Integer, Integer> HOPZONE_SMALL_REWARD = new FastMap<Integer, Integer>();
  8.     public static Map<Integer, Integer> HOPZONE_BIG_REWARD = new FastMap<Integer, Integer>();
  9.     public static int HOPZONE_DUALBOXES_ALLOWED;
  10.     public static boolean ALLOW_HOPZONE_GAME_SERVER_REPORT;
  11.     public static boolean ALLOW_TOPZONE_VOTE_REWARD;
  12.     public static String TOPZONE_SERVER_LINK;
  13.     public static String TOPZONE_FIRST_PAGE_LINK;
  14.     public static int TOPZONE_VOTES_DIFFERENCE;
  15.     public static int TOPZONE_FIRST_PAGE_RANK_NEEDED;
  16.     public static int TOPZONE_REWARD_CHECK_TIME;
  17.     public static Map<Integer, Integer> TOPZONE_SMALL_REWARD = new FastMap<Integer, Integer>();
  18.     public static Map<Integer, Integer> TOPZONE_BIG_REWARD = new FastMap<Integer, Integer>();
  19.     public static int TOPZONE_DUALBOXES_ALLOWED;
  20.     public static boolean ALLOW_TOPZONE_GAME_SERVER_REPORT;
  21.  
  22.  
  23.  
  24.  
  25.  ALLOW_HOPZONE_VOTE_REWARD = Boolean.parseBoolean(elcardia.getProperty("AllowHopzoneVoteReward", "false"));
  26.                 HOPZONE_SERVER_LINK = elcardia.getProperty("HopzoneServerLink", "http://l2.hopzone.net/lineage2/details/74078/L2World-Servers/");
  27.                 HOPZONE_FIRST_PAGE_LINK = elcardia.getProperty("HopzoneFirstPageLink", "http://l2.hopzone.net/lineage2/");
  28.                 HOPZONE_VOTES_DIFFERENCE = Integer.parseInt(elcardia.getProperty("HopzoneVotesDifference", "5"));
  29.                 HOPZONE_FIRST_PAGE_RANK_NEEDED = Integer.parseInt(elcardia.getProperty("HopzoneFirstPageRankNeeded", "15"));
  30.                 HOPZONE_REWARD_CHECK_TIME = Integer.parseInt(elcardia.getProperty("HopzoneRewardCheckTime", "5"));
  31.                 String HOPZONE_SMALL_REWARD_VALUE = elcardia.getProperty("HopzoneSmallReward", "57,100000000;");
  32.                 String[] hopzone_small_reward_splitted_1 = HOPZONE_SMALL_REWARD_VALUE.split(";");
  33.                 for (String i : hopzone_small_reward_splitted_1)
  34.                 {
  35.                     String[] hopzone_small_reward_splitted_2 = i.split(",");
  36.                     HOPZONE_SMALL_REWARD.put(Integer.parseInt(hopzone_small_reward_splitted_2[0]), Integer.parseInt(hopzone_small_reward_splitted_2[1]));
  37.                 }
  38.                 String HOPZONE_BIG_REWARD_VALUE = elcardia.getProperty("HopzoneBigReward", "3470,1;");
  39.                 String[] hopzone_big_reward_splitted_1 = HOPZONE_BIG_REWARD_VALUE.split(";");
  40.                 for (String i : hopzone_big_reward_splitted_1)
  41.                 {
  42.                     String[] hopzone_big_reward_splitted_2 = i.split(",");
  43.                     HOPZONE_BIG_REWARD.put(Integer.parseInt(hopzone_big_reward_splitted_2[0]), Integer.parseInt(hopzone_big_reward_splitted_2[1]));
  44.                 }
  45.                 HOPZONE_DUALBOXES_ALLOWED = Integer.parseInt(elcardia.getProperty("HopzoneDualboxesAllowed", "1"));
  46.                 ALLOW_HOPZONE_GAME_SERVER_REPORT = Boolean.parseBoolean(elcardia.getProperty("AllowHopzoneGameServerReport", "false"));
  47.                 ALLOW_TOPZONE_VOTE_REWARD = Boolean.parseBoolean(elcardia.getProperty("AllowTopzoneVoteReward", "false"));
  48.                 TOPZONE_SERVER_LINK = elcardia.getProperty("TopzoneServerLink", "http://l2.topzone.net/lineage2/details/74078/L2World-Servers/");
  49.                 TOPZONE_FIRST_PAGE_LINK = elcardia.getProperty("TopzoneFirstPageLink", "http://l2.topzone.net/lineage2/");
  50.                 TOPZONE_VOTES_DIFFERENCE = Integer.parseInt(elcardia.getProperty("TopzoneVotesDifference", "5"));
  51.                 TOPZONE_FIRST_PAGE_RANK_NEEDED = Integer.parseInt(elcardia.getProperty("TopzoneFirstPageRankNeeded", "15"));
  52.                 TOPZONE_REWARD_CHECK_TIME = Integer.parseInt(elcardia.getProperty("TopzoneRewardCheckTime", "5"));
  53.                 String TOPZONE_SMALL_REWARD_VALUE = elcardia.getProperty("TopzoneSmallReward", "57,100000000;");
  54.                 String[] topzone_small_reward_splitted_1 = TOPZONE_SMALL_REWARD_VALUE.split(";");
  55.                 for (String i : topzone_small_reward_splitted_1)
  56.                 {
  57.                     String[] topzone_small_reward_splitted_2 = i.split(",");
  58.                     TOPZONE_SMALL_REWARD.put(Integer.parseInt(topzone_small_reward_splitted_2[0]), Integer.parseInt(topzone_small_reward_splitted_2[1]));
  59.                 }
  60.                 String TOPZONE_BIG_REWARD_VALUE = elcardia.getProperty("TopzoneBigReward", "3470,1;");
  61.                 String[] topzone_big_reward_splitted_1 = TOPZONE_BIG_REWARD_VALUE.split(";");
  62.                 for (String i : topzone_big_reward_splitted_1)
  63.                 {
  64.                     String[] topzone_big_reward_splitted_2 = i.split(",");
  65.                     TOPZONE_BIG_REWARD.put(Integer.parseInt(topzone_big_reward_splitted_2[0]), Integer.parseInt(topzone_big_reward_splitted_2[1]));
  66.                 }
  67.                 TOPZONE_DUALBOXES_ALLOWED = Integer.parseInt(elcardia.getProperty("TopzoneDualboxesAllowed", "1"));
  68.                 ALLOW_TOPZONE_GAME_SERVER_REPORT = Boolean.parseBoolean(elcardia.getProperty("AllowTopzoneGameServerReport", "false"));
Advertisement
Add Comment
Please, Sign In to add comment