Issue information

Issue ID
#5601
Status
Fixed
Severity
Fair
Started
Hercules Elf Bot
Apr 21, 2012 17:07
Last Post
Hercules Elf Bot
May 18, 2012 11:42
Confirmation
Yes (6)
No (0)

Hercules Elf Bot - Apr 21, 2012 17:07

Originally posted by [b]Poseid0n[/b]
These skills don't consume Items (elemental stones) required.

Poseidon

Hercules Elf Bot - Apr 25, 2012 14:53

Originally posted by [b]adan-01[/b]
not so sure about this mate.. but I tested it, with ventus, and it was workng as intended.. did you use your GM account? just to check.. hehehe

I used the GM account, with the items in the inventory, and it was working.. but, maybe someone else could confirm this too?

Hercules Elf Bot - Apr 25, 2012 15:35

Originally posted by [b]Poseid0n[/b]
No, I use a player account, and when I summon, any item is consumed.

Hercules Elf Bot - Apr 26, 2012 0:21

Originally posted by [b]adan-01[/b]
Hey! you're right.. it;s not consuming the items.. I can confirm this too.. I think I was testing then brathena the other day :S my bad

Hercules Elf Bot - Apr 26, 2012 16:47

Originally posted by [b]Vali[/b]
Confirmed here also.

Hercules Elf Bot - Apr 28, 2012 4:26

Originally posted by [b]Igniz[/b]
Find in skill.c:
[CODE]
if( itemid_isgemstone(req.itemid[i]) && skill != HW_GANBANTEIN )
{
if( sd->special_state.no_gemstone )
{ //Make it substract 1 gem rather than skipping the cost.
if( --req.amount[i] < 1 )
req.itemid[i] = 0;
}
if(sc && sc->data[SC_INTOABYSS])
{
if( skill != SA_ABRACADABRA )
req.itemid[i] = req.amount[i] = 0;
else if( --req.amount[i] < 1 )
req.amount[i] = 1; // Hocus Pocus allways use at least 1 gem
}
}
[/CODE]

Add below:
[CODE]
if( skill == NC_SHAPESHIFT || skill == GN_FIRE_EXPANSION || skill == SO_SUMMON_AGNI ||
skill == SO_SUMMON_AQUA || skill == SO_SUMMON_VENTUS || skill == SO_SUMMON_TERA )
{
req.itemid[lv-1] = skill_db[j].itemid[lv-1];
req.amount[lv-1] = skill_db[j].amount[lv-1];
}
}
[/CODE]

This will delete the items required for shape shift, fire expansion (that isn't working too) and the elemental ones.

Hercules Elf Bot - May 2, 2012 3:04

Originally posted by [b]GM Takumirai[/b]
can someone confirm the fix?

Hercules Elf Bot - May 3, 2012 2:17

Originally posted by [b]Ind[/b]
Igniz thank you once again. Fixed in [rev=16059]

Hercules Elf Bot - May 3, 2012 3:01

Originally posted by [b]Igniz[/b]
Happy to help you /no1

Also i posted days ago this fix, can you check it ?
[url="http://rathena.org/board/tracker/issue-5603-genetic-change-material-missing-items/"]http://rathena.org/board/tracker/issue-5603-genetic-change-material-missing-items/[/url]

Thanks! /bo