Issue information

Issue ID
#2696
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 22, 2009 22:37
Last Post
Hercules Elf Bot
Mar 5, 2012 9:32
Confirmation
N/A

Hercules Elf Bot - Jan 22, 2009 22:37

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

It seems that after defeating the Quest Satan Morroc and after the 30 minutes passed where you can get a piece of Morroc skin from the Time-Space Gap, the Group of Evil doesn't re-activate again, leaving the spot blank. Even after 24 hours, it remains like that. It requires a server reboot for the Group of Evil to appear again.

I think the problem is in this code portion:

CODE
1933    OnTimer21600000:
1934        stopnpctimer;
1935        set $@re_moc,0;
1936        disablenpc "Time-Space Gap#edq";
1937        end;


it should be

CODE
1933    OnTimer21600000:
1934        stopnpctimer;
1935        set $@re_moc,0;
1936        donpcevent "Time-Space Gap#edq::OnDisable";
1937        end;


since the current code only disables the Time-Space Gap and doesn't enable the Group of Evil again.