Jump to content
  • 0

[Help] Biohazard Event Freya (ZombieFullHp)


Question

Posted

Hi I have a question because I can not carry this code

 

I changed to test the transformation "Zombie" and adds custom skill to increase the HP of the transformation.

but there is a problem the character is transformed increases hp example: 100k hp but is low for example if the character has 5000 hp and transform instantly adds hp 100000 of the character continues with 5000 hp and lacks 95000 hp regenerate other to have full hp.

my question is whether it is possible and how to fix that transform the character to heal all the hp.

 

I leave here I think my code in place that highlight have to modify the code and I think I needed some import.

 

Greetings.

 

Index: Biohazard.java

/*
* 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 com.l2jserver.gameserver.model.entity;

import java.util.Calendar;
import java.util.logging.Logger;

import javolution.util.FastSet;
import com.l2jserver.gameserver.Announcements;
import com.l2jserver.gameserver.instancemanager.TransformationManager;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.olympiad.Olympiad;
import com.l2jserver.gameserver.network.serverpackets.PlaySound;
import com.l2jserver.gameserver.util.Broadcast;
import com.l2jserver.util.Rnd;

/**
* @author Laikeriz update Pixi
*/
public class Biohazard
{
enum EventState
{
	INACTIVE,
	INACTIVATING,
	REGISTERING,
	STARTED,
	REWARDING
}

   private final static Logger _log = Logger.getLogger(Biohazard.class.getName());
private static EventState _state = EventState.INACTIVE;

public static FastSet<L2PcInstance> _participants = new FastSet<L2PcInstance>();
public static FastSet<L2PcInstance> _infected = new FastSet<L2PcInstance>();
public static FastSet<L2PcInstance> _notInfected = new FastSet<L2PcInstance>();

public static boolean isStarted()
{
	if (_state == EventState.STARTED)
		return true;
	return false;
}

public static boolean isRegistering()
{
	if (_state == EventState.REGISTERING)
		return true;
	return false;
}

public static void startRegistering()
{
	if (_state == EventState.REGISTERING || _state == EventState.STARTED)
		return;
	Announcements.getInstance().announceToAll("Biohazard: Registration is open.");
	Announcements.getInstance().announceToAll("Biohazard: Type \".bhreg\" to register to event.");
	Announcements.getInstance().announceToAll("Biohazard: Type \".bhunreg\" to unregister from event.");
	_state = EventState.REGISTERING;
	int step = 0;
	int after = 0;
	for (int i = 40; i > 0; i-=10)
	{
		switch(i)
		{
			case 40:
				step = 5;
				after = 15;
				break;
			case 30:
				step = 5;
				after = 10;
				break;
			case 20:
				step = 4;
				after = 5;
				break;
			case 10:
				step = 1;
				after = 1;
				break;
		}
		if (_state == EventState.INACTIVE)
			return;
		Announcements.getInstance().announceToAll("Biohazard: Registration will be closed in "  after  " minute(s).");
		try{Thread.sleep(step*60000);}catch (Exception e){}
	}
	//sound = "";
	try{Thread.sleep(60000);}catch (Exception e){}
	if (_state == EventState.INACTIVE)
		return;
	if (_participants.size() >= 2)
	{
		Announcements.getInstance().announceToAll("Biohazard: Teleporting players in 20 seconds.");
		try{Thread.sleep(20000);}catch (Exception e){}
		_state = EventState.STARTED;
		startEventAndTelePl();
	}
	else
		Announcements.getInstance().announceToAll("Biohazard: Event aborted due to lack of participants.");
}

public static void addParticipant(L2PcInstance player)
{
	if (TvTEvent.isPlayerParticipant(player.getObjectId()))
	{
		player.sendMessage("You cannot register because of registration in another event");
		return;
	}
	if (_state == EventState.REGISTERING && !_participants.contains(player))
	{
		_participants.add(player);
		player.sendMessage("You have successfully registered to this event");
	}
	else
		player.sendMessage("You are already registered or it's not registration time.");
}

public static void removeParticipant(L2PcInstance player)
{
	if (_state == EventState.REGISTERING)
	{
		if (_participants.contains(player))
			_participants.remove(player);
		else
			player.sendMessage("You aren't registered in this event.");
		player.setIsInBiohazard(false);
	}
	else
		player.sendMessage("It's not registration time.");
}
public static void startEventAndTelePl()
{
	if (_state == EventState.INACTIVE)
		return;
	synchronized(_participants)
	{
		for (L2PcInstance pl : _participants)
			if (pl.isOnlineInt() == 1)
			{
				_notInfected.add(pl);
				pl._oldX = pl.getX();
				pl._oldY = pl.getY();
				pl._oldZ = pl.getZ();
				pl.teleToLocation(-17507,143206,-3911);
				pl.setTeam(0);
				pl.setIsInBiohazard(true);
				pl.untransform();
			}
	}
Announcements.getInstance().announceToAll("Biohazard: Teleportion done.");
Announcements.getInstance().announceToAll("Biohazard: One player was infected by untreatable virus!");
Announcements.getInstance().announceToAll("Biohazard: In about one minute virus will take over his body and he will become zombie!");
try{Thread.sleep(60000);}catch (Exception e){}
int num = Math.round(Rnd.get(_notInfected.size()-1));
L2PcInstance infectFirst = ((L2PcInstance[])getAllNotInfected())[num];
infectPlayer(infectFirst);
Announcements.getInstance().announceToAll("Biohazard: Virus took over "  infectFirst.getName()  " body and he wants to infect everybody else!");
}
[color=red]//I think this is the part of code that needs to be modify[/color]
public static void infectPlayer(L2PcInstance zombie)
{
	if (_state == EventState.INACTIVE)
		return;
	if (zombie.isTransformed())
		zombie.untransform();
	zombie.setIsZombie(true);
	_notInfected.remove(zombie);
	_infected.add(zombie);
	TransformationManager.getInstance().transformPlayer(303, zombie);
	if (_notInfected.size() == 0)
		zombiesWin();
}

public static void onLogout(L2PcInstance playerInstance)
{
	if (_state == EventState.REGISTERING)
		removeParticipant(playerInstance);
	else if (_state == EventState.STARTED)
	{
		playerInstance.setXYZ(playerInstance._oldX,playerInstance._oldY,playerInstance._oldZ);
		if (!playerInstance.isZombie())
			_notInfected.remove(playerInstance);
		else if (playerInstance.isZombie())
			_infected.remove(playerInstance);
		if (_notInfected.size() == 0)
			zombiesWin();
		if (_infected.size() == 0)
			playersWin();
	}
}

public static void zombiesWin()
{
	if (_state == EventState.INACTIVE)
		return;
	Announcements.getInstance().announceToAll("Biohazard: Zombies won.");
	Announcements.getInstance().announceToAll("Biohazard: Rewarding and teleporting participants back to village in 20 seconds.");
	_state = EventState.REWARDING;
	try{Thread.sleep(20000);}catch (Exception e){}
	synchronized(_infected)
	{
		for (L2PcInstance pl : _infected)
			if (pl.isOnlineInt() == 1)
				pl.addItem("Biohazard", 6673, 1, pl, true);
	}
	synchronized(_participants)
	{
		for (L2PcInstance pl : _participants)
			if (pl.isOnlineInt() == 1)
			{
				pl.teleToLocation(pl._oldX,pl._oldY,pl._oldZ);
				pl.setIsInBiohazard(false);
				if (pl.isTransformed())
					try{Thread.sleep(5000);}catch (Exception e){}
					pl.untransform();
			}
	}
	_participants.clear();
	_infected.clear();
	_notInfected.clear();
	_state = EventState.INACTIVE;
}

public static void playersWin()
{
	Announcements.getInstance().announceToAll("Biohazard: Players won.");
	Announcements.getInstance().announceToAll("Biohazard: Rewarding and teleporting participants back to village in 20 seconds.");
	_state = EventState.REWARDING;
	try{Thread.sleep(20000);}catch (Exception e){}
	synchronized(_notInfected)
	{
		for (L2PcInstance pl : _notInfected)
			if (pl.isOnlineInt() == 1)
			{
				pl.addItem("Biohazard", 6673, 1, pl, true);
			}
	}
	synchronized(_participants)
	{
		for (L2PcInstance pl : _participants)
			if (pl.isOnlineInt() == 1)
			{
				pl.teleToLocation(pl._oldX,pl._oldY,pl._oldZ);
				pl.setIsInBiohazard(false);
//					if (pl.inWorld() == 1)
//						pl.setTeam(pl.getFactionId());
				if (pl.isTransformed())
					try{Thread.sleep(5000);}catch (Exception e){}
					pl.untransform();
			}
	}
	_participants.clear();
	_infected.clear();
	_notInfected.clear();
	_state = EventState.INACTIVE;
}

public static L2PcInstance[] getAllNotInfected()
{
	synchronized(_notInfected)
	{
		return _notInfected.toArray(new L2PcInstance[_notInfected.size()]);
	}
}

public static void abortEvent()
{
	_state = EventState.INACTIVE;
	_participants.clear();
	_notInfected.clear();
	_infected.clear();
	Announcements.getInstance().announceToAll("Biohazard: Event aborted.");
}
}
\ No newline at end of file

 

