Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #008630

  • 0 - None Assigned

  • Working as Intended

Issue Confirmations

  • Yes (0)No (0)
Photo

investment problem

Posted by N e s s on 14 April 2015 - 02:27 AM

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 :)

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.

im using woe setter to set the woe schedules.

changed status to: Working as Intended

npc/re/guild/invest_main.txt:

-	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;
}
these are hardcoded investment timers, (adjusted according to kRO), if you use custom schedule, then you need to adjust these.