Issue information

Issue ID
#3260
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jun 16, 2009 21:51
Last Post
Hercules Elf Bot
Mar 5, 2012 14:14
Confirmation
N/A

Hercules Elf Bot - Jun 16, 2009 21:51

Originally posted by [b]Barron-Monster[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3260

CODE
            if (JobLevel > 48) {
                mes "[Assassin 'Khai']";
                mes "Wait, Job level " + JobLevel + "?! I can see you've been training pretty hard! My bosses will like this~";
                next;
                mes "[Assassin 'Khai']";
                mes "Did you finish the form? Alright, go ahead and give it to me. Give me a second and I'll transport you to the Test Hall.";
                next;
                mes "[Assassin 'Khai']";
                mes "Alright then,";
                mes "best of luck to you!";
                close2;
                set ASSIN_Q3,1;
                set ASSIN_Q,1;
                warp "in_moc_16",19,144;
                end;
            }
            else if (JobLevel < 49) {
                mes "[Assassin 'Khai']";
                mes "Well, you passed";
                mes "the requirements.";
                mes "Not bad at all.";
                next;
                mes "[Assassin 'Khai']";
                mes "Go ahead and give";
                mes "me the form when you're";
                mes "done filling it out.";
                mes "Alright, thanks.";
                next;
                mes "[Assassin 'Khai']";
                mes "I'll transport you";
                mes "to the Test Hall.";
                mes "Best of luck~";
                close2;
                set ASSIN_Q3,2;
                set ASSIN_Q,1;
                warp "in_moc_16",19,144;
                end;
            }

Should be < 48 and > 49... Because here it's more benefic to be < 50..
CODE
            if (JobLevel > 48) {
                mes "[Assassin 'Khai']";
                mes "Ho? Job Level " + JobLevel + "?! You must have been training really hard. The bosses will like that for sure...";
                next;
                mes "[Assassin 'Khai']";
                mes "Are you done filling out the form? Alright, give it to me so I can send you to the Test Hall. Good luck~";
                next;
                set ASSIN_Q3,1;
                set ASSIN_Q,1;
                warp "in_moc_16",19,144;
                end;
            }
            else if (JobLevel < 49) {
                mes "[Assassin 'Khai']";
                mes "Not bad. You fulfilled our requirements. Not bad at all. Now are you done filling out the form?";
                next;
                mes "[Assassin 'Khai']";
                mes "Then give me the form so that I can send you to the Test Hall, alright?";
                mes "Good luck...";
                next;
                set ASSIN_Q3,2;
                set ASSIN_Q,1;
                warp "in_moc_16",19,144;
                end;
            }

Same here.