Jump to content

Recommended Posts

Posted

This code means that a tanker classes cannot put on a bow if they are not in Olympiad !

 

1. Step ! Go to com.l2jserver.gameserver.network.clientpackets & find packet UseItem & add this

if ((activeChar.getInventory().getItemByObjectId(_objectId) != null && item.getItemType() == L2WeaponType.BOW) && ((activeChar.getClassId().getId() == 5) || (activeChar.getClassId().getId() == 6) || (activeChar.getClassId().getId() == 90) || (activeChar.getClassId().getId() == 91) || (activeChar.getClassId().getId() == 20) || (activeChar.getClassId().getId() == 99) || (activeChar.getClassId().getId() == 33) || (activeChar.getClassId().getId() == 106)))
{
if (!activeChar.isInOlympiadMode())
{
	activeChar.sendMessage("While you are a tanker class, you cant use a bow");
	return;
}
}

 

2. Step ! Go to com.l2jserver.gameserver.model.actor.instance & find L2ClassManagerInstance & add these imports

import com.l2jserver.gameserver.model.L2ItemInstance;
import com.l2jserver.gameserver.model.itemcontainer.Inventory;
import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate;

after that find this line

private static final boolean checkAndChangeClass(L2PcInstance player, int val)

& add

                            L2ItemInstance rhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
		    if (rhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(rhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }
		    L2ItemInstance lhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LHAND);
		    if (lhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }
		    L2ItemInstance lrhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LRHAND);
		    if (lrhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lrhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }

 

3. Step ! Go to com.l2jserver.gameserver.model.olympiad & find OlympiadGame & add this import

import com.l2jserver.gameserver.model.itemcontainer.Inventory;

after that add find this line

protected void PlayersStatusBack()

& add these lines

                            L2ItemInstance rhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
		    if (rhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(rhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }
		    L2ItemInstance lhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LHAND);
		    if (lhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }
		    L2ItemInstance lrhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LRHAND);
		    if (lrhand != null)
		    {
		    	L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lrhand.getItem().getBodyPart());
		        InventoryUpdate iu = new InventoryUpdate();
		        for (L2ItemInstance element : unequipped)
		        iu.addModifiedItem(element);
		        player.sendPacket(iu);
		    }

 

AND HAVE FUN WITH THIS !

Credits to me !

 

Posted

What's the point?

Just read -> This code means that a tanker classes cannot put on a bow if they are not in Olympiad !

if you dont understand this i try explain it better :D it means that all tanks can put on bow only in Olympiad.

Posted

Just read -> This code means that a tanker classes cannot put on a bow if they are not in Olympiad !

if you dont understand this i try explain it better :D it means that all tanks can put on bow only in Olympiad.

lol`ed here.

 

What's the point for this restriction.

Posted

lol`ed here.

 

What's the point for this restriction.

That tanks with bow f. ex. on interlude is very good and everyone play only tanks on pvp servers !
Posted

That tanks with bow f. ex. on interlude is very good and everyone play only tanks on pvp servers !

hahaha, loled.

 

first thing - is not retail

second - the code doesn't work

Posted

most idiotic thing i ever seen in my entire life, you know that you could just simply adjust the armors retail like, since l2j is not too matched, also that code is way to big and all those many "if"'s checks makes me dizzy.

 

On top of all wrong section. >.>

Posted

hahaha, loled.

 

first thing - is not retail

second - the code doesn't work

No my dear it works ! and i've never told that is retail like ! IF YOU BE PALADIN or smth. you cannot use bow ( you cant put it on ) ! Yust read the code ( UseItem.java ) and another lines is for bug with this ....
Posted

most idiotic thing i ever seen in my entire life, you know that you could just simply adjust the armors retail like, since l2j is not too matched, also that code is way to big and all those many "if"'s checks makes me dizzy.

 

On top of all wrong section. >.>

It must have lots of "if" checks 'cause tanks are paladin,phoenix,hell knight,dark avavger etc.
Posted

No my dear it works ! and i've never told that is retail like ! IF YOU BE PALADIN or smth. you cannot use bow ( you cant put it on ) ! Yust read the code ( UseItem.java ) and another lines is for bug with this ....

