Issue information

Issue ID
#3129
Status
Fixed
Severity
None
Started
Hercules Elf Bot
May 25, 2009 17:15
Last Post
Hercules Elf Bot
Dec 25, 2011 16:54
Confirmation
N/A

Hercules Elf Bot - May 25, 2009 17:15

Originally posted by [b]_Okuz_[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3129

I'm trying to finish the bonus for some items and i think that some bonuses are missing in item_bonus.txt or in eathena SRC. If any missing bonuses already been done by some dev please put it in item_bonus.txt to finish it.

Here is the itens that i want to correct bonus:

CODE
5340,Deprotai_Doll_Hat,Deporte Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,354,{ bonus bStr,2; bonus2 bSubRace,RC_DemiHuman,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,100,1; },{},{}
5341,Claris_Doll_Hat,Clarice Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,355,{ bonus bInt,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{} // missing bonus for "Recover +x HP when defeating a monster with a magical attack." [x=numerical value] PS: I saw a similar bonus but with physical attack!
5342,Sorin_Doll_Hat,Sorin Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,356,{ bonus bDex,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{} // missing bonus for "When physically attacking there is a chance that for x seconds you'll receive y+n. [x=time(miliseconds o.o) y=condition (ATK,ASPD,...) n=value (number or %)]" In this case ATK+50
5343,Tayelin_Doll_Hat,Tailring Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,357,{ bonus bAgi,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; },{},{}
5344,Binit_Doll_Hat,Vinit Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,358,{ bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{} // missing bonus "missing bonus for "When physically attacking there is a chance that for x seconds you'll receive y+n. [x=time y=condition (ATK,ASPD,...) n=value (number or %)]" In this case ASPD +5%
5345,Debril_Doll_Hat,W Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,359,{ bonus bLuk,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddEle,5,9; bonus2 bMagicAddEle,5,9; },{},{}


PS: A small "error" in item_bonus.txt

CODE
bonus2 bMagicAddEle,n,x     +x% magical damage against element n
                            n:     0=Neutral, 1=Water, 2=Earth, 3=Fire, 4=Wind, 5=Poison,
                                6=Holy, 7=Dark, 8=Spirit, 9=Undead


Missing ; near x clause.

Sorry for the english if you find some error in grammar =/.

This post has been edited by _Okuz_: May 25 2009, 01:20 PM

Hercules Elf Bot - Dec 11, 2011 17:41

Originally posted by [b]Kenpachi[/b]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
5340,Deprotai_Doll_Hat,Deporte Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,354,{ bonus bStr,2; bonus2 bSubRace,RC_DemiHuman,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,100,1; },{},{}
[/quote]Current script:[CODE]
{bonus2 bSubRace,RC_DemiHuman,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; },{},{}
[/CODE][url="http://db.irowiki.org/db/item-info/5340/"]iRO Wiki[/url][list]
[*][i]bonus bStr,2;[/i] must be removed
[*][i]bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20;[/i] is wrong (casts on attacker) - must be [i]bonus4[/i] [i]bAutoSpellWhenHit,"AL_ANGELUS",10,20,0;[/i] (casts on self)
[/list]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
5341,Claris_Doll_Hat,Clarice Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,355,{ bonus bInt,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{}
// missing bonus for "Recover +x HP when defeating a monster with a magical attack." [x=numerical value] PS: I saw a similar bonus but with physical attack!
[/quote]Current script:[CODE]
{ bonus2 bSubRace,RC_DemiHuman,5; bonus bInt,2; bonus bMagicHPGainValue,50; },{},{}
[/CODE][url="http://db.irowiki.org/db/item-info/5341/"]iRO Wiki[/url][list]
[*][i]bonus bInt,2;[/i] must be removed
[/list]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
5342,Sorin_Doll_Hat,Sorin Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,356,{ bonus bDex,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{}
// missing bonus for "When physically attacking there is a chance that for x seconds you'll receive y+n. [x=time(miliseconds o.o) y=condition (ATK,ASPD,...) n=value (number or %)]" In this case ATK+50
[/quote]Current script:[CODE]
{ bonus2 bSubRace,RC_DemiHuman,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
[/CODE]iRO Wiki - not listed; Changes according to iRO idnum2itemdesctable.txt[list]
[*][i]bonus [/i]bDex[i],2;[/i] must be removed
[/list]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
5343,Tayelin_Doll_Hat,Tailring Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,357,{ bonus bAgi,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; },{},{}
[/quote]Current script:[CODE]
{ bonus2 bSubRace,RC_DemiHuman,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; },{},{}
[/CODE][url="http://db.irowiki.org/db/item-info/5343/"]iRO Wiki[/url][list]
[*][i]bonus [/i]bAgi[i],2;[/i] must be removed
[/list]

[quote name='_Okuz_' timestamp='1243271700' post='3129']
5344,Binit_Doll_Hat,Vinit Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,358,{ bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; },{},{} // missing bonus "missing bonus for "When physically attacking there is a chance that for x seconds you'll receive y+n. [x=time y=condition (ATK,ASPD,...) n=value (number or %)]" In this case ASPD +5%
[/quote]Current script:[CODE]
{ bonus2 bSubRace,RC_DemiHuman,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{}
[/CODE]iRO Wiki - not listed; Changes according to iRO idnum2itemdesctable.txt[list]
[*][i]bonus [/i]bVit[i],2;[/i] must be removed
[/list]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
5345,Debril_Doll_Hat,W Doll Hat,5,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,359,{ bonus bLuk,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddEle,5,9; bonus2 bMagicAddEle,5,9; },{},{}
[/quote]Current script:[CODE]
{ bonus2 bSubRace,RC_DemiHuman,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; },{},{}
[/CODE]iRO Wiki - not listed; Changes according to iRO idnum2itemdesctable.txt[list]
[*][i]bonus [/i]bLuk[i],2;[/i] must be removed
[*][i]bonus2 bSubRace,RC_Undead,5;[/i] must be removed
[/list]
[quote name='_Okuz_' timestamp='1243271700' post='3129']
PS: A small "error" in item_bonus.txt
CODE
bonus2 bMagicAddEle,n,x +x% magical damage against element n n: 0=Neutral, 1=Water, 2=Earth, 3=Fire, 4=Wind, 5=Poison, 6=Holy, 7=Dark, 8=Spirit, 9=Undead

Missing [b];[/b] near [b]x[/b] clause.
[/quote]Confirmed.

This post has been edited by Kenpachi on Dec 12, 2011 21:08

Hercules Elf Bot - Dec 12, 2011 21:18

Originally posted by [b]Kenpachi[/b]
Fixed in [rev=15080].