Jump to content
  • 0

[HELP] 3rd classes in subclass master


Question

Posted

Hello, could anyone please help me to do a little modification? I want to make 3rd classes in subcass master, I have tryed many ways without success. I would be very grateful if somebody could help me. :/

9 answers to this question

Recommended Posts

  • 0
Posted

Hello, could anyone please help me to do a little modification? I want to make 3rd classes in subcass master, I have tryed many ways without success. I would be very grateful if somebody could help me. :/

 

If I understanded well, you dont want 2nd class as default sublclass but you want it to sub class direcltly to the 3rd class, correct?

  • 0
Posted

Yeah, correct. I'm using l2jhellas, interlude. I was trying something in ClassId.java/PlayerClass.java, VillageMasterInstance, still nothing lol.

  • 0
Posted

Yeah, correct. I'm using l2jhellas, interlude. I was trying something in ClassId.java/PlayerClass.java, VillageMasterInstance, still nothing lol.

 

Well actualy Max subclass level is 80, i suggest you to make it 85 if you are going to make default to be "3rd" class.

 

Also search @

com.l2jserver.gameserver.model.base.SubClass.java

&

com.l2jserver.gameserver.model.base.PlayerClass.java

 

 

  • 0
Posted

Edit getAvailableSubClasses( method from L2VillageMasterInstance to fit your desires.

 

Well this is for sure... but to get more closer with things about subclasses you should check the one i linked you too... :)

  • 0
Posted

Okey, I made like this:

 

private static final Set<PlayerClass> mainSubclassSet;
    private static final Set<PlayerClass> neverSubclassed = EnumSet.of(dominator, fortuneSeeker);

    private static final Set<PlayerClass> subclasseSet1 = EnumSet.of(hellKnight, phoenixKnight, evaTemplar,
    		shillienTemplar);
    private static final Set<PlayerClass> subclasseSet2 = EnumSet.of(adventurer, windRider,
    		ghostHunter);
    private static final Set<PlayerClass> subclasseSet3 = EnumSet.of(sagittarius, moonlightSentinel,
    		ghostSentinel);
    private static final Set<PlayerClass> subclasseSet4 = EnumSet.of(arcanaLord, elementalMaster,
    		spectralMaster);
    private static final Set<PlayerClass> subclasseSet5 = EnumSet.of(archmage, mysticMuse, stormScreamer);

    private static final EnumMap<PlayerClass, Set<PlayerClass>> subclassSetMap = new EnumMap<PlayerClass, Set<PlayerClass>>(
                                                                                                                            PlayerClass.class);

    static
    {
        Set<PlayerClass> subclasses = getSet(null, Fourth);
        subclasses.removeAll(neverSubclassed);

        mainSubclassSet = subclasses;

        subclassSetMap.put(hellKnight, subclasseSet1);
        subclassSetMap.put(phoenixKnight, subclasseSet1);
        subclassSetMap.put(evaTemplar, subclasseSet1);
        subclassSetMap.put(shillienTemplar, subclasseSet1);

        subclassSetMap.put(adventurer, subclasseSet2);
        subclassSetMap.put(windRider, subclasseSet2);
        subclassSetMap.put(ghostHunter, subclasseSet2);

        subclassSetMap.put(sagittarius, subclasseSet3);
        subclassSetMap.put(moonlightSentinel, subclasseSet3);
        subclassSetMap.put(ghostSentinel, subclasseSet3);

        subclassSetMap.put(arcanaLord, subclasseSet4);
        subclassSetMap.put(elementalMaster, subclasseSet4);
        subclassSetMap.put(spectralMaster, subclasseSet4);

        subclassSetMap.put(archmage, subclasseSet5);
        subclassSetMap.put(mysticMuse, subclasseSet5);
        subclassSetMap.put(stormScreamer, subclasseSet5);
    }

 

Now I can see only 3rd proffesions however i can change even to same proffesions.. I mean I have main as Titan and subclass as Adventurer, and I can make another subclass with titan or adventurer, could anyone help me to fix this?

 

 

 

EDIT

 

Nvm, fixed by myself allready.. Thanks anyway.

  • 0
Posted

Okey, I made like this:

 

private static final Set<PlayerClass> mainSubclassSet;
    private static final Set<PlayerClass> neverSubclassed = EnumSet.of(dominator, fortuneSeeker);

    private static final Set<PlayerClass> subclasseSet1 = EnumSet.of(hellKnight, phoenixKnight, evaTemplar,
    		shillienTemplar);
    private static final Set<PlayerClass> subclasseSet2 = EnumSet.of(adventurer, windRider,
    		ghostHunter);
    private static final Set<PlayerClass> subclasseSet3 = EnumSet.of(sagittarius, moonlightSentinel,
    		ghostSentinel);
    private static final Set<PlayerClass> subclasseSet4 = EnumSet.of(arcanaLord, elementalMaster,
    		spectralMaster);
    private static final Set<PlayerClass> subclasseSet5 = EnumSet.of(archmage, mysticMuse, stormScreamer);

    private static final EnumMap<PlayerClass, Set<PlayerClass>> subclassSetMap = new EnumMap<PlayerClass, Set<PlayerClass>>(
                                                                                                                            PlayerClass.class);

    static
    {
        Set<PlayerClass> subclasses = getSet(null, Fourth);
        subclasses.removeAll(neverSubclassed);

        mainSubclassSet = subclasses;

        subclassSetMap.put(hellKnight, subclasseSet1);
        subclassSetMap.put(phoenixKnight, subclasseSet1);
        subclassSetMap.put(evaTemplar, subclasseSet1);
        subclassSetMap.put(shillienTemplar, subclasseSet1);

        subclassSetMap.put(adventurer, subclasseSet2);
        subclassSetMap.put(windRider, subclasseSet2);
        subclassSetMap.put(ghostHunter, subclasseSet2);

        subclassSetMap.put(sagittarius, subclasseSet3);
        subclassSetMap.put(moonlightSentinel, subclasseSet3);
        subclassSetMap.put(ghostSentinel, subclasseSet3);

        subclassSetMap.put(arcanaLord, subclasseSet4);
        subclassSetMap.put(elementalMaster, subclasseSet4);
        subclassSetMap.put(spectralMaster, subclasseSet4);

        subclassSetMap.put(archmage, subclasseSet5);
        subclassSetMap.put(mysticMuse, subclasseSet5);
        subclassSetMap.put(stormScreamer, subclasseSet5);
    }

 

