Jump to content

Recommended Posts

Posted

I have removed the lyrics but still gives the same error, only instead of saying (For imput string: "x") I get (For imput string: ""), also try putting coordinates and I get the same.

 

anyone know where to locate the source to remove the option of pack?

 

Problem solved. :D

  • 1 month later...
  • 2 weeks later...
Posted

NPC don't work for me i can't see their menu... e.x. i can't make buff.... something wrong with multisel.... how i can fix that?

Posted

How to remove this fvcking block Zealt & Frenzy in olympiad? :P

Change Project many reasons to do it ;/ also baggoc its baned as i know so he cant Help you

 

one Mode Lock to avoid more spam

  • 2 months later...
Posted

How to remove this fvcking block Zealt & Frenzy in olympiad? :P

 

Just found out yesterday how  fix this freaking block

 

Here's the fixed file 

Credits goes to Sweets for telling me how to fix it

Copy this in to AbstractOlympiadGame.java find it in L2J-Server\java\com\l2jserver\gameserver\model\olympiad

/*
* 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.olympiad;

import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

import com.l2jserver.Config;
import com.l2jserver.gameserver.ai.CtrlIntention;
import com.l2jserver.gameserver.datatables.HeroSkillTable;
import com.l2jserver.gameserver.instancemanager.AntiFeedManager;
import com.l2jserver.gameserver.instancemanager.CastleManager;
import com.l2jserver.gameserver.instancemanager.FortManager;
import com.l2jserver.gameserver.model.L2ItemInstance;
import com.l2jserver.gameserver.model.L2Party;
import com.l2jserver.gameserver.model.L2Skill;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Summon;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.actor.instance.L2PetInstance;
import com.l2jserver.gameserver.model.entity.TvTEvent;
import com.l2jserver.gameserver.model.zone.type.L2OlympiadStadiumZone;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.ExOlympiadMode;
import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate;
import com.l2jserver.gameserver.network.serverpackets.L2GameServerPacket;
import com.l2jserver.gameserver.network.serverpackets.SkillCoolTime;
import com.l2jserver.gameserver.network.serverpackets.SystemMessage;

/**
* 
* @author godson, GodKratos, Pere, DS
*
*/
public abstract class AbstractOlympiadGame
{
protected static final Logger _log = Logger.getLogger(AbstractOlympiadGame.class.getName());
protected static final Logger _logResults = Logger.getLogger("olympiad");

protected static final String POINTS = "olympiad_points";
protected static final String COMP_DONE = "competitions_done";
protected static final String COMP_WON = "competitions_won";
protected static final String COMP_LOST = "competitions_lost";
protected static final String COMP_DRAWN = "competitions_drawn";

protected long _startTime = 0;
protected boolean _aborted = false;
protected final int _stadiumID;

protected AbstractOlympiadGame(int id)
{
	_stadiumID = id;
}

public final boolean isAborted()
{
	return _aborted;
}

public final int getStadiumId()
{
	return _stadiumID;
}

protected boolean makeCompetitionStart()
{
	_startTime = System.currentTimeMillis();
	return !_aborted;
}

protected final void addPointsToParticipant(Participant par, int points)
{
	par.updateStat(POINTS, points);
	final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_HAS_GAINED_S2_OLYMPIAD_POINTS);
	sm.addString(par.name);
	sm.addNumber(points);
	broadcastPacket(sm);
}

protected final void removePointsFromParticipant(Participant par, int points)
{
	par.updateStat(POINTS, -points);
	final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_HAS_LOST_S2_OLYMPIAD_POINTS);
	sm.addString(par.name);
	sm.addNumber(points);
	broadcastPacket(sm);
}

/**
 * Function return null if player passed all checks
 * or SystemMessage with reason for broadcast to opponent(s).
 * @param player
 * @return
 */
protected static SystemMessage checkDefaulted(L2PcInstance player)
{
	if (player == null || !player.isOnline())
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_ENDS_THE_GAME);

	if (player.getClient() == null || player.getClient().isDetached())
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_ENDS_THE_GAME);

	// safety precautions
	if (player.inObserverMode() || TvTEvent.isPlayerParticipant(player.getObjectId()))
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME);

	SystemMessage sm;
	if (player.isDead())
	{
		sm = SystemMessage.getSystemMessage(SystemMessageId.C1_CANNOT_PARTICIPATE_OLYMPIAD_WHILE_DEAD);
		sm.addPcName(player);
		player.sendPacket(sm);
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME);
	}
	if (player.isSubClassActive())
	{
		sm = SystemMessage.getSystemMessage(SystemMessageId.C1_CANNOT_PARTICIPATE_IN_OLYMPIAD_WHILE_CHANGED_TO_SUB_CLASS);
		sm.addPcName(player);
		player.sendPacket(sm);
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME);
	}
	if (player.isCursedWeaponEquipped())
	{
		sm = SystemMessage.getSystemMessage(SystemMessageId.C1_CANNOT_JOIN_OLYMPIAD_POSSESSING_S2);
		sm.addPcName(player);
		sm.addItemName(player.getCursedWeaponEquippedId());
		player.sendPacket(sm);
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME);
	}
	if (!player.isInventoryUnder80(true))
	{
		sm = SystemMessage.getSystemMessage(SystemMessageId.C1_CANNOT_PARTICIPATE_IN_OLYMPIAD_INVENTORY_SLOT_EXCEEDS_80_PERCENT);
		sm.addPcName(player);
		player.sendPacket(sm);
		return SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME);
	}

	return null;
}

