viewing paste Unknown #375 | C

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
prontera,150,183,0  script  refinetest  123,{
 
    mes "[Refine Test]";
    mes "What would you like to do?";
    next;
    switch(select("Upgrade Gear:Downgrade Gear:Cancel")){
    case 1:
        mes "[Refine Test]";
        mes "Insert now the option and value of how much you'd like to upgrade the item:";
        next;
        input .@value;
        if(.@value < 1 || .@value > 20){
            mes "[Refine Test]";
            mes "Invalid Value!";
            next;
            mes "[Refine Test";
            mes "Value can only by between 1 to 20.";
            close;
        }
        next;
        input .@option;
        if(.@option < 1 || .@option > 10){
            mes "[Refine Test]";
            mes "Invalid Option!";
            next;
            mes "[Refine Test";
            mes "Option can only by between 1 to 10.";
            close;
        }
        successrefitem .@option,.@value;
        mes "[Refine Test]";
        mes "There you go you evil Motherfucker!";
        mes "I fucking hate you!";
        close;
    case 1:
        mes "[Refine Test";
        mes "Insert now the option and value of how much you'd like to upgrade the item:";
        next;
        input .@value;
        if(.@value < 1 || .@value > 20){
            mes "[Refine Test]";
            mes "Invalid Value!";
            next;
            mes "[Refine Test";
            mes "Value can only by between 1 to 20.";
            close;
        }
        next;
        input .@option;
        if(.@option < 1 || .@option > 10){
            mes "[Refine Test]";
            mes "Invalid Option!";
            next;
            mes "[Refine Test";
            mes "Option can only by between 1 to 10.";
            close;
        }
        downrefitem .@option,.@value;
        mes "[Refine Test]";
        mes "There you go you evil Motherfucker!";
        mes "I fucking hate you!";
        close;
    case 3:
        mes "[Refine Test]";
        mes "There you go you evil Motherfucker!";
        mes "I fucking hate you!";
        close;
    }
}
Viewed 745 times, submitted by Guest.