Jump to content
  • 0

Help With Auto Vote Reward Or Individual (Npc)


Question

Posted

Hello everyone . I need some help with my sever  autovote reward code and i want to install an npc votemanager from this forum.

If there are people that can help me please  let me your skype or something

Recommended Posts

  • 0
Posted

I would rape you both but i'm good so i won't.

 

This is not a forum so people add you on skype and enter in your PC to add your codes no matter what.

Here is a section that we help people. If you can't add your code, watch a tutorial. If you have problem with methods or e.t.c

post the code and photos and we help you.

 

You want someone enter your pc and add the code? Pay. You want do it on your own with our help? Post me the code in pastebin, post images and then we talk.

 

Also you come with a topic and no code saying the code doesnt read votes, let me smell my nails to detect the proble,

 

This topic went so far as i see........ Wanted some help but instead i get my world on my head. Tell me where is the rulle saying that if i want help i must copy/paste codes...errors /videos PAY  or something?

Ignore my thread and go to your cave but stop talking  bulls.hits . Who want's to help me he help me who not not.Simple right?

If i want help to move something in my house and i go to someone  and ask i must give details why i want help? ..when for example i have one hand ? NO

Maybe i am NOOB ... how many  PRO  DEV'S call some people but i'm not that stupid as you think i am .

 

 """""" Also you come with a topic and no code saying the code doesnt read votes, let me smell my nails to detect the problem """"""""   Did i say that .lol mans i have autocode and server not reading votes...what is problem? NO

So stop talking bullshits. With this atitude you won't go so far. Be a pro for yourself cause for us your nothing....

  • 0
Posted (edited)


/*

*

* This program is free software: you can redistribute it and/or modify it under

* the terms of the GNU General Public License as published by the Free Software

* Foundation, either version 3 of the License, or (at your option) any later

* version.

*

* This program is distributed in the hope that it will be useful, but WITHOUT

* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS

* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more

* details.

*

* You should have received a copy of the GNU General Public License along with

* this program. If not, see <http://www.gnu.org/licenses/>.

*/

package Extensions.Vote;

 

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.net.URL;

import java.net.URLConnection;

import java.util.ArrayList;

import java.util.List;

import java.util.logging.Logger;

 

import com.l2jhellas.Config;

import com.l2jhellas.gameserver.Announcements;

import com.l2jhellas.gameserver.Gui;

import com.l2jhellas.gameserver.ThreadPoolManager;

import com.l2jhellas.gameserver.model.L2World;

import com.l2jhellas.gameserver.model.actor.instance.L2PcInstance;

import com.l2jhellas.gameserver.network.serverpackets.ExShowScreenMessage;

import com.l2jhellas.gameserver.network.serverpackets.ExShowScreenMessage.SMPOS;

 

/**

* @author Boorinio

*/

public class VoteRewardHopzone

{

private static Logger _log = Logger.getLogger(VoteRewardHopzone.class.getName());

public static int HLastVotes = 0, HCurrentVotes = 0, HGoalVotes = 0, HAllowedRewards = Config.HOPZONE_BOXES_ALLOWED;

public static List<String> HBoxes = new ArrayList<>();

 

public static void LoadHopZone()

{

int delay;

if (Config.ALLOW_TOPZONE_VOTE_REWARD)

delay = 60 * 1000 * Config.HOPZONE_REWARD_CHECK_TIME;

else

delay = 0;

HCurrentVotes = getVotes();

if (HCurrentVotes == -1)

{

if (HCurrentVotes == -1)

_log.warning(VoteRewardHopzone.class.getSimpleName() + ": There was a problem on getting Hopzone server votes.");

return;

}

HLastVotes = HCurrentVotes;

HGoalVotes = HCurrentVotes + Config.HOPZONE_VOTES_DIFFERENCE;

_log.info(VoteRewardHopzone.class.getName() + "Hopzone - Vote reward system initialized.");

ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()

{

@Override

public void run()

{

RunEngine();

}

}, 60 * 1000 * Config.HOPZONE_REWARD_CHECK_TIME + delay, 60 * 1000 * Config.HOPZONE_REWARD_CHECK_TIME);

}

 

