Jump to content
  • 0

[Help] Java Related Questions


Question

Posted

Hello,

 

I want to make a script which should sound like that:

 

If (activechar.isequiped item id = x) and when he dies (is dead) from mob/during pvp/pk and etc.

he should drop that x item, but only then if he has it equiped, and ofc if he doesnt have that item then no drop.

 

Any ideas? :)

Would be thankfull.

 

Best Regards

a1

7 answers to this question

Recommended Posts

  • 0
Posted

The doDie() method in L2PcInstance class is being executed when a player dies so you'll add your 'drop code' there. Can't go more into detail since i'm on my mobile now.

  • 0
Posted

The doDie() method in L2PcInstance class is being executed when a player dies so you'll add your 'drop code' there. Can't go more into detail since i'm on my mobile now.

 

I try to manage that witouth any java knowledge:

so it should be something like that afer dodie method:

 

if (itemId = x && item.isEquipped())

{

activechar.getInstance().drop(_ItemX, killer);

}

 

But how about inventory update?

 

And could you be more specific and give me a hand?  Would be Thankfull.

  • 0
Posted

I try to manage that witouth any java knowledge:

so it should be something like that afer dodie method:

 

if (itemId = x && item.isEquipped())

{

activechar.getInstance().drop(_ItemX, killer);

}

 

But how about inventory update?

 

And could you be more specific and give me a hand?  Would be Thankfull.

your statement is wrong.

 

you have to use dropItem("Drop", item.getObjectId(), count, getX(), getY(), getZ(), this, true);

  • 0
Posted

Pretty simple.

You first visit the doDie() method.

Then you make a check, if the player is holding/generally possessing the item.

If he does so, then you force him to drop it.

If not, then nothing happens.

  • 0
Posted

Pretty simple.

You first visit the doDie() method.

Then you make a check, if the player is holding/generally possessing the item.

If he does so, then you force him to drop it.

If not, then nothing happens.

Same thing said mogo .. Do you need posts? Go to spam.

  • 0
Posted

Ok, so basically this method should almost suit you

private void onEventDieDropItem(L2Character killer)
{
	if (killer == null)
            return;

	L2PcInstance pk = killer.getActingPlayer();
	if(pk == null) return;

	List<L2ItemInstance> itemsToDrop = new FastList<L2ItemInstance>();

	for (L2ItemInstance itemDrop : getInventory().getItems()) {
		// Don't drop
		if (
				itemDrop.isShadowItem() || // Dont drop Shadow Items
				!itemDrop.isDropable() ||
				itemDrop.getItemId() == 57 || // Adena
				itemDrop.getItem().getType2() == L2Item.TYPE2_QUEST ||                  // Quest Items
				getPet() != null && getPet().getControlItemId() == itemDrop.getItemId() || // Control Item of active pet
				Arrays.binarySearch(Config.KARMA_LIST_NONDROPPABLE_ITEMS, itemDrop.getItemId()) >= 0 || // Item listed in the non droppable item list
				Arrays.binarySearch(Config.KARMA_LIST_NONDROPPABLE_PET_ITEMS, itemDrop.getItemId()) >= 0 // Item listed in the non droppable pet item list
		) continue;

		// Don't drop if the item is not equiped
		if (!itemDrop.isEquipped())
			continue;

		// Adding the item to the "must-drop" list
		itemsToDrop.add(itemDrop);
	}		
	int chance = pk.isInParty() && pk.getParty() != null ? 100 - pk.getParty().getMemberCount() * 10 : 100;

	if (Rnd.get(100) < chance) {
		L2ItemInstance itemDrop = itemsToDrop.get(Rnd.get(itemsToDrop.size() - 1));
		dropItem("EventDieDrop", itemDrop, killer, true);
		sendMessage("You drop " + itemDrop.getCount() + " " + itemDrop.getName());
	} else {
		sendMessage("You haven't dropped anything this time.");
	}
}

You may want to edit it a bit for your needs though

  • 0
Posted

Ok, so basically this method should almost suit you

private void onEventDieDropItem(L2Character killer)
{
	if (killer == null)
            return;

	L2PcInstance pk = killer.getActingPlayer();
	if(pk == null) return;

	List<L2ItemInstance> itemsToDrop = new FastList<L2ItemInstance>();

	for (L2ItemInstance itemDrop : getInventory().getItems()) {
		// Don't drop
		if (
				itemDrop.isShadowItem() || // Dont drop Shadow Items
				!itemDrop.isDropable() ||
				itemDrop.getItemId() == 57 || // Adena
				itemDrop.getItem().getType2() == L2Item.TYPE2_QUEST ||                  // Quest Items
				getPet() != null && getPet().getControlItemId() == itemDrop.getItemId() || // Control Item of active pet
				Arrays.binarySearch(Config.KARMA_LIST_NONDROPPABLE_ITEMS, itemDrop.getItemId()) >= 0 || // Item listed in the non droppable item list
				Arrays.binarySearch(Config.KARMA_LIST_NONDROPPABLE_PET_ITEMS, itemDrop.getItemId()) >= 0 // Item listed in the non droppable pet item list
		) continue;

		// Don't drop if the item is not equiped
		if (!itemDrop.isEquipped())
			continue;

		// Adding the item to the "must-drop" list
		itemsToDrop.add(itemDrop);
	}		
	int chance = pk.isInParty() && pk.getParty() != null ? 100 - pk.getParty().getMemberCount() * 10 : 100;

	if (Rnd.get(100) < chance) {
		L2ItemInstance itemDrop = itemsToDrop.get(Rnd.get(itemsToDrop.size() - 1));
		dropItem("EventDieDrop", itemDrop, killer, true);
		sendMessage("You drop " + itemDrop.getCount() + " " + itemDrop.getName());
	} else {
		sendMessage("You haven't dropped anything this time.");
	}
}