protected static final boolean portPlayerToArena(Participant par, Location loc, int id)
{
	final L2PcInstance player = par.player;
	if (player == null || !player.isOnline())
		return false;

	try
	{
		player.setLastCords(player.getX(), player.getY(), player.getZ());
		if (player.isSitting())
			player.standUp();
		player.setTarget(null);

		player.setOlympiadGameId(id);
		player.setIsInOlympiadMode(true);
		player.setIsOlympiadStart(false);
		player.setOlympiadSide(par.side);
		player.olyBuff = 5;
		player.setInstanceId(0);
		player.teleToLocation(loc, false);
		player.sendPacket(new ExOlympiadMode(2));
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, e.getMessage(), e);
		return false;
	}
	return true;
}

protected static final void removals(L2PcInstance player, boolean removeParty)
{
	try
	{
		if (player == null)
			return;

		// Remove Buffs
		player.stopAllEffectsExceptThoseThatLastThroughDeath();

		// Abort casting if player casting
		player.abortAttack();
		player.abortCast();

		// Force the character to be visible
		player.getAppearance().setVisible();

		// Remove Hero Skills
		if (player.isHero())
		{
			for (L2Skill skill : HeroSkillTable.getHeroSkills())
				player.removeSkill(skill, false);
		}


		// Heal Player fully
		player.setCurrentCp(player.getMaxCp());
		player.setCurrentHp(player.getMaxHp());
		player.setCurrentMp(player.getMaxMp());

		// Remove Summon's Buffs
		final L2Summon summon = player.getPet();
		if (summon != null)
		{
			summon.stopAllEffectsExceptThoseThatLastThroughDeath();
			summon.abortAttack();
			summon.abortCast();

			if (summon instanceof L2PetInstance)
				summon.unSummon(player);
		}

		// stop any cubic that has been given by other player.
		player.stopCubicsByOthers();

		// Remove player from his party
		if (removeParty)
		{
			final L2Party party = player.getParty();
			if (party != null)
				party.removePartyMember(player);
		}
		// Remove Agathion
		if (player.getAgathionId() > 0)
		{
			player.setAgathionId(0);
			player.broadcastUserInfo();
		}

		player.checkItemRestriction();

		// Remove shot automation
		player.disableAutoShotsAll();

		// Discharge any active shots
		if (player.getActiveWeaponInstance() != null)
		{
			player.getActiveWeaponInstance().setChargedSoulshot(L2ItemInstance.CHARGED_NONE);
			player.getActiveWeaponInstance().setChargedSpiritshot(L2ItemInstance.CHARGED_NONE);
		}

		// enable skills with cool time <= 15 minutes
		for (L2Skill skill : player.getAllSkills())
		{
			if (skill.getReuseDelay() <= 900000)
				player.enableSkill(skill);
		}

		player.sendSkillList();
		player.sendPacket(new SkillCoolTime(player));
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, e.getMessage(), e);
	}
}

protected static final void cleanEffects(L2PcInstance player)
{
	try
	{
		// prevent players kill each other
		player.setIsOlympiadStart(false);
		player.setTarget(null);
		player.abortAttack();
		player.abortCast();
		player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);

		if (player.isDead())
			player.setIsDead(false);

		player.stopAllEffectsExceptThoseThatLastThroughDeath();
		player.clearSouls();
		player.clearCharges();
		if (player.getAgathionId() > 0)
			player.setAgathionId(0);
		final L2Summon summon = player.getPet();
		if (summon != null && !summon.isDead())
		{
			summon.setTarget(null);
			summon.abortAttack();
			summon.abortCast();
			summon.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
			summon.stopAllEffectsExceptThoseThatLastThroughDeath();
		}

		player.setCurrentCp(player.getMaxCp());
		player.setCurrentHp(player.getMaxHp());
		player.setCurrentMp(player.getMaxMp());
		player.getStatus().startHpMpRegeneration();
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, e.getMessage(), e);
	}
}