static void RunEngine()

{

HCurrentVotes = getVotes();

if (HCurrentVotes == -1)

{

if (HCurrentVotes == -1)

_log.warning(VoteRewardHopzone.class.getSimpleName() + ": There was a problem on getting Hopzone server votes.");

return;

}

if ((HCurrentVotes >= HLastVotes && HCurrentVotes < HGoalVotes) || HCurrentVotes == HLastVotes)

{

for (L2PcInstance player : L2World.getInstance().getAllPlayers().values())

player.sendPacket(new ExShowScreenMessage("HopZone Votes: " + HCurrentVotes, 4000, SMPOS.BOTTOM_RIGHT, true));

Announcements.getInstance().announceToAll("HopZone Votes: " + HCurrentVotes);

Announcements.getInstance().announceToAll("Next Reward in: " + HGoalVotes + " Votes.");

waitSecs(5);

for (L2PcInstance player : L2World.getInstance().getAllPlayers().values())

player.sendPacket(new ExShowScreenMessage("Next Reward in: " + HGoalVotes + " Votes.", 4000, SMPOS.BOTTOM_RIGHT, true));

}

if (HCurrentVotes >= HGoalVotes)

{

RewardPlayers();

for (L2PcInstance player : L2World.getInstance().getAllPlayers().values())

player.sendPacket(new ExShowScreenMessage("HopZone Rewarded!", 4000, SMPOS.BOTTOM_RIGHT, true));

Announcements.getInstance().announceToAll("All players Rewarded!");

HGoalVotes = HCurrentVotes + Config.HOPZONE_VOTES_DIFFERENCE;

Announcements.getInstance().announceToAll("HopZone Votes: " + HCurrentVotes);

Announcements.getInstance().announceToAll("Next Reward in : " + HGoalVotes + " Votes.");

waitSecs(5);

for (L2PcInstance player : L2World.getInstance().getAllPlayers().values())

player.sendPacket(new ExShowScreenMessage("Next Reward in: " + HGoalVotes + " Votes.", 4000, SMPOS.BOTTOM_RIGHT, true));

}

HLastVotes = HCurrentVotes;

}

 

public static int countNumberEqual(String itemToCheck)

{

int count = 0;

for (String i : HBoxes)

if (i.equals(itemToCheck))

count++;

return count;

}

 

public static void RewardPlayers()

{

for (L2PcInstance player : L2World.getInstance().getAllPlayers().values())

{

String temp = player.getClient().getConnection().getInetAddress().getHostAddress();

if (Config.HOPZONE_BOXES_ALLOWED != 0 && HBoxes.contains(temp))

{

int count1 = countNumberEqual(temp);

if (count1 >= Config.HOPZONE_BOXES_ALLOWED)

{

player.sendMessage("You have already been rewarded more than the admin wants!");

}

else

{

for (int i = 0; i < Config.HOPZONE_REWARD.length; i++)

{

player.addItem("Vote reward.", Config.HOPZONE_REWARD[0], Config.HOPZONE_REWARD[1], player, true);

player.sendMessage("You have been rewarded check your inventory");

}

HBoxes.add(temp);

}

}

else

{

HBoxes.add(temp);

for (int i = 0; i < Config.HOPZONE_REWARD.length; i++)

{

player.addItem("Vote reward.", Config.HOPZONE_REWARD[0], Config.HOPZONE_REWARD[1], player, true);

player.sendMessage("You have been rewarded check your inventory");

}

}

}

HBoxes.clear();

 

}

 

public static void waitSecs(int i)

{

try

{

Thread.sleep(i * 1000);

}

catch (InterruptedException ie)

{

if (Config.DEVELOPER)

ie.printStackTrace();

}

}

 

private static int getVotes()

{

try

{

if(!Config.HOPZONE_SERVER_LINK.endsWith(".html"))

Config.HOPZONE_SERVER_LINK+=".html";

 

URLConnection con = new URL(Config.HOPZONE_SERVER_LINK).openConnection();

con.addRequestProperty("User-Agent", "Mozilla/5.0");

//con.addRequestProperty("User-L2Hopzone", "Mozilla/4.76");

BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));