//I think this is the part of code that needs to be modify

public static void infectPlayer(L2PcInstance zombie)

{

if (_state == EventState.INACTIVE)

return;

if (zombie.isTransformed())

zombie.untransform();

zombie.setIsZombie(true);

_notInfected.remove(zombie);

_infected.add(zombie);

TransformationManager.getInstance().transformPlayer(303, zombie);

if (_notInfected.size() == 0)

zombiesWin();

}

 

Topic:

http://www.maxcheaters.com/forum/index.php?topic=193636.0

6 answers to this question

Recommended Posts

  • 0
Posted

I can hardly understand your question.

 

You want just to set Zoombie HP/MP/CP stats to be full?

 

If yes, its really simple, sample:

 

private void setHpMpCpFull(L2PcInstance player)
{
     player.setCurrentHp(player.getMaxHp());
     player.setCurrentMp(player.getMaxMp();
     player.setCurrentCp(player.getMacCp();

}

 

Correct me if I was wrong.

 

 

 

 

  • 0
Posted

matim thanks for your answer, but I will not explain me well.

 

need to regenerate full hp / cp / mp the first infected player.

 

if you know how to do explain to me where you made the change in the code

  • 0
Posted

i think that is what you wanna have :

 

public static void infectPlayer(L2PcInstance zombie)

  {

     if (_state == EventState.INACTIVE)

        return;

     if (zombie.isTransformed())

        zombie.untransform();

     zombie.setIsZombie(true);

     _notInfected.remove(zombie);

     _infected.add(zombie);

     TransformationManager.getInstance().transformPlayer(303, zombie);

zombie.setCurrentHp(zombie.getMaxHp());

zombie.setCurrentMp(zombie.getMaxMp());

zombie.setCurrentCp(zombie.getMaxCp());

     if (_notInfected.size() == 0)

        zombiesWin();

  }

 

the green 3 lines you need pls replay if it works.

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