Jump to content

Recommended Posts

Posted

DISCLAIMER: I know this code is not complete ,  but it's something to begin with for those who want to create this specific event (if they find it useful) saving them some time. It ain't much but it's free.


LuckyBoxNPC.java

LuckyChests.java

NPC XML

 

 

Video

Posted
2 hours ago, LordPanic said:

DISCLAIMER: I know this code is not complete ,  but it's something to begin with for those who want to create this specific event (if they find it useful) saving them some time. It ain't much but it's free.


LuckyBoxNPC.java

LuckyChests.java

NPC XML

 

 

Video

 

Ok let's start.

 

1. You're doing an iteration over 

private final List<Npc> _boxList = new ArrayList<>();	

which mean ArrayList<> is not the proper type. Use CopyOnWriteArrayList for thread safety reasons.

 

2. This is completely useless, also you're doing double "setTarget"

if(this.isDead()) 
{
		player.setTarget(player);
		player.setTarget(null);
		return;
}

 (Also this is needless)

 

3. Why initialize a variable using 0 and then add the value again? Why no do it directly?

int chanceToDie = 0;			
chanceToDie = Rnd.get(100);

 

4. Why this check exists in both then and else case?

LuckyChests.getInstance().removeluckyBox(this.getObjectId());

 

Posted
1 hour ago, Kara said:

 

Ok let's start.

 

1. You're doing an iteration over 

private final List<Npc> _boxList = new ArrayList<>();	

which mean ArrayList<> is not the proper type. Use CopyOnWriteArrayList for thread safety reasons.

 

lmao why use this CopyOnWriteTrash when his code doesn't seem to have concurrency issues?

ArrayList is the way to go for casual codes like this his list rarely ever gets populated

Posted
6 hours ago, xdem said:

lmao why use this CopyOnWriteTrash when his code doesn't seem to have concurrency issues?

ArrayList is the way to go for casual codes like this his list rarely ever gets populated

Didnt you read? Its not completed. Image write this code and remove element while is reading

Posted

Thanks for sharing. If you wrote this code, could you explain your thought about this line?

doCast(SkillTable.getInstance().getInfo(4143, Math.min(10, Math.round(4143 / 10))));

 

i mean the 2nd parameter of getInfo method. There isn't any dynamic data there and it will always return 10 as level. Whats its purpose?

Posted (edited)
9 hours ago, Kara said:

 

Ok let's start.

 

1. You're doing an iteration over 

private final List<Npc> _boxList = new ArrayList<>();	

which mean ArrayList<> is not the proper type. Use CopyOnWriteArrayList for thread safety reasons.

 

Nope it's fine this is the reason why i use Iterator to begin with. For example this one will lead to CME

public void removeluckyBox(int boxid) {
		for(Npc mob : _boxList) {
			if(mob.getObjectId() == boxid) {							
				_boxList.remove(mob);
				Broadcast.announceToOnlinePlayers("[Lucky Chest]: ["+_boxList.size()+"] left.", true);				
			}			
			//TODO if(_boxList.isEmpty()){ teleport players back and end the event }
		}		
	}

 

Compared to:

public void removeluckyBox(int boxid) {
		for(Iterator<Npc> iterator = _boxList.iterator(); iterator.hasNext();) {
			Npc mob = iterator.next();
			if(mob.getObjectId() == boxid) {							
				iterator.remove();
				Broadcast.announceToOnlinePlayers("[Lucky Chest]: ["+_boxList.size()+"] left.", true);				
			}			
			//TODO if(_boxList.isEmpty()){ teleport players back and end the event }
		}		
	}

 

9 hours ago, Kara said:

 

2. This is completely useless, also you're doing double "setTarget"

if(this.isDead()) 
{
		player.setTarget(player);
		player.setTarget(null);
		return;
}

 

True i guess there is a more effective way to just ignore completely players who target the dead box's. This is the best i could figure out at that time. Im sure there is a packet requestcancelmytarget or whatever to do it the "right" way.

 

9 hours ago, Kara said:

 

 

3. Why initialize a variable using 0 and then add the value again? Why no do it directly?

int chanceToDie = 0;			
chanceToDie = Rnd.get(100);

 

Obviously i could Rnd.get(100) < 50 w.o variables to begin with. I dont even know why i didnt change it.
 

 

9 hours ago, Kara said:

4. Why this check exists in both then and else case?

LuckyChests.getInstance().removeluckyBox(this.getObjectId());

 

True i dont know why i ignored this one.

  

22 minutes ago, melron said:

Thanks for sharing. If you wrote this code, could you explain your thought about this line?

doCast(SkillTable.getInstance().getInfo(4143, Math.min(10, Math.round(4143 / 10))));

 

i mean the 2nd parameter of getInfo method. There isn't any dynamic data there and it will always return 10 as level. Whats its purpose?

I did change it on source forgot to change it to pastebin aswell and yes u are right , just put the 10 which is the lvl of the skill

 

Thanks for  pointing out the mistakes , i will fix them.

Edited by LordPanic

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

    • Hello everyone,   A quick update from the Emerge team. The official launch of Emerge Eclipse x10 is just around the corner and we are currently finishing the final preparations to ensure a smooth and stable opening for all players. Our team has been working on performance improvements, network optimizations, and additional infrastructure to provide the best possible experience from day one.   🚀 Launch Date: 7 June 2026 🕕 Launch Time: 18:00 CET We would like to invite everyone to join our Discord community where all announcements, updates, events, and support information are posted first. 🌐 Website: https://l2emerge.com 💬 Discord: https://discord.gg/l2emerge Thank you for all the support and feedback during the preparation phase. We look forward to seeing both new and veteran Lineage II players on launch day. See you soon on Emerge!
    • Added an enchant NPC ( more infos on test server)     - remade autofarm system, more clever , more humanlike steps, catacomb mode in route farm and rewrite of route farming   - Updated Antibot to defend even more from more advanced adrenaline users ( not gonna write how 😂 )   - now dll of antibot will not be flagged from antivirus or defenders   - Updated some more the AI based Agent     Our discord https://discord.gg/acvqx9rbhy   L2R Off files / monthly subscription
    • Interlude will never be the same again. To celebrate our first 3 months online, L2 Detona proudly presents League of Lineage.   A brand-new game mode inspired by the world's biggest MOBAs, bringing lane battles, minions, towers, strategic objectives, and epic team fights into the world of Lineage 2. All of this while preserving the essence that made Interlude one of the most beloved chronicles in Lineage 2 history.   ⚔️ Destroy enemy towers. 🛡️ Defend your base. 👑 Lead your team to victory.   📅 Officially launching on June 12, 2026. 🔥 Jump into the action right now through System_Test and become one of the first players to experience League of Lineage. Server Rates XP: 500x SP: 500x Adena: 200x Server Features Full Official Interlude gameplay with custom modifications Exclusive MOBA Arena 3 Hour Buffs for comfortable gameplay No Class Change Quests Website: https://www.l2detona.com Images of project: https://imgur.com/a/Lajn9Ag
    • Remove google ads from site , will be perfect without this.. we do a vote and we get 2-3 google ads, its nervus. i just give feedback you do ofc what you want 🙂
  • 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..