Hercules Elf Bot - May 22, 2012 18:56
Originally posted by [b]michieru[/b]
Genetic item from special pharmacy a wrong they should do:
Enriched White PotionZ Recover 1000 HP (fixed value, stats dont matter), Increase HP's natural recovery rate by 20%, 500 seconds duration.
Vitata500 Increases SP by +5%, Increase SP's natural recovery rate by 20%, 500 seconds duration. Recover 200 SP (fixed)
Enrich Celermine Juice Increases attack speed by 10% (Stacks with other aspd potions), 500 seconds duration.
Cure Free Recover from a variety of abnormal conditions (Silence, Bleeding, Curse, Poison, Undead). Recover 500 HP (fixed)
Increase HP Potion (Small) Increases max HP by (500 + 10 / 3 * BaseLevel), 2% HP recovery. 500 seconds duration.
Increase HP Potion (Medium) Increases max HP by (1500 + 10 / 3 * BaseLevel), 3% HP recovery. 500 seconds duration.
Increase HP Potion (Large) Increases max HP by (2500 + 10 / 3 * BaseLevel), 5% HP recovery. 500 seconds duration.
Increase SP Potion (Small) Increases max SP by (-5 + BaseLevel/10)%, SP recovery 2%. 500 seconds duration.
Increase SP Potion (Medium) Increases max SP by (BaseLevel/10)%, SP recovery 4%. 500 seconds duration.
Increase SP Potion (Large) Increases max SP by (5 + BaseLevel/10)%, SP recovery 8%. 500 seconds duration.
Source: http://irowiki.org/wiki/Special_Pharmacy
When it's said fix it's fix no vit int bonus. Tested on iRo.
Hercules Elf Bot - Jun 1, 2012 8:27
Originally posted by [b]michieru[/b]
bump
Hercules Elf Bot - Jun 3, 2012 15:09
Originally posted by [b]Vali[/b]
+1the scripts are not correct.
Hercules Elf Bot - Jun 9, 2012 21:04
Originally posted by [b]Kenpachi[/b]
Can't fix Enrich Celermine Juice (#12437) because there is no status that could be used. (Must be able to stack with other ASPD potions.)
Can't fix Increase HP/SP Potions (#12422-#12427) because there is no status that could be used. (Must increase HP/SP by a [b]fixed[/b] value.)
Everything else was fixed in [rev=16250].
Moving this to the Core section to make a core developer create the missing statuses.
This post has been edited by
Kenpachi
on Jun 9, 2012 21:05
Hercules Elf Bot - Jun 26, 2012 13:16
Originally posted by [b]michieru[/b]
Any news?
Hercules Elf Bot - Jun 26, 2012 23:01
Originally posted by [b]Lighta[/b]
Actually Enriched White PotionZ will still benefit vit bonus from the precedent change so it's not fixed for me :
You should use heal insteand itemheal to get a real fixed heal amount.
About your maxhp maxsp issue with a fixed value : bMaxHP and bMaxSP will do the job :
[quote]
case SP_MAXSP:
if(sd->state.lr_flag == 2)
break;
val += (int)status->max_sp;
status->max_sp = (unsigned int)val;
break;
[/quote]
Hercules Elf Bot - Jul 19, 2012 9:47
Originally posted by [b]Kenpachi[/b]
BUMP!
Hercules Elf Bot - Jul 19, 2012 12:49
Originally posted by [b]malufett[/b]
[quote]Can't fix Enrich Celermine Juice (#12437) because there is no status that could be used. (Must be able to stack with other ASPD potions.)[/quote]
it already defined... use 'SC_EXTRACT_SALAMINE_JUICE' and val1 holds the total aspd bonus....n% = 100%
Hercules Elf Bot - Jul 19, 2012 13:59
Originally posted by [b]Kenpachi[/b]
Additionally Cookie showed me that in [rev=15599] SC_INCASPDRATE was re-enabled.
Does SC_EXTRACT_SALAMINE_JUICE stack with SC_ASPDPOTION0-3, too?
So I just need a status change that increases/decreases the users HP/SP by a fixed amount.
This post has been edited by
Kenpachi
on Jul 19, 2012 14:00
Hercules Elf Bot - Jul 19, 2012 14:42
Originally posted by [b]malufett[/b]
[quote][color=#282828][font=helvetica, arial, sans-serif][size=3]Additionally Cookie showed me that in [/size][/font][/color][url="http://trac.rathena.org/changeset/15599"]r15599[/url][color=#282828][font=helvetica, arial, sans-serif][size=3] SC_INCASPDRATE was re-enabled.[/size][/font][/color]
[color=#282828][font=helvetica, arial, sans-serif][size=3]Does SC_EXTRACT_SALAMINE_JUICE stack with SC_ASPDPOTION0-3, too?[/size][/font][/color][/quote]
[size=4][color=#282828][font=helvetica, arial, sans-serif]in iRO and Aegis it stack with potions but I don't know with kRO I can't check ATM since some of the players don't want to give me some..XD[/font][/color][/size]
[size=4][color=#282828][font=helvetica, arial, sans-serif]IMO it is better to use '[/font][/color][color=#282828][font=helvetica, arial, sans-serif]SC_EXTRACT_SALAMINE_JUICE' because it uses '[/font][/color]SI_EXTRACT_SALAMINE_JUICE' even though it shows nothing in the client...[/size]
Hercules Elf Bot - Jul 20, 2012 3:36
Originally posted by [b]Cookie[/b]
Added SC_INCMHP and SC_INCMSP for fixed amounts. Updated the SQL files and text driven item_db files in the /db/. Please refer to the latest revision [rev=16454].
Hercules Elf Bot - Jul 20, 2012 6:16
Originally posted by [b]Kenpachi[/b]
You forgot item #12437, Cookie.
Hercules Elf Bot - Jul 20, 2012 7:06
Originally posted by [b]xazax[/b]
Wouldn't something like autobonus which is scriptable be more flexible?
I think we should extend autobonus functionality and remove some statuses.
Hercules Elf Bot - Jul 20, 2012 7:09
Originally posted by [b]malufett[/b]
auto bonus? something like?
Hercules Elf Bot - Jul 20, 2012 7:13
Originally posted by [b]Kenpachi[/b]
autobonus works with rates/triggers but I needed a permanent change/bonus.
This post has been edited by
Kenpachi
on Jul 20, 2012 7:14
Hercules Elf Bot - Jul 21, 2012 22:16
Originally posted by [b]Kenpachi[/b]
Fixed in [rev=16466].