viewing paste Unknown #50242 | 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
que_god01,55,122,4  script  Vials   111,{
    if(AdeptER == 1 && countitem(7446) >= 1 && countitem(7445) >= 1 && countitem(7447) >= 1 && countitem(7448) >= 1 ){
        mes "These seem to be all the correct mixtures...I should return to the ^0000FFProfessor^000000.";
        close2;
        set AdeptER,2;
    }else if(AdeptER == 1){
        cutin "nya_off",1;
        mes "Which Vial would I like to select first?";
        switch(select("Red Vial:Green Vial:Blue Vial:Yellow Vial")){
                case 1:
                    if(countitem(7447) >= 1){
                    next;
                    mes "I seem to have already mixed this one...";
                    close2;
                    cutin "",255;
                    end;
                    }else{
                    cutin "nya_red",1;
                    next;
                    mes "...and the last Vial?";
                    switch(select("Green Vial:Blue Vial:Yellow Vial")){
                        case 1:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                        case 2:
                            next;
                            mes "This seems to be right mixture!";
                            getitem 7447,1;
                            close2;
                            cutin "",255;
                            end;
                        case 3:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                    }}
                case 2:
                    if(countitem(7445) >= 1){
                    next;
                    mes "I seem to have already mixed this one...";
                    close;
                    }else {
                    cutin "nya_green",1;
                    next;
                    mes "...and the last Vial?";
                    switch(select("Red Vial:Blue Vial:Yellow Vial")){
                        case 1:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                        case 2:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                        case 3:
                            next;
                            mes "This seems to be right mixture!";
                            getitem 7445,1;
                            close2;
                            cutin "",255;
                            end;
                    }}
                case 3:
                    if(countitem(7446) >= 1){
                    next;
                    mes "I seem to have already mixed this one...";
                    close;
                    }else {
                    cutin "nya_blue",1;
                    next;
                    mes "...and the last Vial?";
                    switch(select("Red Vial:Green Vial:Yellow Vial")){
                        case 1:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                        case 2:
                            next;
                            mes "This seems to be right mixture!";
                            getitem 7446,1;
                            close2;
                            cutin "",255;
                            end;
                        case 3:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                    }}
                case 4:
                    if(countitem(7448) >= 1){
                    next;
                    mes "I seem to have already mixed this one...";
                    close;
                    }else{
                    cutin "nya_yellow",1;
                    next;
                    mes "...and the last Vial?";
                    switch(select("Red Vial:Green Vial:Blue Vial")){
                        case 1:
                            next;
                            mes "This seems to be right mixture!";
                            getitem 7448,1;
                            close2;
                            cutin "",255;
                            end;
                        case 2:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                        case 3:
                            next;
                            mes "Nothing seems to be happening...better restart.";
                            close2;
                            cutin "",255;
                            end;
                    }}
        }
    } else {
        mes "These Vials seem important for something...";
        close;}
}
Viewed 1746 times, submitted by Pneuma.