Issue information

Issue ID
#1059
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Feb 27, 2008 6:12
Last Post
Hercules Elf Bot
Feb 27, 2008 6:12
Confirmation
N/A

Hercules Elf Bot - Feb 27, 2008 6:12

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

There is a bug with the script it is supposed to prevent asasinatinos during WoE times
the error is in the Agit check...


In the part

CODE
// ASSASSINATE SOMEBODY //
M_Kill:
if ($AgitStarted != 0) goto M_Busy;
mes "[Shifty Assassin]";



it should be

CODE
// ASSASSINATE SOMEBODY //
M_Kill:
if(agitcheck()) goto M_Busy;
mes "[Shifty Assassin]";