String line;

while ((line = br.readLine()) != null)

{

if (line.contains("Total Votes") || line.contains("no steal make love")||line.contains("no votes here")||line.contains("bang, you don't have votes")|| line.contains("la vita e bella"))

{

int votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));

Gui.hopzone.setText("HopZone Votes: " + votes);

return votes;

}

}

br.close();

}

catch (Exception e)

{

_log.warning(VoteRewardHopzone.class.getSimpleName() + ": Error while getting server vote count.");

}

return -1;

}

}

 

Edited by hunterl2
  • 0
Posted (edited)

You have to change the method getvotes...

All the method.. leave only your config..and getvotes() method name

And use link without .htm

private static int getVotes()
{
 
int votes = -1;
try
{
final URL obj = new URL(Config.HOPZONE_SERVER_LINK);
final HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.addRequestProperty("User-Agent", "L2Hopzone");
            con.setConnectTimeout(5000);
 
final int responseCode = con.getResponseCode();
if (responseCode == 200)
{
try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())))
{
String line;
           while ((line = in.readLine()) != null)
           {
               if (line.contains("Total Votes") || line.contains("rank tooltip") || line.contains("no steal make love") || line.contains("no votes here") || line.contains("bang, you don't have votes") || line.contains("la vita e bella") || line.contains("rank anonymous tooltip"))
               {
                   String inputLine = line.split(">")[2].replace("</span", "");
                   votes = Integer.parseInt(inputLine);
                   break;
}
}
}
}
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("HOPZONE is offline. We will check reward as it will be online again.");
}
return votes;
}
Edited by Reborn12

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
    • Thank you for your feedback. To help me improve the system, please leave your comments or report any bugs. I will try to release weekly updates. 
    • Thank you for your feedback, SkyLord — even the negative kind.   Let me give you some context on who we actually are, since you asked. L2-Scripts has been around for nearly 20 years. Over that time, we've worked with a large number of developers — I've personally seen probably half of every serious (and not-so-serious) developer in this scene. The most significant figure in our studio's history was Bonux. Together with a small team of assistants, he was essentially the backbone of our old codebase, and we were the ones who brought virtually every chronicle to the community — Essence, Classic, Main — all of it came through us.   Back then, we worked at scale. That era is over. Today, L2-Scripts is no longer a studio in the traditional sense. It's more of a developer collective. I work alongside the best developers I've encountered in 20 years. Bonux is still with us on Classic. A new developer named Den has joined — in just 3 years he became one of the top Essence developers in the world. Every one of us works independently, but we're united by long-standing friendships and shared projects.   We no longer chase every chronicle or every client. For the past several years, we've been focused exclusively on specific long-term projects where we're paid a proper salary — and when you focus like that, with 20 years of experience behind you, the quality of what you produce is on a completely different level. Our code is currently running on nearly all top Essence and Classic servers. We're now bringing Main (Last Protocol) up to that same standard.   You mentioned Nexvil. Yes, he worked with us. That was a difficult period — the lead developer at the time was not up to the standard we hold ourselves to. It was a short period, and it's long behind us.   As for the prices — I'd ask you not to judge a product by whether you personally can afford it. That's not a fair measure of value. The people running top-tier servers understand what they're paying for. If our pricing doesn't fit your budget, that's completely fine — but downvoting a service simply because it feels expensive to you doesn't reflect well, and it certainly doesn't make the product worse.   A special thank you to eMommy and Zenith for the honest and fair words — it genuinely means a lot. It's good to know there are people in this community who judge things as they are.
    • Just because someone does professional sales doesn’t mean everything is overpriced. If the products he provides are stable and good quality, then I see nothing wrong with it, and those prices aren’t even bad. Remember, we’re living in 2026, not 10 years in the past. Your mindset is probably stuck on buying the cheapest products because maybe you can’t afford better ones. And of course, there’s always someone who likes blaming others. I think you should mind your own business instead of blaming someone for how they run theirs. If you really think his prices are too expensive, then do better than him.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..