Jump to content
  • 0

Fastlist -> Arraylist Acis


Question

Posted (edited)

http://imgur.com/a/1oYgm

protected int getWinnerTeam()
	{
		ArrayList<EventTeam> t = new ArrayList<>();
		
		for (EventTeam team : teams.values())
		{
			if (t.size() == 0)
			{
				t.add(team);
				continue;
			}
			
			if (team.getScore() > t.getFirst().getScore())
			{
				t.clear();
				t.add(team);
				continue;
			}
			
			if (team.getScore() == t.getFirst().getScore())
				t.add(team);
		}
		
		if (t.size() > 1)
			return 0;
		
		return t.getFirst().getId();
	}

getFirst () must be replaced by what?

Edited by L2shaken

Recommended Posts

  • 0
Posted
protected int getWinnerTeam()
{
	final EventTeam team = teams.values().stream().sorted(Comparator.comparing(EventTeam::getScore).reversed()).findFirst().orElse(null);
	return team == null ? 0 : team.getId();
}

Exact same broken getWinnerTeam logic to java.

 

 

So much overhead for few calculations

  • 0
Posted (edited)

So much overhead for few calculations

You use reconnect system for your events?

public boolean onReconnect(final L2PcInstance player)

Btw what "list" you use to store id of the disconnected player and the set that you store teamId, Kills e.t.c ?

 

treemap ? 

Edited by AccessDenied
  • 0
Posted

You use reconnect system for your events?

public boolean onReconnect(final L2PcInstance player)

Btw what "list" you use to store id of the disconnected player and the set that you store teamId, Kills e.t.c ?

 

treemap ? 

 

None, my custom instance world manages it 

	@Override
	public boolean onReconnect(final L2PcInstance player)
	{
		final PlayerDriver playerDriver = getPlayerDriver(player);
		if (playerDriver == null || playerDriver.getEventAFKSeconds() > 200)
		{
			player.sendMessage("You have been kicked from this event for being inactive for more than 3 minutes.");
			IWorld.resetKnown(player);
			return false;
		}
		playerInject(player);
		return true;
	}
  • 0
Posted

 

None, my custom instance world manages it 

	@Override
	public boolean onReconnect(final L2PcInstance player)
	{
		final PlayerDriver playerDriver = getPlayerDriver(player);
		if (playerDriver == null || playerDriver.getEventAFKSeconds() > 200)
		{
			player.sendMessage("You have been kicked from this event for being inactive for more than 3 minutes.");
			IWorld.resetKnown(player);
			return false;
		}
		playerInject(player);
		return true;
	}

 

 

EventWorld.java

  • 0
Posted
IWorld.resetKnown(player);

AHAHHAHAHAHAAHAHAHAHAHAHAHAHAAHAHAHAHAHAAHAHAHAHAAHAHAHAAHAHAHAAHAHAHAHAHAHAAHAHAHAAHAHAHAHAAHAAHHAHAHHA

  • 0
Posted (edited)

What you mean more tricky ?

 

If team 1 and team 2 has same score it will return 0 anyway 

u have 5 teams and 2 of them have the highest same score... Both have to get rewards-claim the winner title.

 

so,based in what he wants to do(get the ID),he might need 2 ids (e.g stored in array and return it instead of int and thats a simple solution or "check for more than 1" -> more code).I m pretty sure that there is something better in l2j but IDC  :dat:

Easy stuff without "l2j" knowledge.

Sry no l2j here ,i m jealous ... no i m not YDB Kappa

Edited by bravetobe
  • 0
Posted
IWorld.resetKnown(player);

AHAHHAHAHAHAAHAHAHAHAHAHAHAHAAHAHAHAHAHAAHAHAHAHAAHAHAHAAHAHAHAAHAHAHAHAHAHAAHAHAHAAHAHAHAHAAHAAHHAHAHHA

 

 

you dont even know what that is :D

  • 0
Posted (edited)

This is a static method in an interface. One of the most non necessary features of Java 8.

 

Shows you never wrote unit tests ever in your life and you have no idea what DI is.

 

:D

 

You're a joke I give you that. I've been using static methods in interfaces since default methods came. IWorld is a hybrid interface consisted of default methods and a few static methods for caching on a global access. This hybrid interface is a "hack" that allows me to make an illusion of a virtuallu multiple inheritance which is not possible in Java (I have strong c++ background).

 

This way I can implement IWorld while extending another important class.

 

 

I am not here to teach you elfo, crawl back to your virgin nasty fatass C# mentor that told you that C# is the best

Edited by xxdem
  • 0
Posted

I never said it was the best way to do it :D

Even if you show him the finest code in the universe he will find something to disagree with.

  • 0
Posted (edited)

default methods became a thing in java 8 too.

 

"Hybrid interface" HAHAHAHHAHAHAHAHA

Writing default methods for a class that already is part of your source is so lame. 

 

"This way I can implement IWorld while extending another important class."

I won't even get into the trouble of explaining you why this is so wrong.

 

I'm pretty sure that if you have to do shit like this you don't even know what SOLID are.

 

Get out of my way incompetent developer. Go make some shitty google drive sync file system.

 

 

PS: I got news for you. I equally use C# and Java in a day to day basic in both Android, Spring, ASP.NET MVC and other scenarios. So what you are saying has no point.

I'm not judging Java. Java is amazing. I am judging you. You are a overrated piece of shit :D

 

Your but-hurt-ness level is paranoid.

 

Did I singed an agreement with myself that I will follow strict policies for my own free-time project that is mostly coded for fun and myself?Did I say anywhere that the above snippet is a tryhard piece of software that respects ALL GLOBAL STANDARDS that any retard is gonna bring on the table or anything? s

 

Well I didn't :D . So violations are made. Can't get it why it hurts you so much.

 

 

 

Retard.

Edited by xxdem
  • 0
Posted

Your but-hurt-ness level is paranoid.

 

Did I singed an agreement with myself that I will follow strict policies for my own free-time project that is mostly coded for fun? I didn't say anywhere that its coded tryhard mode or anything, so violations are made. Can't get it why it hurts you so much.

 

Well I didn't :D .

 

 

 

Retard.

It doesn't hurt me. It hurts you because you are poping out of nowhere to show off you "cool little ae event shit" and when someone trashes you to the ground you get all defensive and say it's coded for fun.

 

We are developers. We code for fun anyway. This doesn't mean we have to use it as an excuse.

 

Fuck it I'm out.

  • 0
Posted (edited)

It doesn't hurt me. It hurts you because you are poping out of nowhere to show off you "cool little ae event shit" and when someone trashes you to the ground you get all defensive and say it's coded for fun.

 

We are developers. We code for fun anyway. This doesn't mean we have to use it as an excuse.

 

Fuck it I'm out.

 

I've edited read again. Fun was a wrong word to say.

 

Showing off or helping? Get your shit straight mate.

Edited by xxdem

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

    • 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