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;} }