Now I can see only 3rd proffesions however i can change even to same proffesions.. I mean I have main as Titan and subclass as Adventurer, and I can make another subclass with titan or adventurer, could anyone help me to fix this?

 

 

 

EDIT

 

Nvm, fixed by myself allready.. Thanks anyway.

 

Okey, someone lock it....

 

ALSO:

if you edit please make it more visible... so people like me [who can't see well] wouldn't have to read all :D

Guest
This topic is now closed to further replies.


  • Posts

    • @Seamless  find this guy , is the best guy that u can find , plus is ULTRA trusted , rare to find trusted in maxcheaters
    • Looking for someone to setup a website for me with account panel and donate panel, I require to explain me how to setup the account panel to be working with player's emails and my lineage2 server and donate panel in order to be working with my paypal and my lineage2 server. Contact me here in forum, I will pick the best offert. Thank you.
    • TILL START - LEFT 3 DAYS ! GRAND OPENING FROM - 12/052025, FRIDAY, 20:00 +3 GMT !
    • SOCNET — BIRTHDAY! Thank you for staying with us! A week of maximum gifts, bonuses, and discounts! Today we celebrate the SOCNET project’s birthday — and YOU get the gifts! We’ve prepared powerful promotions across all our services: ⭐ SOCNET STORE — SHOP (website/telegram) 1. Promo code BIRTHDAY — 20% discount Use it for any product purchase! 2. Gift for a large purchase Spend $200 on any products and choose any item up to $10 — for free! 3. Gift balance for a comment in our store threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐ SOCNET SMM PANEL 1. Top-up = bonus Top up your balance by $100 and get +$5 to your balance. After topping up — create a ticket in the panel. 2. Gift balance for a comment in our SMM Panel threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐SOCNET STARS — BOT FOR BUYING TELEGRAM STARS/PREMIUM 1. Large purchase = huge bonus Buy >1000 Stars in one transaction and get +100 Stars as a gift! After purchase, write to support. 2. Gift balance for a comment in our bot threads for star purchases "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. Leave a comment: ➡ 1 forum = +50 Stars to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐SOCNET SMS SERVICE OF VIRTUAL NUMBERS 1. Top-up with bonus Top up your balance by $50 and get +$10 as a gift. After topping up — simply write to support. 2. Gift balance for a comment in our SMS service threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. Let’s celebrate together! Promotions are valid from 02.12.2025 to 07.12.2025 inclusive. Don’t miss it — these are the best conditions of the year! 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 & Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • SOCNET — BIRTHDAY! Thank you for staying with us! A week of maximum gifts, bonuses, and discounts! Today we celebrate the SOCNET project’s birthday — and YOU get the gifts! We’ve prepared powerful promotions across all our services: ⭐ SOCNET STORE — SHOP (website/telegram) 1. Promo code BIRTHDAY — 20% discount Use it for any product purchase! 2. Gift for a large purchase Spend $200 on any products and choose any item up to $10 — for free! 3. Gift balance for a comment in our store threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐ SOCNET SMM PANEL 1. Top-up = bonus Top up your balance by $100 and get +$5 to your balance. After topping up — create a ticket in the panel. 2. Gift balance for a comment in our SMM Panel threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐SOCNET STARS — BOT FOR BUYING TELEGRAM STARS/PREMIUM 1. Large purchase = huge bonus Buy >1000 Stars in one transaction and get +100 Stars as a gift! After purchase, write to support. 2. Gift balance for a comment in our bot threads for star purchases "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. Leave a comment: ➡ 1 forum = +50 Stars to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. ⭐SOCNET SMS SERVICE OF VIRTUAL NUMBERS 1. Top-up with bonus Top up your balance by $50 and get +$10 as a gift. After topping up — simply write to support. 2. Gift balance for a comment in our SMS service threads "Happy Birthday, SOCNET. My username/email is": BHW, BFD, voided, nulled, and patched forums. ➡ 1 forum = $1 to your balance! Send screenshots of your posts to support through the listed contacts, include your login/email, and receive the bonus on your account. Let’s celebrate together! Promotions are valid from 02.12.2025 to 07.12.2025 inclusive. Don’t miss it — these are the best conditions of the year! 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 & 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