viewing paste MVP Room | 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 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
//===== rAthena Script =======================================
//= MvP Room
//===== Template By: =========================================
//= Soul
//===== Script Overhaul By: ==================================
//= Mysterious
//===== Current Version: =====================================
//= 2.2
//===== Compatible With: =====================================
//= rAthena SVN 
//===== Description: =========================================
//= A MvP Room with a Tool Dealer, Healer, and NPC that summons
//= MvPs, Mini Bosses, and Dungeon Monsters
//===== TODO: ================================================
// - Revise whole script
//===== Additional Comments: =================================
//= v1.0 - First release [Soul]
//= v1.1 - Fixed Credits [Mysterious]
//= v1.2 - Fixed Typos [Mysterious]
//= v1.3 - Fixed Sentences [Mysterious]
//= v1.4 - Friendly Messages [Mysterious]
//= v1.5 - Removed useless spaces [Mysterious]
//= v1.6 - Removed useless spaces (Again) [Mysterious]
//= v1.7 - Fixed more sentences [Mysterious]
//= v1.8 - Missed a typo [Mysterious]
//= v1.9 - Organized the script a little more [Mysterious]
//= v2.0 - Fixed and implemented proper duplicates [Mysterious]
//= v2.1 - Fixed Credits [Mysterious]
//= v2.2 - Fixed spacing between NPCs [Mysterious]
//============================================================
 
prontera,144,101,5  script  MvP Room    971,{
    mes "[ MvP Room ]";
    mes "Hello there!";
    mes "Would you like to test out the MvP Room?";
    next;
    menu "- Yeah Sure!",M_Yes,"- No Thanks!",M_No;
 
M_Yes:
next;
    mes "[ MvP Room ]";
    mes "Very well. Which room would you like to go into?";
    next;
    menu "- Room 1",M_r1,"- Room 2",M_r2,"- Room 3",M_r3,"- Room 4",M_r4,"- Room 5",M_r5;
 
M_r1:
    warp "pvp_n_1-2",96,101;
    close;
 
M_r2:
    warp "pvp_n_2-2",96,101;
    close;
 
M_r3:
    warp "pvp_n_3-2",96,101;
    close;
 
M_r4:
    warp "pvp_n_4-2",96,101;
    close;
 
M_r5:
    warp "pvp_n_5-2",96,101;
    close;
 
M_No:
next;
    mes "[ MvP Room ]";
    mes "Alright! Please come back when you think you're ready.";
    close;
}
 
 
// ============= Healer (Duplicates bottom of script)
pvp_n_2-2,98,106,5  script  Healer  914,{
 
    mes "[ Healer ]";
    mes "I have amazing healing powers!";
    mes "You look like a person who needs them..";
    mes "Want some?";
    next;
    menu "- Heal",-,"- No thanks",M_CANCEL;
        percentheal 100,100;
        mes "[ Healer ]";
        mes "Wonderfull, You are now healed!.";
        mes "Good luck!";
        close;
 
    M_CANCEL:
    mes "[ Healer ]";
    mes "Allright, come back if you need a heal.";
    close;
}
 
//====== Monster vs Player ======
pvp_n_1-2,96,106,5  script  MvP Master#1-2::MvP Master  766,{
    
    mes "[ MvP Master ]";
    mes "How can I help you?";
    next;
    menu "- MvP",M_MvP,"- Mini Boss",M_Mini,"- Dungeon Monster",M_Dungeon,"- Quit",M_CANCEL;
 
