Jump to content

Recommended Posts

Posted (edited)

Thank You! 

 

TopZone is OK!

 

A very good manager... only this stupid API links... I tried everything, obviously my knowledge is not enough ...

Edited by genata75
Posted

Thank You! 

 

TopZone is OK!

 

A very good manager... only this stupid API links... I tried everything, obviously my knowledge is not enough ...

You should try the manager like it is in txt for hopzone it must work..
  • 2 weeks later...
  • 5 months later...
Posted
34 minutes ago, Runfoldas said:

I'm added this code to l2jfrozen, but for me every time write i'm not voted for l2topzone. What i do wrong? Mhm, no errors in eclipse.. hopzone and network work fine.

You can fix topzone from this page

https://maxcheaters.com/topic/201882-vote-manager-npc-v3/?page=4

 

Posted
2 hours ago, Reborn12 said:
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;
	}

Is that from your vote manager npc? In with java file need change it?

Posted
2 hours ago, Runfoldas said:

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;
	}

Is that from your vote manager npc? In with java file need change it?

VoteHandler.java all the gettopzonevotes() method to be easier for you..

Posted

Reborn12, can you tell me, about what this error is? 

 

WARN  
java.lang.ClassCastException: com.l2jfrozen.gameserver.model.actor.instance.L2RaidBossInstance cannot be cast to com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance
    at com.l2jfrozen.gameserver.handler.skillhandlers.Disablers.useSkill(Disablers.java:590)
    at com.l2jfrozen.gameserver.model.L2Character.callSkill(L2Character.java:9285)
    at com.l2jfrozen.gameserver.model.L2Character.onMagicHitTimer(L2Character.java:8542)
    at com.l2jfrozen.gameserver.model.L2Character.onMagicLaunchedTimer(L2Character.java:8364)
    at com.l2jfrozen.gameserver.model.L2Character.doCast(L2Character.java:2124)
    at com.l2jfrozen.gameserver.model.L2Character$AIAccessor.doCast(L2Character.java:4970)
    at com.l2jfrozen.gameserver.ai.L2AttackableAI.thinkAttack(L2AttackableAI.java:966)
    at com.l2jfrozen.gameserver.ai.L2AttackableAI.onEvtThink(L2AttackableAI.java:1005)
    at com.l2jfrozen.gameserver.ai.L2CharacterAI.onEvtReadyToAct(L2CharacterAI.java:712)
    at com.l2jfrozen.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:363)
    at com.l2jfrozen.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:314)
    at com.l2jfrozen.gameserver.model.L2Character$NotifyAITask.run(L2Character.java:3445)
    at com.l2jfrozen.gameserver.thread.ThreadPoolManager$RunnableWrapper.run(ThreadPoolManager.java:95)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)

 

Posted
2 hours ago, Runfoldas said:

Reborn12, can you tell me, about what this error is? 

 


WARN  
java.lang.ClassCastException: com.l2jfrozen.gameserver.model.actor.instance.L2RaidBossInstance cannot be cast to com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance
    at com.l2jfrozen.gameserver.handler.skillhandlers.Disablers.useSkill(Disablers.java:590)
    at com.l2jfrozen.gameserver.model.L2Character.callSkill(L2Character.java:9285)
    at com.l2jfrozen.gameserver.model.L2Character.onMagicHitTimer(L2Character.java:8542)
    at com.l2jfrozen.gameserver.model.L2Character.onMagicLaunchedTimer(L2Character.java:8364)
    at com.l2jfrozen.gameserver.model.L2Character.doCast(L2Character.java:2124)
    at com.l2jfrozen.gameserver.model.L2Character$AIAccessor.doCast(L2Character.java:4970)
    at com.l2jfrozen.gameserver.ai.L2AttackableAI.thinkAttack(L2AttackableAI.java:966)
    at com.l2jfrozen.gameserver.ai.L2AttackableAI.onEvtThink(L2AttackableAI.java:1005)
    at com.l2jfrozen.gameserver.ai.L2CharacterAI.onEvtReadyToAct(L2CharacterAI.java:712)
    at com.l2jfrozen.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:363)
    at com.l2jfrozen.gameserver.ai.AbstractAI.notifyEvent(AbstractAI.java:314)
    at com.l2jfrozen.gameserver.model.L2Character$NotifyAITask.run(L2Character.java:3445)
    at com.l2jfrozen.gameserver.thread.ThreadPoolManager$RunnableWrapper.run(ThreadPoolManager.java:95)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)

 

this is a frozen problem to fix this search at

Disablers.java:590

line 590 its propably some skill that used by rb on a player possible fix is to skip something in the for loop i have no idea what frozen has there

  • 1 month later...
Posted (edited)

5u0XzLA.jpg

hmm what is going wrong ? i used the update that you say but does not work any solution ?

i did  vote at this links
TopzoneUrl = http://l2topzone.com/totalvotes.php?id=6150
NetworkUrl = http://l2network.eu/details/l2gamers/
HopzoneUrl = http://l2.hopzone.net/gr/lineage2/details/91106/L2-Gamers

Edited by cyta5
  • 3 months later...
Posted

