Issue information

Issue ID
#4714
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Jan 15, 2011 4:17
Last Post
Hercules Elf Bot
Mar 5, 2012 15:39
Confirmation
N/A

Hercules Elf Bot - Jan 15, 2011 4:17

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

Hi; on the Lovers Quest script we have a requirement lv. of 60:

CODE
ein_in01,31,138,3       script  Calla#ein       90,{
        if (BaseLevel < 60) {
                close;


But there is this too:

CODE
ein_in01,200,101,5      script  Clitzer#ein     854,{
        if ((EIN_LOVERQ == 3) && (countitem(1901) == 1)) {
                percentheal 100,0;
                delitem 1901,1; //Violin
                set EIN_LOVERQ,5;
                if (BaseLevel < 41) {
                        getexp 610,0;
                }
                else if (BaseLevel < 61) {
                        getexp 6000,0;
                }
                else if (BaseLevel < 81) {
                        getexp 30000,0;
                }
                else if (BaseLevel < 99) {
                        getexp 200000,0;
                }
                close;


CODE
ein_in01,31,138,3       script  Calla#ein       90,{
        if (EIN_LOVERQ == 16) {
                nude;
                percentheal 100,0;
                set EIN_LOVERQ,17;
                if (BaseLevel < 41) {
                        getexp 610,0;
                }
                else if (BaseLevel < 61) {
                        getexp 6000,0;
                }
                else if (BaseLevel < 81) {
                        getexp 30000,0;
                }
                else if (BaseLevel < 99) {
                        getexp 200000,0;
                }
                close;


Officially (almost in Iro) the quest don´t have level requirement:
http://irowiki.org/wiki/Lovers_Quest

/no1