03.05.2014, 09:27
Quote:
https://github.com/Zeex/samp-plugin-...ith-debug-info
And then post the server_logs here. It is some sort of crash related to your script, it doesn't relates to your hosting. Some hints are mentioned too: Код:
[09:00:21] [debug] #3 002d1300 in public SyncTime () from PHRP_1.2.amx [09:00:21] [debug] #4 002e3bec in public @yT_60000_SyncUp () from PHRP_1.2.amx |
pawn Код:
forward SyncTime();
public SyncTime()
{
new string[64];
new tmphour;
new tmpminute;
new tmpsecond;
gettime(tmphour, tmpminute, tmpsecond);
FixHour(tmphour);
tmphour = shifthour;
if((tmphour > ghour) || (tmphour == 0 && ghour == 23))
{
format(string, sizeof(string), "The time is now %d:00.",tmphour);
SendClientMessageToAllEx(COLOR_WHITE,string);
ghour = tmphour;
TotalUptime += 1;
PayDay();
SetWorldTime(tmphour);
SaveFamilies();
}
}