protected static final void playerStatusBack(L2PcInstance player)
{
	try
	{
		if(player.isTransformed())
			player.untransform();

		player.setIsInOlympiadMode(false);
		player.setIsOlympiadStart(false);
		player.setOlympiadSide(-1);
		player.setOlympiadGameId(-1);
		player.sendPacket(new ExOlympiadMode(0));

		// Add Clan Skills
		if (player.getClan() != null)
		{
			player.getClan().addSkillEffects(player);
			if (player.getClan().getHasCastle() > 0)
				CastleManager.getInstance().getCastleByOwner(player.getClan()).giveResidentialSkills(player);
			if (player.getClan().getHasFort() > 0)
				FortManager.getInstance().getFortByOwner(player.getClan()).giveResidentialSkills(player);
		}

		// Add Hero Skills
		if (player.isHero())
		{
			for (L2Skill skill : HeroSkillTable.getHeroSkills())
				player.addSkill(skill, false);
		}
		player.sendSkillList();

		// heal again after adding clan skills
		player.setCurrentCp(player.getMaxCp());
		player.setCurrentHp(player.getMaxHp());
		player.setCurrentMp(player.getMaxMp());
		player.getStatus().startHpMpRegeneration();

		if (Config.L2JMOD_DUALBOX_CHECK_MAX_OLYMPIAD_PARTICIPANTS_PER_IP > 0)
			AntiFeedManager.getInstance().removePlayer(AntiFeedManager.OLYMPIAD_ID, player);
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, "portPlayersToArena()", e);
	}
}

protected static final void portPlayerBack(L2PcInstance player)
{
	if (player == null)
		return;

	if (player.getLastX() == 0 && player.getLastY() == 0)
		return;

	player.teleToLocation(player.getLastX(), player.getLastY(), player.getLastZ());
	player.setLastCords(0, 0, 0);
}

public static final void rewardParticipant(L2PcInstance player, int[][] reward)
{
	if (player == null || !player.isOnline() || reward == null)
		return;

	try
	{
		SystemMessage sm;
		L2ItemInstance item;
		final InventoryUpdate iu = new InventoryUpdate();
		for (int[] it : reward)
		{
			if (it == null || it.length != 2)
				continue;

			item = player.getInventory().addItem("Olympiad", it[0], it[1], player, null);
			if (item == null)
				continue;

			iu.addModifiedItem(item);
			sm = SystemMessage.getSystemMessage(SystemMessageId.EARNED_S2_S1_S);
			sm.addItemName(it[0]);
			sm.addNumber(it[1]);
			player.sendPacket(sm);
		}
		player.sendPacket(iu);			
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, e.getMessage(), e);
	}
}

public abstract CompetitionType getType();

public abstract String[] getPlayerNames();

public abstract boolean containsParticipant(int playerId);

public abstract void sendOlympiadInfo(L2Character player);

public abstract void broadcastOlympiadInfo(L2OlympiadStadiumZone stadium);

protected abstract void broadcastPacket(L2GameServerPacket packet);

protected abstract boolean needBuffers();

protected abstract boolean checkDefaulted();

protected abstract void removals();

protected abstract boolean portPlayersToArena(List<Location> spawns);

protected abstract void cleanEffects();

protected abstract void portPlayersBack();

protected abstract void playersStatusBack();

protected abstract void clearPlayers();

protected abstract void handleDisconnect(L2PcInstance player);

protected abstract void resetDamage();

protected abstract void addDamage(L2PcInstance player, int damage);

protected abstract boolean checkBattleStatus();

protected abstract boolean haveWinner();

protected abstract void validateWinner(L2OlympiadStadiumZone stadium);

protected abstract int getDivider();

protected abstract int[][] getReward();
}

