Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #005127

  • 0 - None Assigned

  • Fixed

Issue Confirmations

  • Yes (0)No (0)
Photo

quests_13_1 bug

Posted by Hercules Bot on 19 December 2011 - 12:43 AM

Originally posted by Chilly
Munkenro#2 on moc_fild22b who gives you the test to kill mobsters before entering the new world is currently skipping some dialog which also bugs the quest logs and causes it to remain after finishing the quest.

suggested fix: move these 2 if statements before the one that starts with "if ($@ep13_test == 2) {"
    if (ep13_ryu == 20) {
        mes "[Munkenro]";
        mes "I am the head of the Three Kingdoms Alliance. You've come here for the discovery of the dimensional rift. Am I right?";
        next;
        mes "[Munkenro]";
        mes "Um. You're the one that";
        mes "did some favors before...";
        mes "Your name is " + strcharinfo(0) + "?";
        mes "I remember you.";
        next;
        mes "[Munkenro]";
        mes "Sikaiz retired from his position urgently. I am his replacement.";
        next;
        mes "[Munkenro]";
        mes "You don't need to know in detail all about it now. That's not important to you. Is it?";
        next;
        mes "[Munkenro]";
        mes "You are here for the discovery of the dimensional rift. I can't send you there right away. I know that you've passed your tests, but that's the past. You have not been tested by me. ~";
        next;
        mes "[Munkenro]";
        mes "So you need to be tested again. I don't have too much time to test you now. So let's just do a short test.";
        next;
        mes "[Munkenro]";
        mes "Now the soldiers here will start to attack you... If you survive, I will approve of you. Just do it in good time.";
        next;
        mes "[Munkenro]";
        mes "This can prove that you're strong enough. That's the minimum test I can perform.";
        next;
        changequest 10076,10077;
        set ep13_ryu,21;
        mes "[Munkenro]";
        mes "Once you get ready,";
        mes "just let me know.";
        close;
    }
    if (ep13_ryu == 21) {
        mes "[Munkenro]";
        mes "Are you ready??";
        mes "Let's start!";
        next;
        switch(select("Ready!!:Please, wait...")) {
        case 1:
            mes "[Munkenro]";
            mes "Ok, just have a good adventure.";
            next;
            mes "[Munkenro]";
            mes "If you are too late,";
            mes "it will be considered as a failure, so come back soon.";
            donpcevent "Head of the Alliance#moo::OnEnable";
            changequest 10077,10078;
            set ep13_ryu,22;
            close;
        case 2:
            mes "[Munkenro]";
            mes "If you hesitate,";
            mes "it means you fail.";
            mes "I will give you one more chance. Go ahead.";
            close;
        }
    }

Originally posted by Chilly
Fixed in 15400