Jump to content

Recommended Posts

Posted

does it works on l2j epilogue pack?

Everything fits in evrything ,but you must change some imports to make it work properly...
Posted

man i have problem with this . I think the problem is with the word Config /Blessed/Crystal

 

 

  if (Config.ENCHANT_SCROLL_CRYSTAL_SYSTEM)

 

                {

 

                        if (item.getItem().getType2() == L2Item.TYPE2_WEAPON)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_WEAPON_CRYSTAL;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON_CRYSTAL;

 

                                                ;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                        else if (item.getItem().getType2() == L2Item.TYPE2_SHIELD_ARMOR)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_ARMOR_CRYSTAL;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR_CRYSTAL;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                        else if (item.getItem().getType2() == L2Item.TYPE2_ACCESSORY)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_JЕWELRY_CRYSTAL;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY_CRYSTAL;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                }

 

             

 

                if (Config.ENCHANT_SCROLL_BLESSED_SYSTEM)

 

                {

 

                        if (item.getItem().getType2() == L2Item.TYPE2_WEAPON)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_WEAPON_BLESSED;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON_CRYSTAL;

 

                                                ;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_WEAPON_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                        else if (item.getItem().getType2() == L2Item.TYPE2_SHIELD_ARMOR)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_ARMOR_BLESSED;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR_CRYSTAL;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_ARMOR_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                        else if (item.getItem().getType2() == L2Item.TYPE2_ACCESSORY)

 

                        {

 

                                maxEnchantLevel = Config.ENCHANT_MAX_JЕWELRY_BLESSED;

 

                                for (int scrollId : ENCHANT_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : CRYSTAL_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY_CRYSTAL;

 

                                                break;

 

                                        }

 

                                }

 

                                for (int scrollId : BLESSED_SCROLLS)

 

                                {

 

                                        if (scroll.getItemId() == scrollId)

 

                                        {

 

                                                chance = Config.ENCHANT_CHANCE_JEWELRY_BLESSED;

 

                                                break;

 

                                        }

 

                                }

 

                        }

 

                }

Posted

kas23 - You had errors only with configs.. so simply roll over it and it should show You description about whats wrong.

  • 2 weeks later...
Posted

I work on L2J-Infinity and i insterted the code right.. but no working ... Dont know why:S

No errors .. General/Other.Properties Config is ok..

I set to true but nothing:S

 

(Edited):@

Ohhh shit ... i had forgoten that i posted before...

Dont de-karma me for this mistake plz.. :S

plz smbdy remove the previous post

  • 1 month later...
Guest
This topic is now closed to further replies.


  • Posts

    • - New Features in Anosim https://anosim.net -   You can now share your numbers with others via a unique link - no need to give them access to your account! How to Share Number https://prnt.sc/K83lxOjS-Fyb   How to Revoke Accsess: https://prnt.sc/jkVIQS2lhxvA   --- --- --- --- --- --- --- New OTP / SMS Activation Locations: - USA  - Australia - Honduras - Kenia
    • How to Create Multi-Accounts For TikTok, Youtube, Gmail....   Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint.   MoMoProxy Integrate with Adspower Browser   Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged.   Youtube Video On How to Create TikTok Accounts  https://youtu.be/ZUihXj7BO4M  
    • How to Create Multi-Accounts For TikTok, Youtube, Gmail....   Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint.   MoMoProxy Integrate with Adspower Browser   Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged.   Youtube Video On How to Create TikTok Accounts  https://youtu.be/ZUihXj7BO4M        
    • If you created it yourself for the first races just duplicate it in the same way for the other races (that is make the animations for the other races as well) and everything will work
    • OpenCV bot working for all l2 clients... but need special set for each server
  • 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