Reborn12 Posted January 6, 2017 Author Posted January 6, 2017 If you have smartguard on your server doesn't work. Cause is using dsetup.dll Quote
Rahab Posted January 7, 2017 Posted January 7, 2017 Topzone/L2 network doesn't work! Hopzone work ! PD: L2JFROZEN! Quote
Reborn12 Posted January 7, 2017 Author Posted January 7, 2017 Topzone/L2 network doesn't work! Hopzone work ! PD: L2JFROZEN! http://www.maxcheaters.com/topic/201882-vote-manager-npc-v3/page-4 here is the fix for topzone and works fine network too Quote
Protein Posted February 7, 2017 Posted February 7, 2017 i use this on my server and works like i want...all works fine here is the fix for topzone use this link but change id https://l2topzone.com/tv.php?id=12609 public static int getTopZoneVotes() { int votes = -1; try { final URL obj = new URL(Config.VOTES_SITE_TOPZONE_URL); final HttpURLConnection con = (HttpURLConnection) obj.openConnection(); con.addRequestProperty("User-Agent", "L2TopZone"); con.setConnectTimeout(5000); final int responseCode = con.getResponseCode(); if (responseCode == 200) { try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()))) { String inputLine; while ((inputLine = in.readLine()) != null) { votes = Integer.valueOf(inputLine); break; } } } } catch (Exception e) { e.printStackTrace(); System.out.println("TOPZONE is offline. We will check reward as it will be online again."); } return votes; } your fix work fine! Great work, Keep up share!! 8) Quote
santiagol2 Posted February 8, 2017 Posted February 8, 2017 (edited) Top Edited February 8, 2017 by santiagol2 Quote
badangel3s Posted March 19, 2017 Posted March 19, 2017 (edited) private int _teleMode; private boolean _isCrystallizing; private boolean _isCrafting; +private boolean _isVoting; public List<Integer> getSelectedBlocksList() { return _selectedBlocksList; } + + public final boolean isVoting() + { + return _isVoting; + } + + public final void setIsVoting(boolean value) + { + _isVoting = value; + } + How to add this in L2jFrozen 1132 ? I did not find these lines in L2PCInstance.java. Edited March 19, 2017 by badangel3s Quote
SweeTs Posted March 19, 2017 Posted March 19, 2017 (edited) Anywhere, out of any method. At the end of the file for example. Edited March 19, 2017 by SweeTs Quote
nortim Posted March 21, 2017 Posted March 21, 2017 (edited) I added the correct code, I did not have any errors, but nothing happens when I click the imagem Edited March 21, 2017 by nortim Quote
Reborn12 Posted March 21, 2017 Author Posted March 21, 2017 You have to click in symbol plus not in icon Quote
nortim Posted March 21, 2017 Posted March 21, 2017 You have to click in symbol plus not in icon Yes, I did was just that, I'm sorry for expressing myself wrong, I'm Brazilian and I hardly speak English. Quote
Mellion Posted March 21, 2017 Posted March 21, 2017 Works very good, BIGEST THANKS REBORN12, its super easy to add, im only waste 5minutes. Quote
badangel3s Posted April 4, 2017 Posted April 4, 2017 What is the NPC ID? I need create one? I did not understand how it works. Quote
Reborn12 Posted April 4, 2017 Author Posted April 4, 2017 What is the NPC ID? I need create one? I did not understand how it works. Yes you need one npc with type L2VoteManager Quote
badangel3s Posted April 4, 2017 Posted April 4, 2017 Yes you need one npc with type L2VoteManager Thx Reborn, it worked perfectly! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.