[FF][FIXED] Dual class pomander

All fixed or invalid bug reports are here.

Moderator: CostyKiller

Saint77
Posts: 170
Joined: 08 May 2018 07:23

[FF][FIXED] Dual class pomander

Post by Saint77 »

Hi Costy, when you awaken on dual with adena you receive pomander dual class but the npc says you dont have necesary items to learn the skills. Same think when you reaweken.
User avatar
CostyKiller
Site Admin
Posts: 1113
Joined: 02 Apr 2013 16:09

Re: [FF] Dual class pomander

Post by CostyKiller »

Is this still valid after the latest updates ?
voronius
Posts: 42
Joined: 09 Aug 2014 02:54

Re: [FF] Dual class pomander

Post by voronius »

When you awaken dual and main with the scroll of afterlife quest item (you do the awakening quest) the pomanders work fine.
User avatar
CostyKiller
Site Admin
Posts: 1113
Joined: 02 Apr 2013 16:09

Re: [FF] Dual class pomander

Post by CostyKiller »

Thanks for testing, but it seems the bug report was about paying to change class.
voronius
Posts: 42
Joined: 09 Aug 2014 02:54

Re: [FF] Dual class pomander

Post by voronius »

I will try that soon. Wait 1-2 days. Gotta make some money too, it's probably 100 kk adena or so.
voronius
Posts: 42
Joined: 09 Aug 2014 02:54

Re: [FF] Dual class pomander

Post by voronius »

For the main class the pomanders you get when you pay they are working fine. I just tested it.
Gonna report later for dual.
voronius
Posts: 42
Joined: 09 Aug 2014 02:54

Re: [FF] Dual class pomander

Post by voronius »

About the dual class awakening, when you pay for it, the bug is still there and the problem is that
when you pay to awaken the dual class it gives you pomanders for main class and this is a bug with potential for exploit (2 extra revelation skills on main).
Quote from https://l2wiki.com/Revelation_Skills :
"To learn Revelation Skills, you need a Chaos Pomander / Chaos Pomander (Dual Class). After the Awakening the main and the dualclass get each item by 2. "
There are 2 different items and the script for awakening should check if you're on dual and give you the
Chaos Pomander (Dual Class) item not the other one.

I think the item ids are :
37374 for Chaos Pomander
and
37375 for Chaos Pomander (Dual Class)

So you have to find the script behind that popup for class change and
check if dual class is active give dual class pomander
like :

Code: Select all

giveItems(player, player.isDualClassActive() ? CHAOS_POMANDER_DUAL_CLASS : CHAOS_POMANDER, 2);
and use the right ids

follow the example in dist\game\data\scripts\ai\areas\TalkingIsland\AwakeningMaster.java

When you reawaken your dual class at Raina(?) for 100kk you get Chaos Pomander (Dual Class) now and they work as expected, so that's good. I just tested it, it works ok.
voronius
Posts: 42
Joined: 09 Aug 2014 02:54

Re: [FF] Dual class pomander

Post by voronius »

I know how you can fix it but phpbb won't let me send anything not even PMs, atm.
User avatar
CostyKiller
Site Admin
Posts: 1113
Joined: 02 Apr 2013 16:09

Re: [FF] Dual class pomander

Post by CostyKiller »

Ok, I will check it.
User avatar
CostyKiller
Site Admin
Posts: 1113
Joined: 02 Apr 2013 16:09

Re: [FF] Dual class pomander

Post by CostyKiller »

I made a modification, it will be applied at next update.
Locked