Jump to content

Question

Posted

Hello guys this is what i want 

1)Create a custom armor but put only a specific scroll to enchant it (no normal,blessed) lets say only crystal

 

In order to do that the best way is to:

 

1)Create new grade Like "E" and add crystall Scrolls (d,c,b,a,s+e) and would be enchantable only with Crystal

 

2)Just edit the source on enchant.java to make crystall scrolls only enchantable for specific armors ids?

 

p.s: i dont want other scrolls enchant this armor

8 answers to this question

Recommended Posts

  • 0
Posted (edited)

If you don't know to do it, then create new scroll as grade NONE. Set your armor enchant type @ xml for your armor as NONE. Don't forgot to change the Crystal scroll grade to NONE as well. Profit.

 

ONE line code. You only have to register new grade and obviously change the xml/sql grade.

Edited by SweeTs
  • 0
Posted

Go to RequestEnchantItem.java or whatever the file name called  and in the point that

it says

sychronize(item)

 

add a check 

 

int[] with ids of your armors

 

and then a for that goes into ids 

and do check  if (item.getItemId() == <your for item id>) return; 

thats all.. bye bye sexy

  • 0
Posted

Whatever you like. "New grade", else a simple check for id - faster way, there is no need to create new items.

  • 0
Posted

In order to do it from RequestEnchantItem.java 

i should edit the 

			case L2Item.CRYSTAL_S:
				crystalId = 1462;
				switch (scroll.getItemId())
				{
					case 960:      
					case 962:     
					case 6578:      
						if (itemType2 == L2Item.TYPE2_SHIELD_ARMOR || itemType2 == L2Item.TYPE2_ACCESSORY)
						{
							enchantItem = true;
						}
						break;
				}
				break;

i cant find the way which RequestEnchantItem 

Connect S grade scrolls with S items thats the only point who i have found until now ..

if someone can help some farther please reply on this topic,thanks 

  • 0
Posted

In order to do it from RequestEnchantItem.java 

i should edit the 

			case L2Item.CRYSTAL_S:
				crystalId = 1462;
				switch (scroll.getItemId())
				{
					case 960:      
					case 962:     
					case 6578:      
						if (itemType2 == L2Item.TYPE2_SHIELD_ARMOR || itemType2 == L2Item.TYPE2_ACCESSORY)
						{
							enchantItem = true;
						}
						break;
				}
				break;

i cant find the way which RequestEnchantItem 

Connect S grade scrolls with S items thats the only point who i have found until now ..

if someone can help some farther please reply on this topic,thanks 

Listen because i am at work and i cant really help you with teamviewer, i hope you know at least basic java.. you know 

 

if then else :DDDD

 

so there are 2files that handle enchant.. 1 is the request and the other is for the enchantrate (at least in l2j) ... search mostly in requestEnchant for the line that

refer to the current item you enchant.. you will also see things like   !item.isShadow() || !item.isHeroItem()   

e.t.c somewhere there it sychronize the item (just to avoid multiple instances problem) and after that inside this sychronization you add your check about ID..  

on the other hand if inside your code it switch the enchant scroll u can also add a check somewhere there about id .. with switch or int array ( int[] x) 

just give it a try ... 

  • 0
Posted (edited)

if you are using frozen find these lines

		if ((maxEnchantLevel != 0 && item.getEnchantLevel() >= maxEnchantLevel) || (item.getEnchantLevel()) < minEnchantLevel)
		{
			activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION));
			return;
		}

and below add this

		if(crystalScroll && !item.getItemId() == 999)
		{
			activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION));
			return;
		}

change the ids and thats it

Edited by te0x
Guest
This topic is now closed to further replies.


  • Posts

    • My official facebook profile!: https://www.facebook.com/spectrumL2 Specifications: Revamped L2JACIS revision FROM the core Private project!!! Revision that has been receiving corrections for over 3 years!!! Events already installed in the revision: TVT CTF KTB PARTY FARM SPOIL EVENT CRAZY RATES TOURNAMENT TIME ZONE (INSTANCE) All working correctly!!! SIEGE ESSENTIAL FEATURES: Walls fix Gates fix Flags fix 100% functional: OLYMPIADS: Implemented settings Hero receives enchanted Weapons with equal status PvP Weapons Optional /true/false Hero can acquire all Hero Weapons Optional true/false OTHER IMPLEMENTATIONS: Teleport fixed (directly to Giran) Teleport effect classic Vip skins vip collor name Pack NPCs with effect already configured BOSES already configured Mobs already configured CLASS BALANCE SPECIAL SYSTEM We have a SPECIAL system developed for Class Balance with only 1 digit in XML %tage of configurable debuffs Player limitation system in BOSES or PvP zones BS blocking system in FLEG zones or events Among others dozens of improvements made in the review... price: 390 USD !  OBS: WE CAN CHANGE THE BANNER AND NAME OF THE SERVICE TO THE ONE OF YOUR PREFERENCE BUT THE SETTINGS MUST BE KEPT ANY CHANGES REQUIRE ADDITION        
    • Server is Online – 1,000+ Active Players! We’re excited to announce the addition of a Europe Proxy to improve connectivity for our EU players! Clans can now benefit from VIP Access to help you catch up faster. 🎯 If you're a clan leader with at least 9 active members, join our Discord and open a ticket to claim your VIP rewards!  
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
  • 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