M_MvP:
next;
    mes "[ MvP Master ]";
    mes "Choose your MvP:";
    next;
    menu
 
     //-------------MvP Monsters-----------
    "- Amon Ra",  Amon,
    "- Baphomet", Bapho,
    "- Dark Lord",Dark,
    "- Doppelg?nger",DG,
    "- Dracula",Drac,
    "- Drake",Drake,
    "- Eddga",Eddga,
    "- Evil Snake Lored",ESL,
    "- Golden Thief Bug",GTB,
    "- Garm",Garm,
    "- Incarnation Samurai",Samu,
    "- Stormy Knight",SK,
    "- Lord of Death",LoD,
    "- Maya",Maya,
    "- Mistress",Missy,
    "- Moonlight Flower",Moony,
    "- Orc Hero",Hero,
    "- Orc Lord",Lord,
    "- Osiris",Osiris,
    "- Pharaoh",Phara,
    "- Phreeoni", Phree,
    "- Tao Gunka",Tao,
    "- Turtle General",TG,
    "- Quit",mvp_CANCEL;
 
    Amon:   monster "pvp_n_1-2.gat",117,99,"Amon Ra"        ,1511,1;close;
    Bapho:  monster "pvp_n_1-2.gat",117,99,"Baphomet"       ,1039,1; close;
    Dark:   monster "pvp_n_1-2.gat",117,99,"Dark Lord"      ,1272,1; close;
    DG: monster "pvp_n_1-2.gat",117,99,"Doppelganger"       ,1446,1;close;
    Drac:   monster "pvp_n_1-2.gat",117,99,"Dracula"        ,1389,1;close;
    Drake:  monster "pvp_n_1-2.gat",117,99,"Drake"          ,1112,1;close;
    Eddga:  monster "pvp_n_1-2.gat",117,99,"Eddga"          ,1115,1;close;
    ESL:    monster "pvp_n_1-2.gat",117,99,"Evil Snake Lord"    ,1418,1;close;
    GTB:    monster "pvp_n_1-2.gat",117,99,"Golden Thief Bug"   ,1086,1;close;
    Garm:   monster "pvp_n_1-2.gat",117,99,"Garm"           ,1252,1;close;
    Samu:   monster "pvp_n_1-2.gat",117,99,"Incantation Samurai"    ,1492,1;close;
    SK: monster "pvp_n_1-2.gat",117,99,"Stormy Knight"      ,1251,1;close;
    LoD:    monster "pvp_n_1-2.gat",117,99,"Lord of Death"      ,1373,1;close;
    Maya:   monster "pvp_n_1-2.gat",117,99,"Maya"           ,1147,1;close;
    Missy:  monster "pvp_n_1-2.gat",117,99,"Mistress"       ,1059,1;close;
    Moony:  monster "pvp_n_1-2.gat",117,99,"Moonlight Flower"   ,1150,1;close;
    Hero:   monster "pvp_n_1-2.gat",117,99,"Orc Hero"       ,1087,1;close;
    Lord:   monster "pvp_n_1-2.gat",117,99,"Orc Lord"       ,1190,1;close;
    Osiris: monster "pvp_n_1-2.gat",117,99,"Osiris"         ,1038,1;close;
    Phara:  monster "pvp_n_1-2.gat",117,99,"Pharaoh"        ,1157,1;close;
    Phree:  monster "pvp_n_1-2.gat",117,99,"Phreeoni"       ,1159,1;close;
    Tao:    monster "pvp_n_1-2.gat",117,99,"Tao Gunka"      ,1583,1;close;
    TG: monster "pvp_n_1-2.gat",117,99,"Turtle General"     ,1312,1;close;
 
 
// ===== Mini Boss =====
 
M_Mini:
next;
    mes "[ MvP Master ]";
    mes "Choose your Mini Boss:";
    next;
    menu 
 
  //------------------Mini Bosses----------------------
    "- Abysmal Knight",Abi,
    "- Am Mut",Am,
    "- Alice",Alice,
    "- Angeling",Angel,
    "- Arc Angeling",Arc,
    "- Cat O' Nine Tail",Cato,
    "- Chimera",Chim,
    "- Creamy Fear",Fear,
    "- Deviling",Devi,
    "- Eclipse",Ecli,
    "- Ghostring",GH,
    "- Hydrolancer",Hydro,
    "- Mastering",Master,
    "- Maya Purple",MP,
    "- Owl Baron",OB,
    "- Owl Duke",OD,
    "- Zealotus",Zea,
    "- Quit",mvp_CANCEL;
 
 
    Abi:    monster "pvp_n_1-2.gat",117,99,"Abysmal Knight" ,1219,1;close;
    Am: monster "pvp_n_1-2.gat",117,99,"Am Mut"     ,1301,1;close;
    Alice:  monster "pvp_n_1-2.gat",117,99,"Alice"      ,1275,1;close;
    Angel:  monster "pvp_n_1-2.gat",117,99,"Angeling"   ,1096,1;close;
    Arc:    monster "pvp_n_1-2.gat",117,99,"Arc Angeling"   ,1388,1;close;
    Cato:   monster "pvp_n_1-2.gat",117,99,"Cat O' Nine Tail"   ,1307,1;close;
    Chim:   monster "pvp_n_1-2.gat",117,99,"Chimera"    ,1283,1;close;
    Fear:   monster "pvp_n_1-2.gat",117,99,"Creamy Fear"    ,1293,1;close;
    Devi:   monster "pvp_n_1-2.gat",117,99,"Deviling"   ,1582,1;close;
    Ecli:   monster "pvp_n_1-2.gat",117,99,"Eclipse"    ,1093,1;close;
    GH: monster "pvp_n_1-2.gat",117,99,"Ghostring"  ,1120,1;close;
    Hydro:  monster "pvp_n_1-2.gat",117,99,"Hydrolancer"    ,1720,1;close;
    Master: monster "pvp_n_1-2.gat",117,99,"Mastering"  ,1090,1;close;
    MP: monster "pvp_n_1-2.gat",117,99,"Maya Purple"    ,1289,1;close;
    OB: monster "pvp_n_1-2.gat",117,99,"Owl Baron"  ,1295,1;close;
    OD: monster "pvp_n_1-2.gat",117,99,"Owl Duke"   ,1320,1;close;
    Zea:    monster "pvp_n_1-2.gat",117,99,"Zealotus"   ,1200,1;close;
 
 
