viewing paste Unknown #798 | Text

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
//===== rAthena Script =======================================
//= Slotted Sunglasses Quest
//===== By: ==================================================
//= amichan
//===== Current Version: =====================================
//= 1.8
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= Quest to get Slotted Sunglasses.
//= Will reset after quest completion.
//===== Additional Comments: =================================
//= 1.0 by Aegis 1.1 by aichan 1.2 by x[tsk] 1.3 by Darkchild
//= 1.5 Fixed Exploit [Lupus]
//= 1.6 Fixed Exploit [KarLaeda]
//= 1.7 Relocated 'Maseph' to moc_fild07. [Kisuka]
//= 1.8 Cleaning. [Euphy]
//============================================================
 
casp_in01,49,191,4  script  Ariel   435,{
    mes "[Ariel]";
    if(Angel_QUEST1 > 1) {
        mes "May the heavens be with you! Remember to look for my twin, Aziel, behind the Popes throne in The Garden of Heaven!";
        close; }
    mes "I sense a purity inside of you.";
    mes "Oh, you must be some sort of angel, but where are your wings?";
    next;
    if(select("I never got them!:Im not an angel!")==2) {
        mes "[Ariel]";
        mes "Thats odd..I had a feelings that you were pure.";
        close; }
    mes "[Ariel]";
    mes "Well you need to go get your ^0000FFAngel Wings^000000 right away! They boost your agility and dexterity by a little!";
    next;
    if(select("Where do I get them?!?:On second thought, Im not an angel.")==2) {
        mes "[Ariel]";
        mes "Huh, no way!";
        close; }
    mes "[Ariel]";
    mes "Haha dont you remember, silly? Talk to Aziel behind the Popes throne in the Garden of Heaven!!";
    next;
    if(select("Alright. Thank you, Ariel!:")==2) {
        mes "[Ariel]";
        mes "Well you need high quality material to make a high quality helmet! Bye!";
        close; }
    mes "[Ariel]";
        set Angel_QUEST1,2;
    mes "No problem at all!";
        close;
}
 
ra_temsky,99,105,5  script  Aziel   435,{
    mes "[Aziel]";  
    if(Angel_QUEST1 == 2) {
    mes "Hello there, angel?";
    mes "Im asuming that you came for your ^000088Angel Wings^000000, right?";
    next;
    if(select("Yes! I never got them!:Youve got the wrong person!")==2) {
        mes "[Aziel]";
        mes "Thats strange..an angel without wings?!";
        close; }
    mes "[Aziel]";
    mes "Bring me these, dear angel:";
    mes " - ^00008810x White Dyestuffs^000000";
    mes " - ^00008875x Soft Feather^000000";
    mes " - ^00008860x Feather of Birds^000000";
    mes " - ^00008850x Flame Heart^000000";
    next;
    mes "and";
    mes " - ^00008810,000,000 zeny^000000";
    next;
    if(select("Yes, Aziel, here..:Oh sorry, let me go get them!")==2) {
        mes "[Aziel]";
        mes "Very well, angel.";
        close; }
    mes "[Aziel]";
    mes "Let me inspect your ingredients, angel.";
    if (countitem(982) < 10 || countitem(7063) < 75 || countitem(916) < 60 || countitem(994) < 50 || Zeny < 10000000) {
        mes "Dear angel, please go gather the rest of the materials.";
        close; }
    delitem 982,10;
    delitem 7063,75;
    delitem 916,60;
    delitem 994,50;
    set Zeny, Zeny-10000000;
    mes "Very well!";
    next;
    mes "[Aziel]";
    mes "Let me cast my holy magic upon these materials to form your wings!";
    next;
    mes "[Aziel]";
    mes "Here you are angel, soar to the skys and spread heavens glory!";
    next;
    mes "[Info]";
    mes "You received ^000088Angel Wings^000000 from Aziel!";
    getitem 29020,1;
    set Angel_QUEST1,3;
    close; }
        mes "Hello again, angel.";
        close;
}
Viewed 666 times, submitted by Guest.