Server Mysteriously Crashes & other Problems -
Memoryz - 19.09.2009
Okay,
My server has crashed earlier, and it outputted these errors:
Код:
--------------------------
Exception At Address: 0x00484154
Registers:
EAX: 0x20646F4D EBX: 0x02DE7273 ECX: 0x7FFFFFFE EDX: 0x0017F0DA
ESI: 0x0017ED10 EDI: 0x0017F505 EBP: 0x0017ED5C ESP: 0x0017ECD0
EFLAGS: 0x00010202
Stack:
--------------------------
Exception At Address: 0x77EAF217
Registers:
EAX: 0x00000008 EBX: 0x00000010 ECX: 0x0017F99C EDX: 0x00000003
ESI: 0x027B0000 EDI: 0x00000000 EBP: 0x0017E380 ESP: 0x0017E374
EFLAGS: 0x00010246
Stack:
And now, when I join my server, I can't talk.
I can do commands like /help and it will show the text, but if i talk, i won't see it, only in the server console, it shows what I said, not in the chatbox.
Re: Server Mysteriously Crashes & other Problems -
Joe Staff - 19.09.2009
Post your OnPlayerText callback.
Re: Server Mysteriously Crashes & other Problems -
Kalcor - 19.09.2009
That second address you posted is not in the sa-mp server address space. That means it must be a plugin causing the problem.
Re: Server Mysteriously Crashes & other Problems -
Memoryz - 19.09.2009
@Kye I don't have any plugins
@JoeStaff I managed to fix the text, but IDK why my server is randomly crashing.
P.S.
Here are some more of the crash things:
Код:
--------------------------
Exception At Address: 0x00402D38
Registers:
EAX: 0x0005F900 EBX: 0x004ABDE0 ECX: 0x00000010 EDX: 0x0001458C
ESI: 0x02E0EF68 EDI: 0x025CFED8 EBP: 0x00000038 ESP: 0x0017EF44
EFLAGS: 0x00010202
Stack:
--------------------------
Exception At Address: 0x00402D38
Registers:
EAX: 0x0005F900 EBX: 0x004ABDE0 ECX: 0x00000010 EDX: 0x0001458C
ESI: 0x02C398E8 EDI: 0x02CA3F70 EBP: 0x00000038 ESP: 0x0017EF44
EFLAGS: 0x00010202
Stack:
--------------------------
Exception At Address: 0x00402D38
Registers:
EAX: 0x0005F900 EBX: 0x004ABDE0 ECX: 0x00000010 EDX: 0x0001458C
ESI: 0x0420D878 EDI: 0x0052FF20 EBP: 0x00000039 ESP: 0x0017EF44
EFLAGS: 0x00010202
Stack:
--------------------------
Exception At Address: 0x77EAF217
Registers:
EAX: 0x00000008 EBX: 0x00000010 ECX: 0x0017F99C EDX: 0x00000003
ESI: 0x005C0000 EDI: 0x00000000 EBP: 0x0017E5F4 ESP: 0x0017E5E8
EFLAGS: 0x00010246
Stack:
--------------------------
Exception At Address: 0x00448819
Registers:
EAX: 0x0254DCA8 EBX: 0x000006A0 ECX: 0x00000000 EDX: 0x00000002
ESI: 0x0017F118 EDI: 0x026912F0 EBP: 0x00005DC0 ESP: 0x0017F0C8
EFLAGS: 0x00010212
Stack:
--------------------------
Exception At Address: 0x00484154
Registers:
EAX: 0x20646F4D EBX: 0x02DE7273 ECX: 0x7FFFFFFE EDX: 0x0017F0DA
ESI: 0x0017ED10 EDI: 0x0017F505 EBP: 0x0017ED5C ESP: 0x0017ECD0
EFLAGS: 0x00010202
Stack:
--------------------------
Exception At Address: 0x77EAF217
Registers:
EAX: 0x00000008 EBX: 0x00000010 ECX: 0x0017F99C EDX: 0x00000003
ESI: 0x027B0000 EDI: 0x00000000 EBP: 0x0017E380 ESP: 0x0017E374
EFLAGS: 0x00010246
Stack:
Re: Server Mysteriously Crashes & other Problems -
Joe Staff - 19.09.2009
Try using a different GameMode and remove your FilterScripts to see if it continues.
Re: Server Mysteriously Crashes & other Problems -
Memoryz - 19.09.2009
I managed to fix that.
But now, (With no FSes on), my server is suddenly crashing when I spawn.
Crash:
Код:
--------------------------
Exception At Address: 0x77EAF217
Registers:
EAX: 0x00000008 EBX: 0x00000010 ECX: 0x0017F99C EDX: 0x00000003
ESI: 0x02810000 EDI: 0x00000000 EBP: 0x0017E880 ESP: 0x0017E874
EFLAGS: 0x00010246
Stack:
And my spawnplayer:
Код:
public OnPlayerSpawn(playerid)
{
GameTextForPlayer(playerid,"~w~Map: Urban Assault",1000,5);
SetPlayerInterior(playerid, 0);
SetPlayerWorldBounds(playerid, -2607.13, -2726.874, 866.2643, 791.31);
GangZoneShowForPlayer(playerid, Zone, 0x00800096);
switch(gClass[playerid])
{
case 0:
{
SetPlayerColor(playerid, COLOR_BLUE);
SetPlayerTeam(playerid, TEAM_COP);
SetPlayerTime(playerid,00,00);
SendClientMessage(playerid, COLOR_WHITE, "Kill the Zombies, before they win!");
JB_GivePlayerWeapon(playerid, 33, 150);
}
case 1:
{
SetPlayerColor(playerid, COLOR_TOMATO);
SendClientMessage(playerid, COLOR_WHITE, "Kill the Humans, before they win!");
SetPlayerTime(playerid,00,00);
SetPlayerTeam(playerid, TEAM_CRIM);
JB_GivePlayerWeapon(playerid, 22, 82);
}
}
return 1;
}
This never started to happen until I switched to RC6-1
Re: Server Mysteriously Crashes & other Problems -
Joe Staff - 19.09.2009
Did you re-compile your anti-hack? (I'm referring to JB_GivePlayerWeapon)
Re: Server Mysteriously Crashes & other Problems -
Memoryz - 19.09.2009
Nope.
JunkBuster
Re: Server Mysteriously Crashes & other Problems -
Joe Staff - 19.09.2009
Doesn't that seem important to re-compile it up to 0.3?
Re: Server Mysteriously Crashes & other Problems -
Memoryz - 19.09.2009
It's an include, and yes, I have re-compiled the GM (without making any edits, just compiling it) since i went up to RC6-1.