• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

/scheduler.h line 65 BUG!!

Evil Mark

President
Premium User
Joined
Nov 23, 2008
Messages
2,060
Reaction score
264
My server keeps crashing [Mystic Spirit 0.2.5. Client 8.5] and I get an error looking like this:
http://img199.imageshack.us/img199/3200/16963835.png

And I checked out what's online 65: Here it is..

inline SchedulerTask* createSchedulerTask(uint32_t delay, boost::function<void (void)> f)
{
assert(delay != 0);
if(delay < SCHEDULER_MINTICKS)
delay = SCHEDULER_MINTICKS;
return new SchedulerTask(delay, f);
}

The red part is line 65, anyone know what the problem is, or how to fix it?
 
Last edited:
in my schuler says:
Code:
inline SchedulerTask* createSchedulerTask(uint32_t delay, const boost::function<void (void)>& f)
{
	assert(delay);
	if(delay < SCHEDULER_MINTICKS)
		delay = SCHEDULER_MINTICKS;

	return new SchedulerTask(delay, f);
}
 
Maybe you have pushCreatureDelay = 0 in config.lua? I saw problem with this few times, and its fixed in 0.3.5 (so you can use delay = 0)
 
Back
Top