Jump to content

Recommended Posts

Posted (edited)

nt9niPq.png

Hello again Cheaters i rework and redesign an already shared code of my friend @melron (Official code : HERE)

 - Using multi-word search.

 - Cleanup parts of the code.

 - Code not include part of "item.getIcon()" you can find many shared ways to get icon for each item.

 

Updates:
 - Add idea/part of the code of @Creamy G Colin
 - Add check of empty seach (was throwing error on GS console)

 - Add info if its Quest Item

 


Coded for aCis 385 revision
Code : Here

Edited by StinkyMadness
  • Like 4
  • Thanks 7
  • Upvote 2
Posted

i think multi word search must be like:

			String[] parts = search.toLowerCase().split(" ");
			for (Item item : ItemData.getInstance().getTemplates()){
			boolean add = false;
			for (String part : parts) {
			if (item.getName().toLowerCase().contains(part)){
			add = true;
			}else{
			add = false;
			break;
			}
			}
			}
			if(add) items.add(item);

 

Posted
15 hours ago, wongerlt said:

i think multi word search must be like:


			String[] parts = search.toLowerCase().split(" ");
			for (Item item : ItemData.getInstance().getTemplates()){
			boolean add = false;
			for (String part : parts) {
			if (item.getName().toLowerCase().contains(part)){
			add = true;
			}else{
			add = false;
			break;
			}
			}
			}
			if(add) items.add(item);

 

 

GTFO

Posted
19 hours ago, StinkyMadness said:

Why my way its not working ?

if i try search example "Bow Draconic" or "Drac Bow" then not working.

with me code it will work

 

Posted
38 minutes ago, wongerlt said:

if i try search example "Bow Draconic" or "Drac Bow" then not working.

with me code it will work

 

You have no reason to search "Drac Bow" -.- also without testing as i read your part with "Drac Bow" it will show you and "Draconic Armor" too.. right me if i'm wrong..

Posted
7 minutes ago, StinkyMadness said:

You have no reason to search "Drac Bow" -.- also without testing as i read your part with "Drac Bow" it will show you and "Draconic Armor" too.. right me if i'm wrong..

in item name must include all search words so draconic armor not show. its good if u not remember part of item name.

Posted (edited)
On 9/27/2019 at 7:18 PM, wongerlt said:

i think multi word search must be like:


			String[] parts = search.toLowerCase().split(" ");
			for (Item item : ItemData.getInstance().getTemplates()){
			boolean add = false;
			for (String part : parts) {
			if (item.getName().toLowerCase().contains(part)){
			add = true;
			}else{
			add = false;
			break;
			}
			}
			}
			if(add) items.add(item);

 

 

I think you didnt even test this code... isnt working at all. Here is one that could work.

package test;

import java.util.Arrays;
import java.util.stream.Collectors;

public class workspace 
{
	public static void main(String[] args) 
	{
		final String[] items = new String[] { "Draconic Bow", "Draconic Bow - Focus", "Arcana Mace", "Arcana Mace - Acumen" };
		final String search = "drac bo";

		Arrays.asList(items).stream().filter(names -> matches(names.toLowerCase(), search.toLowerCase())).collect(Collectors.toList()).forEach(System.out::println);

	}

	public static boolean matches(String string1, String string2) 
	{
		for (char c : string2.toCharArray())
			if (string1.indexOf(c) == -1)
				return false;
		return true;
	}
}

 

good.thumb.PNG.fb3cb9d37097d44b41dedb28e5cb6110.PNG

 

and if you need extra debug mode...

debug.thumb.PNG.eb5be07e4d527f51bd22b7175d9fd583.PNG

 

take the lines you need and create it

Edited by Creamy G Colin
Posted
5 minutes ago, Creamy G Colin said:

This is > interlude client.... and if not, requires client modification.. so? ....

Please refer to my article in general discussion, Mimesis and Necrophilia.

 

Quote

 Interlude, like fecal matter, is beneath us. Obsessing over your feces and talking/playing/prodding/poking your stool is not only extremely unhealthy and abnormal but it serves as a complete halt to progress. Normal men bury it in a hole and keep on going. Or flush it down your toilet. Furthermore this can be related to the dead. It is not healthy or normal to keep a corpse in your bathtub and put makeup on it and dress it up just so you can take a selfie on instagram tagging the faux morticians page. This is what Interlude devs are essentially doing.

Working on interlude is a sign of depression. Forever living in the past.

 

Posted (edited)
4 minutes ago, GLO said:

Please refer to my article in general discussion, Mimesis and Necrophilia.

 

 

 

What a brain. You came here to judge interlude users/devs? rly nigga? in a share about interlude Server Side? rly nigga? I could say the exact same thing about lineage 2 client devs. What's up?

Edited by Creamy G Colin
Posted
11 minutes ago, Creamy G Colin said:

 

What a brain. You came here to judge interlude users/devs? rly nigga? in a share about interlude Server Side? rly nigga? I could say the exact same thing about lineage 2 client devs. What's up?

Good developers should focus on inventing the car not improving the carriage.

 

Max potential of interlude

article-2196619-14C3F441000005DC-572_634

 

 

Posted (edited)
9 minutes ago, GLO said:

Good developers should focus on inventing the car not improving the carriage.

 

Max potential of interlude

article-2196619-14C3F441000005DC-572_634

 

 

 

Alright Mr smart guy. i wont answer to you anymore since im not even working on l2 anymore... i just rly wanna see what @Tryskell have to say about your thoughts

Edited by Creamy G Colin
Posted
47 minutes ago, Creamy G Colin said:

 

Alright Mr smart guy. i wont answer to you anymore since im not even working on l2 anymore... i just rly wanna see what @Tryskell have to say about your thoughts

 

It's pointless to speak with that sort of people. Whatever people like GLO can say, Classic isn't Interlude.

 

I could say developping on Classic is totally pointless, because you lost your time running after something which always change of shape. Simply wait 5-10 Classic chronicles to see how clunky your Classic L2J project will be, with half missing functionalities. See L2J to understand what I mean, they simply had to stop on High Five to take a breath.

 

GoD simply changed all quests. Latest Lineage 2 chronicle also deleted all GoD quests with a 30min 1-85.

 

People were saying Interlude was dead with Classic, but the fact is there is still more Interlude shares/servers than Classic.

 

More time passes by, less accurate and more shitty your Classic server will be.

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

    • You should buy it then I’ll make a discount  
    • Hi everyone,   In 2014, I completely stepped away from developing L2 servers and doing L2J-related work. Since then, I’ve only opened this server about once a year and helped a few servers and individuals for free. I haven’t taken on any paid L2J work since then.   LINEAGE2.GOLD is a project that has reached about Season 6. The first season launched at the end of 2020 and was a fully rebuilt Gold-style server on the Classic client (protocol 110). It featured many custom systems and enhancements. After several seasons, I decided to abandon the Mobius-based project and move to Lucera, as my goal was to get as close as possible to Interlude PTS behavior while still staying on the L2J platform.   The current project was once again completely rebuilt, this time on the Essence client (protocol 306), and is based on Lucera. Because of that, acquiring a license from Deazer is required.   My Lucera extender includes, but is not limited to: Formulas.java Basic anti-bot detection, which proved quite effective, we caught most Adrenaline users using relatively simple server-side logic, logged them, and took staff action. Simple admin account lookup commands based on IP, HWID, and similar identifiers. In-game Captcha via https://lineage2.gold/code, protected by Cloudflare, including admin commands for blacklisting based on aggression levels and whitelisting. Additional admin tools such as Auto-Play status checks, Enchanted Hero Weapon live sync, force add/remove clans from castle sieges, item listeners for live item monitoring, and more. A fully rewritten Auto-Play system with support for ExAutoPlaySetting, while still using the Auto-Play UI wheel, featuring: Debuff Efficiency Party Leader Assist Respectful Hunting Healer AI Target Mode Range Mode Summoner buff support Dwarf mechanics Reworked EffectDispelEffects to restore buffs after Cancellation. Raid Bomb item support. Reworked CronZoneSwitcher. Prime Time Raid Respawn Service. Community Board features such as Top rankings and RB/Epic status. Custom systems for Noblesse, Subclasses, support-class rewards, and much more.   Depending on the deal, the project can include: The lineage2.gold domain The website built on the Laravel PHP framework The server’s Discord Client Interface source Server files and extender source The server database (excluding private data such as emails and passwords)   I’m primarily looking for a serious team to continue the project, as it would be a shame to see this work abandoned. This is not cheap. You can DM me with offers. If you’re wondering why I’m doing this: I’ve felt a clear lack of appreciation from the L2 community, and I’m not interested in doing charity work for people who don’t deserve it. I’m simply not someone who tolerates BS. Server Info: https://lineage2.gold/info Server for test: https://lineage2.gold/download Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113
  • 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..

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