viewing paste Bossnia | E

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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
//===== Hercules Script ======================================
//= Bossnia Warp NPCs
//===== By: ==================================================
//= Masao
//===== Current Version: =====================================
//= 1.2
//===== Description: =========================================
//= Bossnia MVP event.
//===== Additional Comments: =================================
//= 1.0 Converted from the official script.
//= 1.1 Optimized. [Euphy]
//= 1.2 Moved spawns and warps (by Masao) to this file. [Euphy]
//============================================================
 
// Entrance NPCs
//============================================================
prontera,132,125,4  script  Bossnia Staff#1 4_M_PHILMAN,{
    set .item, 607; //required item
    set .count, 5; //required number
    mes "[Riss]";
    mes "Hello?";
    mes "I found some beautiful places";
    mes "while I travelled all over the world.";
    mes "I am an adventurer.";
    mes "Haha~";
    next;
    mes "[Riss]";
    mes "What? My name is...";
    mes "'Bossnia Staff'?? No no...";
    mes "Well, my name is not so important.";
    mes "Sometimes you should be generous.";
    mes "No time for considering that kind of small stuff";
    mes "when you have to concentrate on more important things.";
    next;
    mes "[Riss]";
    mes "Hum... anyway I want to say... something..";
    mes "While I was travelling through some places,";
    mes "I found a really fearful place.";
    next;
    mes "[Riss]";
    mes "Most of the time when you come to a place,";
    mes "there is one strong and fearful monster.";
    mes "Isn't it?";
    next;
    mes "[Riss]";
    mes "But... but... in there...";
    mes "There are lots of fearful and strong monsters in there...";
    mes "That was really frightful.";
    next;
    mes "[Riss]";
    mes "If I had reacted a bit later... a few seconds...";
    mes "I might have been killed.";
    next;
    mes "[Riss]";
    mes "What?";
    mes "You want to go in there?";
    mes "Oh~ Boy~ you didn't get me.";
    mes "In there.......";
    next;
    mes "[Riss]";
    mes "Uh... you already know?";
    mes "Although you know the place, you want to go in...";
    mes "Good, I will send you there.";
    mes "But after you went there, don't hold";
    mes "a grudge against me. Also it costs 5,000 zeny.";
    next;
    if (countitem(.item) < .count){
        mes "[Riss]";
        mes "You don't have the required item:";
        mes ""+.count+"x "+.item+"";
        close;
    }else{
        mes "[Riss]";
        mes "Would you really like to take the challenge?";
        mes "Ok, just choose the course.";
        next;
        set .@i, select("First","Second","Third","Fourth");
        mes "[Riss]";
        mes "Take care, boy~";
        mes "Don't hold a grudge against me.";
        close2;
        delitem .item, .count;
        warp "bossnia_0"+.@i,rand(202,204),rand(202,204);
        end;
    }
    mes "[Riss]";
    mes "You don't have enough money...";
    mes "Come back when you have at least 5,000 zeny.";
    close;
}
geffen,124,169,4    duplicate(Bossnia Staff#1)  Bossnia Staff#2 4_M_PHILMAN
payon,165,150,4 duplicate(Bossnia Staff#1)  Bossnia Staff#3 4_M_PHILMAN
morocc,142,100,4    duplicate(Bossnia Staff#1)  Bossnia Staff#4 4_M_PHILMAN
lighthalzen,203,140,4   duplicate(Bossnia Staff#1)  Bossnia Staff#5 4_M_PHILMAN
rachel,132,144,4    duplicate(Bossnia Staff#1)  Bossnia Staff#6 4_M_PHILMAN
 
Viewed 1324 times, submitted by schan.