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

    • https://jumpshare.com/share/kIdeKALOhgtMKpBKqxpg Test Equip Armors-> FullPlate, Gloves, Legs, Chest , Boots
    • 黑色星期五 — 为您的流量提供高级福利 仅在11月28日,我们的特别促销码可为您提供13%的商店折扣。 促销码: BLACKFRIDAY (13% 折扣) 您可以通过我们的网站或 Telegram 机器人在商店购物! 有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram Messenger 方便访问商店。 其他服务: 虚拟号码服务: 前往 用于购买 Telegram Stars 的机器人: 前往 – 快速且优惠地在 Telegram 中购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们向您呈现当前的 促销和特惠活动 列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣 — 只需在我们网站注册后发送您的用户名,格式如下:“SEND ME BONUS, MY USERNAME IS...” — 您需要在我们的论坛帖子中写下这句话! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(支持)提交主题为“Get Trial Bonus”的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人每周都会举办 Telegram Stars 抽奖活动! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Usually, I work alone on my projects, but sometimes the work is much more than I've expected. Could you provide a price list? It would be good if we knew your price before contacting you. 
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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