don't tell me my dear..

 

also the bow use LRHAND

Posted

don't tell me my dear..

 

also the bow use LRHAND

are u kidding me ? :D my dear ... you're lams as i see ... lrhand si only for arrows but the weapon is in rhand ! JUST try it & after that u can say smth. like this
Posted

are u kidding me ? :D my dear ... you're lams as i see ... lrhand si only for arrows but the weapon is in rhand ! JUST try it & after that u can say smth. like this

don't i ?

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

    • We have the best prices for Adena on L2Reborn. discord - adver745645
    • I was looking for  server with a low rates,eventually i found l2 elixir.I Joined beta and after so many years since 2008 i found  a friend that we played together, memories came back. i cant wait for the grand oppening!. dont miss it!
    • Seems legit, for sure deserves a try!
    • SOCNET VERIFICATION SERVICE — is a universal solution for those who value security, convenience, and quality. We turn the verification process into a convenient, fast, and highly confidential experience. Thanks to our service, any of your accounts receive identity confirmation, an increased level of trust from platforms and users, as well as protection from bans, fraud, and risks.   Promotion: Pay for your first verification and get a 10% discount on the second one! 💎 We help with verification on Fragment, crypto exchanges ByBit, Gate, Bitget, OKX, Binance, PayPal, KuCoin, and social networks LinkedIn, Facebook, Instagram, Twitter (X) and many other platforms! 💎 Verification for any service: crypto exchanges, trading platforms, hosting providers, casinos and other websites. Why choose us:   Premium quality — we use the most advanced verification methods. High processing speed — accelerated verification on leading platforms, online services and social networks. Full confidentiality — your personal information is protected. Increased trust and status — a verified account boosts influence and improves conversion. Individual approach — we work with bloggers, brands, businesses, and private clients. Simplifying complexity — we handle issues when dealing with foreign services. Important! Services related to illegal activities are strictly prohibited! 💳 Service pricing   ✅ Verification of individuals — from $30 (the exact cost depends on the required location and service/app/website). Learn more 👨‍💼 The cost of business verification for companies or legal entities is discussed individually with the service administration. Learn more If you want us to register your account on the required service and verify it — you will need to additionally pay 10% of the transaction amount. Available payment methods: cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot.   ⭐ Our Online Store ⭐ SOCNET.STORE ⭐ Telegram Store ⭐ SOCNET.SHOP ⭐ Our SMS Service ⭐ SOCNET.APP ⭐ Our Telegram Bot for buying Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel ⭐ SOCNET.PRO   ✅ News Resources ➡ Telegram Channel ➡ WhatsApp Channel ➡ Discord Server     ⭐ We invite you to COOPERATE and EARN with us ⭐ Would you like to sell your product or service in our stores and earn money? Become our partner or offer mutually beneficial collaboration? You can contact us via the CONTACTS listed in this topic. ✅ Contacts & Support ➡ Telegram Support ➡ WhatsApp Support ➡ Discord Support: socnet_support ➡ Email Support: solomonbog@socnet.store   Terms of Use and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a completed service that does not fully meet the requirements or the declared quality is possible only if the product description includes a warranty and a valid warranty period. In other cases, a full refund for the service will not be provided! By purchasing such a service, you automatically agree to our refund rules for non-provided services! Refunds for countries selected by mistake are not provided after verification. To complete verification, you must provide full access to your account. We currently accept cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot! We value every client and provide replacements in case of invalid accounts via our contact channels! Attention: Your order will be delivered to your personal Google Drive/Mega.nz via a link (check the link, click “View content”) within 24 hours after the order confirmation! If you purchased more than 1 item at once, your entire order will be delivered via the first link! The remaining links will be empty! You will automatically receive an email notification after delivery! If you pay on our website via PayPal, you must pay an additional 20% commission (minimum $1). To avoid this commission, you can pay me directly via PayPal — instructions are available on the website! Refunds for items purchased by mistake or due to “I chose the wrong product and did not use it” are not accepted! You are fully responsible for your actions before and after purchase.
  • 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