viewing paste Unknown #53549 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
if (!quest_random) {
                mes "[Swordman Guildsman]";
                mes("Last Question.");
                mes("If.....");
                next();
            }
            switch(quest_random) {
                case 1:
                    mes "[Swordman Guildsman]";
                    mes("1+3+5 = ???");
                    next();
                    input(.@guess);
                    if (.@guess == 9) {
                        mes "[Swordman Guildsman]";
                        mes "Then I'll end your training process and send you to the Swordman Guild.";
                        callfunc "F_NvErase",1;
                        close2;
                        savepoint "izlude",128,98; // Old coordinates: (95,104)
                        warp "izlude_in",74,167;
                        close();
                    } else {
                        mes("[Swordman Guildsman]");
                        mes("Sorry.");
                        close();
                    }
                case 2:
                    mes "[Swordman Guildsman]";
                    mes("5+9+5 = ???");
                    next();
                    input(.@guess);
                    if (.@guess == 19) {
                        mes "[Swordman Guildsman]";
                        mes "Then I'll end your training process and send you to the Swordman Guild.";
                        callfunc "F_NvErase",1;
                        close2;
                        savepoint "izlude",128,98; // Old coordinates: (95,104)
                        warp "izlude_in",74,167;
                        close();
                    } else {
                        mes("[Swordman Guildsman");
                        mes("Sorry.");
                        close();
                }
            }
        }
    }
}
Viewed 992 times, submitted by Guest.