java.net.MalformedURLException: no protocol:
        at java.net.URL.<init>(Unknown Source)
        at java.net.URL.<init>(Unknown Source)
        at java.net.URL.<init>(Unknown Source)
        at com.l2jfrozen.gameserver.handler.VoteHandler.getL2NetworkVotes(VoteHandler.java:323)
        at com.l2jfrozen.gameserver.handler.VoteHandler$1nzvotetask.run(VoteHandler.java:375)
        at com.l2jfrozen.gameserver.thread.ThreadPoolManager$RunnableWrapper.run(ThreadPoolManager.java:95)
        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
        at java.util.concurrent.FutureTask.run(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
NetWork is offline. We will check reward as it will be online again.

 

My link: https://l2network.eu/?a=details&amp;u=xxx

 

VoteHandler line 323:

final HttpURLConnection con = (HttpURLConnection) obj. openConnection();

Whats wrong ? :(

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Good luck dmg:D
    • Hello, after changing the motherboard and installing all the drivers, my game no longer starts. What should I do? Is there any framework missing? Error
    • Dear friends, we would like to present the new products we have recently added to our store. Available for purchase right now: ➡ Instagram Aged Meta-Verified Account with Active Blue Checkmark | Subscription already paid for 1 month in advance + account is ID-verified | Price from: $69 ➡ Example: https://www.instagram.com/rizkyaryaanugraha7/ ➡ Facebook Aged Meta-Verified Account with Active Blue Checkmark | Subscription already paid for 1 month in advance + account is ID-verified | Price from: $69 ➡ Example: https://www.facebook.com/profile.php?id=61556579278469 Key features: ➡ All accounts range from 2010 to 2023 (Instagram accounts usually up to 2020) ➡ Accounts come with full access to email (Rambler, Firstmail, Gmail), login, and password ➡ Facebook accounts also come with active Cookies (in JSON format) ➡ It is prohibited to change the nickname or avatar after purchase — otherwise, you risk losing the blue checkmark. It cannot be restored. We create accounts to order in any quantity within 24 hours (usually verification is faster). We can also verify your personal account with a blue badge (price and conditions discussed separately). Please contact us via the details below. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ Telegram Channel: https://t.me/accsforyou_shop ➡ WhatsApp: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Discord: socnet_support ➡ Discord Server: https://discord.gg/y9AStFFsrh ➡ ✉ Email: solomonbog@socnet.store You can also use these contacts to: — get consultation for bulk purchases — establish a partnership (current partners: https://socnet.bgng.io/partners ) — become our supplier Our online store assortment includes: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, email accounts (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional services: Telegram Stars, proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, others), VDS/RDP servers Promo code: AUGUST2025 (10% Discount) Payment: bank cards · cryptocurrency · other popular methods How to buy: ➡ Online Store: Click ➡ Telegram Bot: Click Other services: ➡ SMM Panel: Click - promotion for your social media accounts. Use our SMM Panel to boost: Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Website traffic, TikTok, Trust Pilot, Apple Music, Tripadvisor, Snapchat, and other digital platforms. Get $1 for your first SMM Panel trial: Just create a ticket with the subject “Get Trial Bonus” on our website (Support) Loyal customers get additional discounts and promo codes! SocNet — digital goods and premium subscriptions store  
    • Dear friends, we would like to present the new products we have recently added to our store. Available for purchase right now: ➡ Instagram Aged Meta-Verified Account with Active Blue Checkmark | Subscription already paid for 1 month in advance + account is ID-verified | Price from: $69 ➡ Example: https://www.instagram.com/rizkyaryaanugraha7/ ➡ Facebook Aged Meta-Verified Account with Active Blue Checkmark | Subscription already paid for 1 month in advance + account is ID-verified | Price from: $69 ➡ Example: https://www.facebook.com/profile.php?id=61556579278469 Key features: ➡ All accounts range from 2010 to 2023 (Instagram accounts usually up to 2020) ➡ Accounts come with full access to email (Rambler, Firstmail, Gmail), login, and password ➡ Facebook accounts also come with active Cookies (in JSON format) ➡ It is prohibited to change the nickname or avatar after purchase — otherwise, you risk losing the blue checkmark. It cannot be restored. We create accounts to order in any quantity within 24 hours (usually verification is faster). We can also verify your personal account with a blue badge (price and conditions discussed separately). Please contact us via the details below. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ Telegram Channel: https://t.me/accsforyou_shop ➡ WhatsApp: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Discord: socnet_support ➡ Discord Server: https://discord.gg/y9AStFFsrh ➡ ✉ Email: solomonbog@socnet.store You can also use these contacts to: — get consultation for bulk purchases — establish a partnership (current partners: https://socnet.bgng.io/partners ) — become our supplier Our online store assortment includes: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, email accounts (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium subscriptions: Telegram Premium, Twitter Premium X, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional services: Telegram Stars, proxies (IPv4, IPv6, ISP, Mobile), VPN (Outline, WireGuard, others), VDS/RDP servers Promo code: AUGUST2025 (10% Discount) Payment: bank cards · cryptocurrency · other popular methods How to buy: ➡ Online Store: Click ➡ Telegram Bot: Click Other services: ➡ SMM Panel: Click - promotion for your social media accounts. Use our SMM Panel to boost: Facebook, Instagram, Telegram, Spotify, Soundcloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, Website traffic, TikTok, Trust Pilot, Apple Music, Tripadvisor, Snapchat, and other digital platforms. Get $1 for your first SMM Panel trial: Just create a ticket with the subject “Get Trial Bonus” on our website (Support) Loyal customers get additional discounts and promo codes! SocNet — digital goods and premium subscriptions store
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock