Hello guys, i have problem with topzone vote reward on l2jfrozen 1118rev.
Server TOPZONE is offline or something wrong in link (Console Message)
Does anyone know the fix?
THAAAANKS
Here is my code.
url = new URL(PowerPakConfig.VOTES_SITE_TOPZONE_URL);
con = url.openConnection();
con.addRequestProperty("User-Agent", "L2TopZone");
is = con.getInputStream();
isr = new InputStreamReader(is);
in = new BufferedReader(isr);
String inputLine;
while ((inputLine = in.readLine()) != null)
{
if (inputLine.contains("Votes"))
{
votes = Integer.valueOf(inputLine.split(">")[3].replace("</div", ""));
break;
}
}
Linkback: https://l2topzone.com/forum/index.php?topic=24543.0