Issue information

Issue ID
#3018
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Apr 25, 2009 1:00
Last Post
Hercules Elf Bot
Mar 5, 2012 13:09
Confirmation
N/A

Hercules Elf Bot - Apr 25, 2009 1:00

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

Tested on kro.

There are some things in Blacksmith job quest scripts which are different in oficial servers:

QUOTE
select("Credit:Integrity:Money:Rhetoric");
set .@black_q,.@black_q+10;

Should be:
QUOTE
if (select("Credit:Integrity:Money:Rhetoric") == 1)
set .@black_q,.@black_q+10;


QUOTE
select("Rhetoric:Credit:Money:Experience");
set .@black_q,.@black_q+10;

Should be:
QUOTE
if (select("Rhetoric:Credit:Money:Experience") == 2)
set .@black_q,.@black_q+10;


Also, when you fail the test twice, you wont need to repeat it again. Then you will have to continue the quest finding the items. I cant translate the dialogs as I dont understand korean languaje.

This post has been edited by Ivion: Apr 24 2009, 06:02 PM