niflheim,205,162,5 script Newbie Zone 83,{; if (class == 0) goto event; if (class == 4001) goto event; if (class > 0) goto NO; if (class > 4001) goto NO; event: mes "[^0000FFNewbie Zone^000000]"; mes "Do you wish to get inside the Newbie Zone?"; next; switch(select("Yes","No")) { case 1: sc_end SC_ALL; sc_start SC_INCREASEAGI,500000,10; sc_start SC_KYRIE,500000,10; sc_start SC_BLESSING,500000,10; sc_start SC_IMPOSITIO,500000,3; percentheal 100,100; warp "force_2-1",174,174; end; break; case 2: mes "[^0000FFNewbie Zone^000000]"; mes "Hello!Come in."; close; break; NO: mes "[^0000FFNewbie Zone^000000]"; mes "I'm sorry, but only Novices and High novices are allowed here."; close; } OnInit: disablenpc "Newbie Zone"; disablenpc "Prize"; end; }