You may want to edit it a bit for your needs though

 

Well perfect! Deleted some unusefull lines =] Ty for your time :) Good Luck!

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

    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
    • Ave is trustworthy,fast  and reliable.His work is amazing!100% satisfied with his services!
    • SMMTOOL.ORG ТВОЙ ПРЯМОЙ ПОСТАВЩИК TG/YouTube/MAX ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ПОЧЕМУ МЫ? • Свой софт — работаем без посредников и переплат. • Скорость до 50.000.000 в сутки. • Минимальный **** — всего ~5%. ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Услуги Telegram ПРАЙС-ЛИСТ (ЗА 1000 ЕД.) ПОДПИСЧИКИ (LIFETIME) ➥ 1.2$ — RU База ➥ 1.2$ — Китай База ➥ 1$ — Ultra Fast Группа (~80₽) ➥ 1$ — Ultra Fast (~80₽) ➥ 0.99$ — Super Fast (~80₽) ➥ 0.8$ — Fast (~64₽) ➥ 0.55$ — Normal (~40₽) ➥ 0.44$ — 100K+ Only (~35₽) ПОДПИСЧИКИ (Дневные) ➥ 0.7$ — 60 дней РУ (~55₽) ➥ 0.5$ — 30 Дней РУ (~40₽) ➥ 0.7$ — 60 Дней Китай (~55₽) ➥ 0.5$ — 60 Дней Китай (~40₽) ОПТИМИЗАЦИЯ КАНАЛОВ И БОТОВ ➥ 1.5$ — Подписчики из Поиска Китай (~120₽) ➥ 1.5$ — Подписчики из Поиска РУ База (~120₽) ➥ 1$ — Подписчики из Поиска МИКС (~₽80) ➥ 0.8$ — Бот Старты из Поиска (~64₽) АКТИВНОСТЬ И БОТЫ ➥ 0.7$ — Реакции на Комменты (Позитивные) + Подписчики (Бонус) ➥ 0.7$ — Реакции на Комменты (Негативные) + Подписчики (Бонус) ➥ 0.08$ — Просмотры постов ➥ 0.08$ — Реакции (Любые) ➥ 0.18$ — Запуски ботов МИКС ➥ 0.4$ — Запуски ботов РУ ➥ 0.4$ — Запуски ботов Китай ➥ 0.18$ — Запуски ботов + сообщение (/settings) ➥ 0.5$ — Рефералы в боты ➥ 0.3$ — Репост Истории + просмотр ➥ 0.3$ — Лайк Истории + просмотр Услуги YouTube АКТИВНОСТЬ ➥ 8$ — Кастомные Комментарии Живые Юзеры ➥ 15$ — Кастом Позитивные Комментарии + Лайк + Просмотр Видео ➥ 10$ — Рандомные Позитивные Комментарии + Лайк + Просмотр Видео ➥ 0.55$ — Поделиться Видео Живые Юзеры ➥ 0.5$ — Зрители Эфира (15мин) Живые Юзеры ➥ 18$ — Живые Просмотры Видео 60мин+ Видео ➥ 5$ — Рандомные Позитивные Комментарии ➥ 0.5$ — Лайк под Видео ➥ 0.7$ — Просмотр Видео МИКС + Монетизация Услуги MAX ПОДПИСЧИКИ (LIFETIME) ➥ 22$ — Публичные Каналы ПОДПИСЧИКИ (Дневные) ➥ 15$ — 90 дней ➥ 12$ — 60 дней ➥ 8$ — 30 дней АКТИВНОСТЬ И БОТЫ ➥ 3.50$ — Просмотры на пост ➥ 7$ — Макс Репосты ➥ 8$ — Положительные Реакции ➥ 13$ — Реакция ➥ 13$ — Реакция ➥ 13$ — Реакция ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ БОНУСЫ И ОФФЕРЫ КЭШБЭК ДО 10% для крупных реселлеров API доступ для ваших панелей ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ОПЛАТА: Crypto | LOLZ Market САЙТ: SMMTOOL.ORG Telegram: SMMTOOL_ORG
  • 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..