- script Sample -1,{ OnInit: // mob id range + target kill range setarray .mob_id_range,1001,2000; setarray .mob_kill_count,100,200; end; OnPCLoginEvent: .@gettime = atoi( gettimestr("%Y%m%d",21) ); if( .@gettime != #today_mob ){ #today_mob = rand( .mob_id_range[0],.mob_id_range[1] ); #today_mob_count = rand( .mob_kill_count[0],.mob_kill_count[1] ); } if( #today_mob_count ) dispbottom "Today you need to kill "+#today_mob_count+"x "+getmonsterinfo( #today_mob,MOB_NAME )+"."; end; OnNPCKillEvent: if( killedrid == #today_mob && #today_mob_count ){ #today_mob_count--; if( #today_mob_count ){ dispbottom "Left : "+#today_mob_count+"x "+getmonsterinfo( #today_mob,MOB_NAME )+"."; }else{ dispbottom "DONE"; getitem 512,1; getitem 512,2; getitem 512,3; } } end; }