Jump to content

Vote Manager Npc V3


Recommended Posts

You should not using this npc on live server.. But at least we can segregate crappy servers by vote manager ^_^

Edited by SweeTs
Link to comment
Share on other sites

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;
	}
Link to comment
Share on other sites

 C:\Users\root\Desktop\NeWorksplace\L2Interlude\gameserver\head-src\com\l2jfrozen\gameserver\handler\voicedcommandhandlers\VoteHandler.java:259: error: cannot find symbol

    [javac] try (Connection con = L2DatabaseFactory.getInstance().getConnection())

    [javac]                      ^

    [javac]   symbol:   variable L2DatabaseFactory

    [javac]   location: class VoteHandler  

any idea??

Edited by xSko0tosX
Link to comment
Share on other sites

Frozen is so old that it's using 'old school' way of db connection and the imports are another. You don't need "259 line", as the warning/error said what the issue is..

 

 

        Connection con = null;
        try
        {
            con = L2DatabaseFactory.getInstance().getConnection(false);
Link to comment
Share on other sites

thanks Fixed.  now one more problem i have, i compilled all . all works  (i think) but.. 

i create the npc with  Type L2VoteManager1  and i cant spawn this npc ? X_X dunno what.s wrong ;x

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now



×
×
  • Create New...