Краш сервер

Romjke1

Добрая душа
Сообщения
144
Реакции
78
Сервер крашится, ошибка:
L 01/25/2016 - 15:58:12: [SM] [0] Line 265, thc_rpg/core.inc::Info_Timer()
L 01/25/2016 - 15:58:12: [SM] Native "PrintHintText" reported: Could not send a usermessage
L 01/25/2016 - 15:58:12: [SM] Displaying call stack trace for plugin "thc_rpg.smx":
L 01/25/2016 - 15:58:12: [SM] [0] Line 265, thc_rpg/core.inc::Info_Timer()
L 01/25/2016 - 15:58:12: [SM] Native "PrintHintText" reported: Could not send a usermessage
L 01/25/2016 - 15:58:12: [SM] Displaying call stack trace for plugin "thc_rpg.smx":
L 01/25/2016 - 15:58:12: [SM] [0] Line 265, thc_rpg/core.inc::Info_Timer()
L 01/25/2016 - 15:58:12: [SM] Native "PrintHintText" reported: Could not send a usermessage
L 01/25/2016 - 15:58:12: [SM] Displaying call stack trace for plugin "thc_rpg.smx":
L 01/25/2016 - 15:58:12: [SM] [0] Line 292, thc_rpg/core.inc::Info_Timer()
L 01/25/2016 - 15:58:12: [SM] Native "PrintHintText" reported: Could not send a usermessage
L 01/25/2016 - 15:58:12: [SM] Displaying call stack trace for plugin "thc_rpg.smx":
L 01/25/2016 - 15:58:12: [SM] [0] Line 292, thc_rpg/core.inc::Info_Timer()

Вот эти Line в core.inc:
С 241 строки по 295:
public Action:Info_Timer(Handle:timer, any:client)
{
if (IsClientInGame(client) && !IsFakeClient(client))
{
if (IsPlayerAlive(client) && GetClientTeam(client) > 1 && Re_killtimer == 0)
{
decl String:Message[1024];
new Getinvis = GetClientAlpha(client);
new GetLvl = GetLevel(client);
new GetCredit = GetCredits(client);
new GetXp = GetXP(client);
new GetReqXp = GetReqXP(client);
new Gethealth = GetClientHealth(client);
new GetArmor = GetClientArmor(client);
FormatEx(Message, sizeof(Message), "%T", "HudInfo", client, Gethealth, GetArmor, Getinvis, GetLvl, GetCredit, GetXp, GetReqXp);
if(g_CoreConfigCache[CoreConfig_showhud]==2)
{
new Handle:hBuffer = StartMessageOne("KeyHintText", client);
BfWriteByte(hBuffer, 1);
BfWriteString(hBuffer, Message);
EndMessage();
}
else if(g_CoreConfigCache[CoreConfig_showhud]==1)
{
PrintHintText(client, Message);
}
}
else if (!IsPlayerAlive(client) && Re_killtimer == 0)
{
new i = 0;
i = GetEntPropEnt(client, Prop_Send, "m_hObserverTarget");
if (i > 0)
{
decl String:Message[1024];
new Getinvis = GetClientAlpha(i);
new GetLvl = GetLevel(i);
new GetCredit = GetCredits(i);
new GetXp = GetXP(i);
new GetReqXp = GetReqXP(i);
new Gethealth = GetClientHealth(i);
new GetArmor = GetClientArmor(i);
FormatEx(Message, sizeof(Message), "%T", "HudInfoSpec", client, i, Gethealth, GetArmor, Getinvis, GetLvl, GetCredit, GetXp, GetReqXp);
if(g_CoreConfigCache[CoreConfig_showhud]==2)
{
new Handle:hBuffer = StartMessageOne("KeyHintText", client);
BfWriteByte(hBuffer, 1);
BfWriteString(hBuffer, Message);
EndMessage();
}
else if(g_CoreConfigCache[CoreConfig_showhud]==1)
{
PrintHintText(client, Message);
}
}
}

Залил на яндекс core.inc КЛАЦ

Что делать, ребятки? Буду благодарен :)
 

Romjke1

Добрая душа
Сообщения
144
Реакции
78
Можно закрывать тему, помогло удаление из core.inc вот этой строчки:

else if(g_CoreConfigCache[CoreConfig_showhud]==1)
{
PrintHintText(client, Message);
}
 
Сверху Снизу