• 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!

Windows Another server crash..

RoHaN-OTs

RoHaN-OTs.com
Joined
Jul 28, 2010
Messages
1,594
Reaction score
82
Location
Sweden
http://www11.speedy*****malware.localhost/files/26891477/download/rprt.jpg
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);
}
@ up..
The only proof I got about the error of the server crash.
Sometimes the console says: PANIC API something something can't remember,
and sometimes this error in scheduler.h

Pic of console:
http://www11.speedy*****malware.localhost/files/26897675/download/rprt.png
P.S.
Sizaro will compile for me.

Please give me some feedback or ideas it's crashing like every hour, i believe someone is abusing a bug.
 
Last edited:
[cpp]inline SchedulerTask* createSchedulerTask(uint32_t delay, const boost::function<void (void)>& f)
{
if(!delay || delay < SCHEDULER_MINTICKS)
delay = SCHEDULER_MINTICKS;

return new SchedulerTask(delay, f);
}[/cpp]
It's a script bug, nothing to do with OS
 
Did you get that error before? Try to recompile everything from the beginning (delete all files with extension .o in folder obj), because my code should work and not cause undefined references.
 
I got about the error of the server crash.
Sometimes the console says: PANIC API something something can't remember
that's because of "lua_call", you have fucked up script that generates huge error, change "lua_call" in luascript.cpp with "lua_pcall", lua_pcall = safer
 
Back
Top