Guest
This topic is now closed to further replies.



  • Posts

    • Signature x1 :   Elemental Master 76lvl Subclass : Swordsinger 66Ivl   +Email goes with account.     Im selling this account because lack of time to play.I did zero trades on this server so account will be clean.   Price 1.3k €     I will accept payment on : *Skrill *Binance   *We can use middleman service on buyer ask   My history sells from other servers : https://maxcheaters.com/topic/247034-💰-elmorlab-x5-aden-💰-adventurer-78-nobless-bonus/
    • Hello! Are you sure you want to make it specifically as a cloak?
    • This back accessory is converted from a cloak, but unfortunately, it's only available for human male warriors. Other races don't have the animation rigged. I hope to improve this back accessory. After importing the animation and skeleton using Unreal Engine 2 Runtime, I get an error when saving it back to a .UKX file. Could you please advise me on how to add other races without encountering errors? Thank you very much!   https://www.mediafire.com/file/g52dgvbp0l28sdo/MFighter_Fuckl2jangel.ukx/file These are the effects of back accessories
    • Welcome to L2EpicFail Server developed by gamers for gamers!  OBT - 9th November 2025 at 18:00 GMT+0 GRAND OPENING - 14th November 2025 at 18:00 GMT+0 Website : https://l2epic.fail/ Discord : https://discord.gg/6hwhrkrHBG     Server Features and Rates Xp – 15x Sp – 9x Adena – 6x Drop – 3x Spoil - 3x Seal Stones drop -  3x   Epic Raid Boss drop - 1x Regular RBs - EXP 5x, SP 5x, drop 4x   Quest drop - 1x (some quests customized to 3x) Quest reward - 1x, Adena 3x, EXP 3x, SP 3x     Premium Account Xp +20% Sp +20% Adena +20% Drop +20% Spoil +20% Quest reward +20%   get by vote or donate World chat 20 times/day use ">" in chat. Buff Book outside of town. Applies to all accounts.     Special Features Classic interface ActiveAnticheat Vote System Missions Attendance check And more in information below     Noblesse There are 3 ways how to make noblesse 1 - Retail Quest with killing barakiel 2 - Modifed Quest, choose killing mobs for 100 items instead of barakiel 3 - Can be bought for Epic Coins     Raid Rank Killing regular Raids gives points according to the level of the RB to the clan of the player who killed the boss. At the end of every month, there will be rewards for top clans. For more info, follow our Discord.   monthly period killing RB = points to clan according to RB level rewards up to Valakas Necklace (not the first month) current statistics can be checked online     Epic Bosses & Respawns   Queen Ant 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - C -grade, Boss level 80 HP boosted drop chance 40% guards, nurses lvl 40   Orfen 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - B -grade, Boss level 80 HP boosted drop chance 40% earring gives +1 WIT, +1 INT   Core 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - B -grade, Boss level 80 HP boosted drop chance 40% ring gives +1 STR, +1 DEX   Zaken 44 - 54 hours respawn window 1 hour always displayed in .epic auto PvP zone  Max grade allowed - A -grade, Boss level 80 doors opened only 5 mins HP boosted   Baium Every Sunday 20:30 - 21:30 window 1 hour always displayed in .epic auto PvP zone (13 - 14th ToI level) regular HP   Frintezza Every Monday, Wednesday, Friday 20:00 - 21:00 window 1 hour always displayed in .epic auto PvP zone (all IT entrance) max 5 parties to entry max 500 range from NPC   Antharas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (bridge to heart)   Valakas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (Klein to heart)   every Epic RB drops Epic Medals equal to RB level x 10     Regular Bosses all regular RBs HP boosted M. def boosted a bit to give advantage to fighters all regular RBs respawn 24 - 30 hours every RB drops Epic Medals equal to RB level     Added Skills Mass Sweep - All Bounty Hunters 40+ Block Buff - All Characters, toggle Escape: 20 seconds - All Characters, no more SoEs   Skills autolearn. Losing skills after 16 levels of delevel. Max buffs 24 + 4 with books (no autolearn)     Augments NoGrade - 4% chance MidGrade - 5% chance HighGrade - 7% chance TopGrade - 6% chance   GM shop weapon/armor/jwl (max C grade) shots/spiritshots (max C grade) mana potions (500 MP, 5s)     NPC buffer all buffs, songs, dances including 3rd prof + resists 1 hour duration all chars Buff Book in inventory     Global Gatekeeper all towns including cata/necro ToI 3/5/7/10th     Olympiad Thursday to Saturday 18:00 - 23:50 UTC+0 period 7 days no class participants min 5 base class participants min 10 max enchant +6     Class Transfer 1st class 50k adena 2nd class 500k adena 3rd class 20kk adena + 700 Halisha marks (tradeable)     Noblesse Quest Quest retail like. Moonstone Shards, Demons Blood etc. quest drop boosted     Subclass Quest To get the quest, you have to be 75+ on your main character (start Reorin in Giran) Bring item from Cabrio chest Bring items from Hallate, Kernon and Golkonda chests Bring this back to Reorin Bring 984 B-grade crystals and top B weapon to Reorin Get low A-grade weapon as reward Done , you can take subclass (up to 5) from any Master in town     Clans all clan members get clan skills (no need for titles) max clan slots 65, max ppl in PvP zone 63 leave/dismiss penalty 0 hours max clans in ally 3     Others   max 3 windows per HWID (only one in PvP zone) protection after teleport for 20 seconds arrows and spellbooks drop turned off weight limit 10x, stackable enchants and LS champions blue (5x HP) min level for trade = 40, chat = 20 BoM/MoM spawned in towns
    • Hi, thank you for your help but still the same , try treadpool as well and try put buffs in database for it work in background but I still with the same problems. what confused me is in npc it works fine but in scheme.
  • 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