N e s s - Apr 14, 2015 2:27
					
				
				
					good day hercules :) my players asking me that there's no investment period announcement after 1hr when woe ends. can someone confirm it? thank you :)
				
							 
									
				
					
						Zia - Apr 14, 2015 5:07
					
				
				
					Your client is probably still following the set sched on herc's client and not your server's. I had adjusted mine to follow my server's WoE sched.
				
							 
									
				
					
						N e s s - Apr 14, 2015 5:41
					
				
				
					so how to fix it?
				
							 
									
				
					
						N e s s - Apr 14, 2015 5:41
					
				
				
					im using woe setter to set the woe schedules.
				
							 
									
				
					
						Dastgir - Apr 14, 2015 10:43
					
				
				
					npc/re/guild/invest_main.txt:[code=:0]
-	script	#invest_timer	-1,{
OnClock0000:	// Open investments on Wed (1 hour after WoE)
	if (gettime(4) == 3 && !agitcheck()) {
		$2011_agit_invest = 1;
		donpcevent "#fund_master::OnInvest_start";
	}
	end;
OnClock1200:	// Close investments on Fri (60 hours after investments open)
	if (gettime(4) == 5 && !agitcheck()) {
		$2011_agit_invest = 2;
		donpcevent "#fund_master::OnInvest_stop";
	}
	end;
OnClock1235:	// Open dungeons on Fri (at least 31 minutes after investments close)
	if (gettime(4) == 5 && !agitcheck())
		donpcevent "#fund_master::OnResult";
	end;
OnClock2000:	// Close dungeons on Tues (1 hour before WoE)
	if (gettime(4) == 2)
		donpcevent "#fund_master::OnReset";
	end;
}
[/code]
these are hardcoded investment timers, (adjusted according to kRO), if you use custom schedule, then you need to adjust these.