Issue information

Issue ID
#614
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Dec 14, 2007 4:34
Last Post
Hercules Elf Bot
Feb 21, 2012 7:59
Confirmation
N/A

Hercules Elf Bot - Dec 14, 2007 4:34

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

Well for some reason the item isn't droping after the monster is killed so either the makeitem script command is bugged or the set when the monsters are killed isnt attatching to the player so the mobs are spawned but its not counting the monster's death the other thing i didnt think you could use a set varible which has a period infront of it either O.o but anyone have any clues on whats up this is an official script too.



CODE
//----------------------------------------------------------------------------
// Kiehl's Room; Receiver (Gives black keycards upon killing mobs)
//----------------------------------------------------------------------------
kh_kiehl01,17,39,0    script    Receiver    111,{
    if (.KHKilled < 1) {
        mes "^333333*BBBZZZ*^000000";
        if (KielHyreQuest == 74) {
            next;
            mes "[????]";
            mes "^333333*Bzzzz...*";
            mes "I've never seen you";
            mes "before. Did Father send";
            mes "you to kill me? We'll just";
            mes "see about that! Go ahead,";
            mes "try to find me, adventurer.^000000.";
            set KielHyreQuest,76;
        }
        close2;
        set .KHKilled,2;
        monster "kh_kiehl01",16,32,"Alicel",1739,1,"Receiver::OnMyMobDead";
        monster "kh_kiehl01",18,31,"Aliot",1740,1,"Receiver::OnMyMobDead";
        end;
    }

    else {
        end;
    }

OnMyMobDead:
    set .KHKilled,.KHKilled-1;
    if (.KHKilled < 1) {
        makeitem 7506,1,"this",19,36;
        set .KHKilled,0;
    }
    end;
}