Issue information

Issue ID
#4206
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Apr 25, 2010 19:01
Last Post
Hercules Elf Bot
Dec 13, 2011 21:23
Confirmation
N/A

Hercules Elf Bot - Apr 25, 2010 19:01

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

The script for Tiraya Bonnet (5395) is incorrect.

Current script:
CODE
bonus bMaxHP,100; bonus bLuk,3;


Aegis script:
CODE
item Tiraya_Bonnet
    event OnStartEquip:
        var temp = GetRefineLevel [LOCATION_HEAD2]
        var temp2 = temp * 20
        AddExtParam User VAR_MAXHPAMOUNT 100+temp2
    return
    event OnFinishEquip:
        var temp = GetRefineLevel [LOCATION_HEAD2]
        var temp2 = temp * 20
        SubExtParam User VAR_MAXHPAMOUNT 100+temp2
    return


Description:
CODE
A souvenir hat to celebarate the 4th Anniversary of Europe Ragnarok Online.
Each refine increases your HP.
Max HP + 100, LUK + 3


Seems like both the description and the script are sorta incorrect, seeing that the script does not have the refine HP increase and the LUK is not supposed to be there?

The correct script according to the Aegis script would be:
CODE
bonus bMaxHP,100+(getrefine()*20);