// ====== Dungeon Monsters =======
M_Dungeon:
next;
    mes "[ MvP Master ]";
    mes "Choose your Dungeon Monster:";
    next;
    menu 
  
  //------------------Dungeon Monsters----------------------
    "- Bloody Knight",BK,
    "- Dark Illusion",DI,
    "- Mobster",MOB,
    "- Gryphon",Gryph,
    "- Harpy",Harp,
    "- Garm Baby",GB,
    "- Wicked Nymph",WN,
    "- Mummy",Mum,
    "- Skogul",Sko,
    "- Rybio",Ryb,
    "- Zombie Master",ZM,
    "- Quit",mvp_CANCEL;
 
BK: monster "pvp_n_1-2.gat",117,99,"Bloody Knight"      ,1268,1;close;
DI: monster "pvp_n_1-2.gat",117,99,"Dark Illusion"      ,1302,1;close;
MOB:    monster "pvp_n_1-2.gat",117,99,"Mobster"        ,1313,1;close;
Gryph:  monster "pvp_n_1-2.gat",117,99,"Gryphon"        ,1259,1;close;
Harp:   monster "pvp_n_1-2.gat",117,99,"Harpy"      ,376,1;close;
GB: monster "pvp_n_1-2.gat",117,99,"Garm Baby"      ,1515,1;close;
WN: monster "pvp_n_1-2.gat",117,99,"Wicked Nymph"       ,1416,1;close;
Mum:    monster "pvp_n_1-2.gat",117,99,"Mummy"      ,1041,1;close;
Sko:    monster "pvp_n_1-2.gat",117,99,"Skogul"     ,1752,1;close;
Ryb:    monster "pvp_n_1-2.gat",117,99,"Rybio"      ,1201,1;close;
ZM: monster "pvp_n_1-2.gat",117,99,"Zombie Master"      ,1298,1;close;
//================================================================================
 
    mvp_CANCEL:
   next;
        mes "[ MvP Master ]";
        mes "Please come back when you know what to summon.";
        close;
 
    M_CANCEL:
   next;
        mes "[ MvP Master ]";
        mes "Please come back whenever you feel like it!";
        close;
 
}
 
//Duplicated MvP Masters
pvp_n_2-2,96,106,5  duplicate(MvP Master)   MvP Master#2-2  766
pvp_n_3-2,96,106,5  duplicate(MvP Master)   MvP Master#3-2  766
pvp_n_4-2,96,106,5  duplicate(MvP Master)   MvP Master#4-2  766
pvp_n_5-2,96,106,5  duplicate(MvP Master)   MvP Master#5-2  766
 
//Duplicated Healers
pvp_n_1-2,98,106,5  duplicate(Healer)   Healer#1    914
pvp_n_3-2,98,106,5  duplicate(Healer)   Healer#2  914
pvp_n_4-2,98,106,5  duplicate(Healer)   Healer#3    914
pvp_n_5-2,98,106,5  duplicate(Healer)   Healer#4    914
 
// Tool Dealers
pvp_n_1-2,100,106,5 shop    Tool Dealer 83,501:-1,502:-1,503:-1,504:-1,506:-1,601:-1,602:-1,611:-1,610:-1,645:-1,656:-1
pvp_n_2-2,100,106,5 shop    Tool Dealer 83,501:-1,502:-1,503:-1,504:-1,506:-1,601:-1,602:-1,611:-1,610:-1,645:-1,656:-1
pvp_n_3-2,100,106,5 shop    Tool Dealer 83,501:-1,502:-1,503:-1,504:-1,506:-1,601:-1,602:-1,611:-1,610:-1,645:-1,656:-1
pvp_n_4-2,100,106,5 shop    Tool Dealer 83,501:-1,502:-1,503:-1,504:-1,506:-1,601:-1,602:-1,611:-1,610:-1,645:-1,656:-1
pvp_n_5-2,100,106,5 shop    Tool Dealer 83,501:-1,502:-1,503:-1,504:-1,506:-1,601:-1,602:-1,611:-1,610:-1,645:-1,656:-1
Viewed 751 times, submitted by Guest.