Issue information

Issue ID
#8549
Status
New
Severity
None
Started
Zia
Feb 25, 2015 8:40
Last Post
Slicer
Jun 20, 2015 3:36
Confirmation
Yes (1)
No (0)

Zia - Feb 25, 2015 8:40

Eleanor's Style Change does not let her gain Spirit Spheres. The skills require Spirit Spheres and since Spirit Spheres are not summoned, the skills miss.

[b]What Should Happen:[/b]

Eleanor has 2 modes: Fighting and Grappling. Each time Style Change is used, Eleanor changes between them.[list]
[*]In either mode, Eleanor obtains [url="http://irowiki.org/wiki/Spirit_Sphere"]Spirit Spheres[/url] at a 50% rate when attacking or taking damage
[*]When Eleanor is summoned, it is summoned in Fighting mode.
[*]A maximum of 10 Spirit Spheres can be active.
[/list]

source: [url="http://irowiki.org/wiki/Style_Change"]http://irowiki.org/wiki/Style_Change[/url]

More Proof that they should obtain Spirit Spheres:
[url="https://www.youtube.com/watch?v=qHS39b8AY-s"]https://www.youtube.com/watch?v=qHS39b8AY-s[/url]

[b]Result of Testing[/b]
[url="http://youtu.be/BY0yQehORZ8"]http://youtu.be/BY0yQehORZ8[/url]

Zia - Apr 10, 2015 16:36

bump

Anisotropic Defixation - May 7, 2015 4:23

Open battle.c and find[code=auto:0] if (sc->data[SC_STYLE_CHANGE] && rnd()%2) { TBL_HOM *hd = BL_CAST(BL_HOM,bl); if (hd) homun->addspiritball(hd, 10); //add a sphere } [/code]
change to:[code=auto:0] if (sc->data[SC_STYLE_CHANGE] && sc->data[SC_STYLE_CHANGE]->val1 == MH_MD_FIGHTING || sc->data[SC_STYLE_CHANGE]->val1 == MH_MD_GRAPPLING) { TBL_HOM *hd = BL_CAST(BL_HOM,src); //when attacking if ( hd && rnd()%2 ) homun->addspiritball(hd, 10); // According to WarpPortal, this is a flat 50% chance } [/code]
Open status.c and find:[code=auto:0] if ( opt&SCO_FIRST ) { hd->battle_status.hp = hom->hp; hd->battle_status.sp = hom->sp; } [/code]
change to:[code=auto:0] if ( opt&SCO_FIRST ) { hd->battle_status.hp = hom->hp; hd->battle_status.sp = hom->sp; if(hom->class_ == 6052) // Eleanor sc_start(&hd->bl,&hd->bl, SC_STYLE_CHANGE, 100, MH_MD_FIGHTING, -1); } [/code]

This post has been edited by Anisotropic Defixation on Jun 26, 2015 4:57

Slicer - Jun 20, 2015 3:36

bump