Issue information

Issue ID
#1626
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Jun 6, 2008 16:31
Last Post
Hercules Elf Bot
Feb 21, 2012 9:46
Confirmation
N/A

Hercules Elf Bot - Jun 6, 2008 16:31

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

First version of my server was 11916 and quests_amatsu.txt was modified since.

All of my players that have done amatsu dungeon quests before v120xx have the same problem

CODE
ama_in02,115,177,7    script    Soldier#ama10    767,{
...
if (event_amatsu == 6) {
if (countitem(7160) > 0) {
            mes "[Jyuro]";
            mes "You have the ticket...";
            mes "Do you want me to send you now, or do you need a little instruction?";
            next;
....


The elder version set event_amatsu to 7 at the end of the quest.

So 2 solutions:
set
CODE
ama_in02,115,177,7    script    Soldier#ama10    767,{
...
if (event_amatsu >= 6) {

instead

or making a patch for the database (like this one, don't keep the script...):

CODE
update global_reg_value set value ='6' where str='event_amatsu' and  value='7';