viewing paste Freebies for gepard | 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 102 103 104
new_1-1,117,116,4   script  Ruminn#1    4_M_NOV_RUMIN,1,9,{
if(Freecostume >= 1) {
                        mes "[Ruminn]";
            mes "Proceed to the training grounds now! and meet new people!";
            mes "Enjoy the world or Ragnarok!";
            close;
                }
 
mes "[Ruminn]";
mes "Good Day Adventurer!";
mes "Please choose only one Costume to wear!";
next;
mes "[Ruminn]";
mes "These costumes are ^FF0000character bound^000000";
mes "^0000FFCannot be trade, storage, drop, sell to npc, and cart.^000000";
menu "Costume Happy Lunatic Hanging Ear",L_1,"Costume Over Protector",L_2,"Costume Polar Bear Cap",L_3,"Costume Hunting Cap",L_4,"Costume Tendrilion Hat",L_5,"I don't want a costume!",-;
close;
 
    L_1:
        next;
        mes "[Ruminn]";
        mes "Are you sure you want this costume?";
        mes "^FF0000Costume Happy Lunatic Hanging Ear^000000";
        menu "Yes I'm sure!",B_1,"No, I don't want that.",-;
        close;
 
        B_1:
            next;
            mes "[Ruminn]";
            mes "Okay here is your free costume!";
            mes "This costume has no weight so don't worry.";
            getitem 20298,1;
            Freecostume += 1;
            close;
 
    L_2:
        next;
        mes "[Ruminn]";
        mes "Are you sure you want this costume?";
        mes "^ff0000Costume Over Protector^000000";
        menu "Yes I'm sure!",B_2,"No, I don't want that.",-;
        close;
 
        B_2:
            next;
            mes "[Ruminn]";
            mes "Okay here is your free costume!";
            mes "This costume has no weight so don't worry.";
            getitem 20283,1;
            Freecostume += 1;
            close;
 
    L_3:
        next;
        mes "[Ruminn]";
        mes "Are you sure you want this costume?";
        mes "^ff0000Costume Polar Bear Cap^000000";
        menu "Yes I'm sure!",B_3,"No, I don't want that.",-;
        close;
 
        B_3:
            next;
            mes "[Ruminn]";
            mes "Okay here is your free costume!";
            mes "This costume has no weight so don't worry.";
            getitem 20274,1;
            Freecostume += 1;
            close;
 
    L_4:
        next;
        mes "[Ruminn]";
        mes "Are you sure you want this costume?";
        mes "^ff0000Costume Hunting Cap^000000";
        menu "Yes I'm sure!",B_4,"No, I don't want that.",-;
        close;
 
        B_4:
            next;
            mes "[Ruminn]";
            mes "Okay here is your free costume!";
            mes "This costume has no weight so don't worry.";
            getitem 20204,1;
            Freecostume += 1;
            close;
 
    L_5:
        next;
        mes "[Ruminn]";
        mes "Are you sure you want this costume?";
        mes "^ff0000Costume Tendrilion Hat^000000";
        menu "Yes I'm sure!",B_5,"No, I don't want that.",-;
        close;
 
        B_5:
            next;
            mes "[Ruminn]";
            mes "Okay here is your free costume!";
            mes "This costume has no weight so don't worry.";
            getitem 20165,1;
            Freecostume += 1;
            close;
 
}
Viewed 2838 times, submitted by keough99.