-	script	x2	-1,{
end;
	OnClock0100:
	if (gettime(GETTIME_WEEKDAY) == FRIDAY || gettime(GETTIME_WEEKDAY) == MONDAY ) {
		if (!$x2) {
			announce "2x EXP BOOST is now active.  Effective rate is 12x EXP and 3x DROP. Use @rates to verify.  Enjoy Simply Amatsu.. ",bc_all,"0xffff00",FW_BOLD,12;
			// Experience Rate
			setbattleflag("base_exp_rate", 1200);
			setbattleflag("job_exp_rate", 1200);
			//setbattleflag("mvp_exp_rate", 1200);
			setbattleflag("quest_exp_rate", 1200);	
			// The rate the common items are dropped (Items that are in the ETC tab, besides card)
			//setbattleflag("item_rate_common", 600);
			// The rate healing items are dropped (items that restore HP or SP)
			//setbattleflag("item_rate_heal", 600);
			// The rate at which usable items (in the item tab) other then healing items are dropped.
			//setbattleflag("item_rate_use", 600);
			// The rate at which equipment is dropped.
			//setbattleflag("item_rate_equip", 600);
			// The rate at which cards are dropped
			//setbattleflag("item_rate_card", 600);
			atcommand("@reloaditemdb");
			atcommand("@reloadmobdb");
			$x2=1;
		} else {
			announce "2x EXP BOOST has ended. Effective rate is back to 6x EXP and 3x DROP.  Use @rates to verify.",bc_all,"0xffff00",FW_BOLD,12;
			// Experience Rate
			setbattleflag("base_exp_rate", 600);
			setbattleflag("job_exp_rate", 600);
			//setbattleflag("mvp_exp_rate", 600);
			setbattleflag("quest_exp_rate", 600);	
			// The rate the common items are dropped (Items that are in the ETC tab, besides card)
			//setbattleflag("item_rate_common", 300);
			// The rate healing items are dropped (items that restore HP or SP)
			//setbattleflag("item_rate_heal", 300);
			// The rate at which usable items (in the item tab) other then healing items are dropped.
			//setbattleflag("item_rate_use", 300);
			// The rate at which equipment is dropped.
			//setbattleflag("item_rate_equip", 300);
			// The rate at which cards are dropped
			//setbattleflag("item_rate_card", 300);
			atcommand("@reloaditemdb");
			atcommand("@reloadmobdb");
			$x2=0;	
		}	
	}	
end; 
}