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

    • what pack you use  send me on discord for it
    • package custom.events.RandomZoneEvent; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.ScheduledFuture; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.l2jmobius.commons.threads.ThreadPool; import org.l2jmobius.commons.time.SchedulingPattern; import org.l2jmobius.commons.time.TimeUtil; import org.l2jmobius.commons.util.IXmlReader; import org.l2jmobius.gameserver.managers.ZoneManager; import org.l2jmobius.gameserver.model.StatSet; import org.l2jmobius.gameserver.model.actor.Creature; import org.l2jmobius.gameserver.model.actor.Npc; import org.l2jmobius.gameserver.model.actor.Player; import org.l2jmobius.gameserver.model.quest.Event; import org.l2jmobius.gameserver.model.zone.ZoneId; import org.l2jmobius.gameserver.model.zone.ZoneType; import org.l2jmobius.gameserver.model.zone.type.RandomZone; import org.l2jmobius.gameserver.util.Broadcast; /** * Random Zone Event - Activates one random PvP zone temporarily. No modifica la clase de la zona: usa flags PvP en runtime. * @author Juan */ public class RandomZoneEvent extends Event { private static final String CONFIG_FILE = "data/scripts/custom/events/RandomZoneEvent/config.xml"; private static int EVENT_DURATION_MINUTES = 15; private static boolean _isActive = false; private ScheduledFuture<?> _eventTask = null; private final List<ZoneType> _availableZones = new ArrayList<>(); private ZoneType _activeZone = null; public RandomZoneEvent() { loadConfig(); loadZones(); registerZoneListeners(); } /** * Registra listeners a TODAS LAS ZONAS random */ private void registerZoneListeners() { for (ZoneType zone : _availableZones) { addEnterZoneId(zone.getId()); addExitZoneId(zone.getId()); LOGGER.info("[RandomZoneEvent] Registered listener for zone: " + zone.getName()); } } private void loadConfig() { new IXmlReader() { @Override public void load() { parseDatapackFile(CONFIG_FILE); } @Override public void parseDocument(Document doc, File file) { forEach(doc, "event", eventNode -> { final StatSet att = new StatSet(parseAttributes(eventNode)); final String name = att.getString("name"); for (Node node = eventNode.getFirstChild(); node != null; node = node.getNextSibling()) { if ("schedule".equals(node.getNodeName())) { final StatSet attributes = new StatSet(parseAttributes(node)); final String pattern = attributes.getString("pattern"); final SchedulingPattern schedulingPattern = new SchedulingPattern(pattern); final StatSet params = new StatSet(); params.set("Name", name); params.set("SchedulingPattern", pattern); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer("Schedule_" + name, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Event " + name + " scheduled at " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } }); } }.load(); } private void loadZones() { for (ZoneType zone : ZoneManager.getInstance().getAllZones(RandomZone.class)) { if ((zone.getName() != null) && zone.getName().toLowerCase().startsWith("random_zone")) { _availableZones.add(zone); LOGGER.info("[RandomZoneEvent] Loaded zone: " + zone.getName() + " (id=" + zone.getId() + ")"); } } LOGGER.info("[RandomZoneEvent] Total random zones loaded: " + _availableZones.size()); } @Override public void onTimerEvent(String event, StatSet params, Npc npc, Player player) { if (event.startsWith("Schedule_")) { eventStart(null); final SchedulingPattern schedulingPattern = new SchedulingPattern(params.getString("SchedulingPattern")); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer(event, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Rescheduled for " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } @Override public boolean eventStart(Player eventMaker) { if (_isActive) { if (eventMaker != null) { eventMaker.sendMessage("RandomZoneEvent already active."); } return false; } if (_availableZones.isEmpty()) { Broadcast.toAllOnlinePlayers("[RandomZoneEvent] No zones configured."); return false; } _isActive = true; Broadcast.toAllOnlinePlayers("⚔️ Random Zone Event has started!"); _eventTask = ThreadPool.schedule(this::activateRandomZone, 5_000); return true; } private void activateRandomZone() { _activeZone = _availableZones.get(new Random().nextInt(_availableZones.size())); _activeZone.setEnabled(true); Broadcast.toAllOnlinePlayers("🔥 Random Zone Event: " + _activeZone.getName() + " is now PvP for " + EVENT_DURATION_MINUTES + " minutes!"); _eventTask = ThreadPool.schedule(this::eventStop, EVENT_DURATION_MINUTES * 60 * 1000L); } @Override public boolean eventStop() { if (!_isActive) { return false; } _isActive = false; if (_eventTask != null) { _eventTask.cancel(true); _eventTask = null; } if (_activeZone != null) { _activeZone.setEnabled(false); Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended. " + _activeZone.getName() + " is back to normal."); _activeZone = null; } else { Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended."); } return true; } @Override public void onEnterZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, true); if (creature.isPlayer()) { creature.sendMessage("Esta zona está en modo PvP temporalmente."); } } } @Override public void onExitZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, false); if (creature.isPlayer()) { creature.sendMessage("Abandonaste la zona PvP temporal."); } } } @Override public boolean eventBypass(Player player, String bypass) { return true; } @Override public String onEvent(String event, Npc npc, Player player) { return super.onEvent(event, npc, player); } @Override public String onFirstTalk(Npc npc, Player player) { return null; } public static void main(String[] args) { new RandomZoneEvent(); } } i have this but its not working
    • ZonePvPSpawnBossRadio=0 ZonePvPSpawnBossBarakiel=0 at the Customs.ini in L2Server folder. Im prety sure this is it because i had the same problem with you in cruma 1 floor for example and i couldn't fix it but i fixed it finally by changing these 2 lines
    • Siege Reward Start PM Msg Rework Config root BossDieAnnounce and BossDieSound in the L24Team.properties and Config.java files for global raid boss death notifications and sounds. Adds a new reward_list table to the DB.sql file to track castle rewards. Improves character creation logic for thread safety and validation. Adds extensive state checks to the RequestEnchantItem method to prevent enchantments during inappropriate player states. Fixed auto-attack animation bug (there was no attack animation, only damage animation) Clean Code Other fixes I forgot to list! Java 14 Fixed issue where deleting a character would prevent it from leaving the screen or being removed, or even after a delete CD (it would only exit when re-logging in or creating a new character). Added Premium System from the other C2 project (Needs testing and improvement). Added the "Improved" Community Board (incomplete).
  • 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