Issue information

Issue ID
#5234
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Jan 13, 2012 20:00
Last Post
Hercules Elf Bot
Apr 4, 2012 7:07
Confirmation
N/A

Hercules Elf Bot - Jan 13, 2012 20:00

Originally posted by [b]Nameless2you[/b]
I wanted to let know that the item 1183 also known as Brave Assaulter's Katzbalger has the the description of:

[quote]A specialty Two-handed Sword made to rush at the enemys position and especially designed for battles against humanoids.
STR + 2
Increases physical attack against Demi human monster by 55%.
[b]Adds 20% defense to the Demi human monster.[/b]
Indestructible (except in upgrade attempts).[/quote]

I've highlighted the part I'm inquiring about.
Which is why is the script for such a description:

[quote]{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bIgnoreDefRate,RC_DemiHuman,20; bonus bUnbreakableWeapon,0; },{},{}[/quote]

Is it an incorrect translation or is this infact an incorrect script?
This is in both renewal and pre-renewal.
I took the liberty of posting it here because I doubt it'll else be picked up in eA.

This post has been edited by Nameless2you on Jan 13, 2012 20:01

Hercules Elf Bot - Jan 13, 2012 21:36

Originally posted by [b]Slim[/b]
[url="http://ratemyserver.net/index.php?iname=1183&itype=-1&page=item_db&quick=1&isearch=Search"]http://ratemyserver.net/index.php?iname=1183&itype=-1&page=item_db&quick=1&isearch=Search[/url]

There are a few items with that description, and they all have the same code.

[code]bonus2 bIgnoreDefRate,RC_DemiHuman,X;[/code]

Check this to compare:
[url="http://ratemyserver.net/index.php?iname=1738&itype=-1&page=item_db&quick=1&isearch=Search"]http://ratemyserver.net/index.php?iname=1738&itype=-1&page=item_db&quick=1&isearch=Search[/url]

[quote]
Desc: [color=#00568A][font=verdana][size=3]Adds 20% defense to the Demi-human monster.[/size][/font][/color]
Code: [color=#00568A][font=verdana][size=3]bonus2 bIgnoreDefRate,RC_DemiHuman,20;[/size][/font][/color]
[/quote]

And also this, they both contain the same code, but their descriptions are different.

[url="http://ratemyserver.net/index.php?iname=1743&itype=-1&page=item_db&quick=1&isearch=Search"]http://ratemyserver.net/index.php?iname=1743&itype=-1&page=item_db&quick=1&isearch=Search[/url]

[quote]
Desc: [color=#00568A][font=verdana][size=3]Adds 20% defense bypassing on Demi-human monster.[/size][/font][/color]
Code: [color=#00568A][font=verdana][size=3]bonus2 bIgnoreDefRate,RC_DemiHuman,20;[/size][/font][/color]
[/quote]

This post has been edited by Slim on Jan 13, 2012 21:52

Hercules Elf Bot - Jan 14, 2012 13:30

Originally posted by [b]Nameless2you[/b]
Thing is RMS gets it's translations of eA as well as it's scripts, sooo it's basically just a copy with a besser view of items. Not helping in this case.
The
[quote][color=#282828][font=helvetica, arial, sans-serif][size=3]Desc: [/size][/font][/color][color=#00568A][font=helvetica, arial, sans-serif][size=3][font=verdana]Adds 20% defense bypassing on Demi-human monster.[/font][/size][/font][/color]
[color=#282828][font=helvetica, arial, sans-serif][size=3]Code: [/size][/font][/color][color=#00568A][font=helvetica, arial, sans-serif][size=3][font=verdana]bonus2 bIgnoreDefRate,RC_DemiHuman,20;[/quote][/font][/size][/font][/color]
makes sense
All the others don't. That's why I'm asking if you could possibly look into it, because it may mean that either the item scripts have to be updated or the descriptions are simply wrong in which case it isn't much of a big deal.

Hercules Elf Bot - Jan 17, 2012 3:14

Originally posted by [b]Xantara[/b]
iRO Wiki Database: [url="http://db.irowiki.org/db/item-info/1183/"]http://db.irowiki.org/db/item-info/1183/[/url]

[quote][b]Brave Assaulter's Katzbalger[/b]
A Two-handed Sword made to rush at the enemy's position, especially designed for battles against Demihumans.

Increases phyiscal damage to [Demi-Human] race targets by 55%.
[i][b]Physical attacks bypass the defense of [Demi-Human] race targets by 20%.[/b][/i]
Obtained with 100 Bravery Badge from Tierra Gorge Battlegrounds.

Stats:+2 Str
Damagable: No[/quote]

So.. it should be correct.

Hercules Elf Bot - Jan 18, 2012 6:37

Originally posted by [b]Slim[/b]
So I guess it's the descriptions that are wrong ^^;

Hercules Elf Bot - Mar 8, 2012 17:04

Originally posted by [b]Kenpachi[/b]
It's indeed the description that should be corrected.[CODE]
// ID: 1183
item BF_Two_Handed_Sword1
event OnStartEquip:
RaceAddDamage RACE_Human 55
SetIgnoreDefRace_Percent RACE_Human 20
return
event OnFinishEquip:
RaceSubDamage RACE_Human 55
ResetIgnoreDefRace_Percent RACE_Human 20
return
[/CODE]