Issue information

Issue ID
#2942
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Apr 4, 2009 3:27
Last Post
Hercules Elf Bot
Dec 13, 2011 20:32
Confirmation
N/A

Hercules Elf Bot - Apr 4, 2009 3:27

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

At item_db.txt, Ribbon_Of_Bride(5801) have wrong script
It should check for Heal lv 10 instend of Increase Agi skill
CODE
if (getskilllv("AL_INCAGI") == 10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; }

It should be
CODE
if (getskilllv("AL_HEAL") == 10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; }