Вход

Просмотр полной версии : [Вопрос] Server Closed to connection



#enotik
02.01.2016, 03:42
Эта шляпа не у одного меня..
http://i.imgur.com/iT9hyKu.png

Список инклудов:



#include <a_samp>
#include <a_actor>
#include <a_http>
#include <gl_common>
#include <a_mysql>
#include <sscanf>
#include <dc_cmd>
#include <streamer>
#include <regex>
#include <yom_buttons>
#include <PointToPoint>
#include <strlib>
#include <mxINI>
#include <YSI\y_va>(тут компилятор от Tracer1 выбил рекурсию)
#include <md5>


Далее, сам паблик OnPlayerConnect()



public OnPlayerConnect(playerid)
{
new ip[32],mes[128];
new nick = pData[playerid][pNickname];
GetPlayerIp(playerid,ip,32);
for(new i;i<MAX_PLAYERS;i++)
{
if(gReconnectTime[i] <= 0) continue;
if(!strcmp(ip,gReconnectIP[i],false) && strlen(gReconnectIP[i]))
{
format(mes,sizeof(mes),"[A] Reconnect IP: %s = %s || Time: %d || NickName: %s",ip,gReconnectIP[i],gReconnectTime[i],nick);
AdminChat(CGRAY,mes);
gReconnectTime[i] += 10;
SendClientMessage(playerid,CGRAY,"Перезаходить можно не менее чем через 10 секунд");
/*if(gReconnectTime[i] >= 30)
{
new mes[128];
format(mes,sizeof(mes),"banip %s",ip);
SendRconCommand(mes);
}
NewKick(playerid);*/
return 0;
}
}
CreateInventory(playerid);
SetPlayerDataToDefault(playerid);
format(pTemp[playerid][pIP],32,"%s",ip);
new slot;
for(new i;i<MAX_PLAYERS;i++)
{
if(!gReconnectTime[i]) {slot = i; break;}
}
format(gReconnectIP[slot],32,"%s",pTemp[playerid][pIP]);
gReconnectTime[slot] = 5;
TextDrawShowForPlayer(playerid,gState99Text);
CreateHungerTextDraw(playerid);
//ResetPlayerWeaponsEx(playerid);
new Float: gEateryPos[2], str[16];
gEateryPos[0] = 450.0; gEateryPos[1] = 125.0;
for(new x = 0; x < 4; x ++) { // цены
if(x > 0) gEateryPos[1] += 50.0;
format(str, sizeof(str), "$%i", gEateryCosts[x]);
gEateryCostTextDraw[playerid][x] = CreatePlayerTextDraw(playerid, gEateryPos[0], gEateryPos[1], str);
PlayerTextDrawLetterSize(playerid, gEateryCostTextDraw[playerid][x], 0.560000, 2.142500);
PlayerTextDrawAlignment(playerid, gEateryCostTextDraw[playerid][x], 1);
PlayerTextDrawColor(playerid, gEateryCostTextDraw[playerid][x], -1);
PlayerTextDrawSetShadow(playerid, gEateryCostTextDraw[playerid][x], 0);
PlayerTextDrawSetOutline(playerid, gEateryCostTextDraw[playerid][x], 1);
PlayerTextDrawBackgroundColor(playerid, gEateryCostTextDraw[playerid][x], 51);
PlayerTextDrawFont(playerid, gEateryCostTextDraw[playerid][x], 3);
PlayerTextDrawSetProportional(playerid, gEateryCostTextDraw[playerid][x], 1);
}
new Float: gBarPos[2];
gBarPos[0] = 450.0; gBarPos[1] = 125.0;
for(new x = 0; x < 5; x ++) { // цены
if(x > 0) gBarPos[1] += 50.0;
format(str, sizeof(str), "$%i", gBarCosts[x]);
gBarCostTextDraw[playerid][x] = CreatePlayerTextDraw(playerid, gBarPos[0], gBarPos[1], str);
PlayerTextDrawLetterSize(playerid, gBarCostTextDraw[playerid][x], 0.560000, 2.142500);
PlayerTextDrawAlignment(playerid, gBarCostTextDraw[playerid][x], 1);
PlayerTextDrawColor(playerid, gBarCostTextDraw[playerid][x], -1);
PlayerTextDrawSetShadow(playerid, gBarCostTextDraw[playerid][x], 0);
PlayerTextDrawSetOutline(playerid, gBarCostTextDraw[playerid][x], 1);
PlayerTextDrawBackgroundColor(playerid, gBarCostTextDraw[playerid][x], 51);
PlayerTextDrawFont(playerid, gBarCostTextDraw[playerid][x], 3);
PlayerTextDrawSetProportional(playerid, gBarCostTextDraw[playerid][x], 1);
}
gSkinShopPriceDraw[playerid] = CreatePlayerTextDraw(playerid, 31.000000, 224.000000, "_");
PlayerTextDrawBackgroundColor(playerid, gSkinShopPriceDraw[playerid], 255);
PlayerTextDrawFont(playerid, gSkinShopPriceDraw[playerid], 3);
PlayerTextDrawLetterSize(playerid, gSkinShopPriceDraw[playerid], 0.500000, 1.600000);
PlayerTextDrawColor(playerid, gSkinShopPriceDraw[playerid], -1);
PlayerTextDrawSetOutline(playerid, gSkinShopPriceDraw[playerid], 0);
PlayerTextDrawSetProportional(playerid, gSkinShopPriceDraw[playerid], 1);
PlayerTextDrawSetShadow(playerid, gSkinShopPriceDraw[playerid], 1);
return 1;
}


Помогите, я теряюсь в догадках, что же может быть..

Desulaid
02.01.2016, 10:22
Мне вот эта часть не нравится, может из-за нее?


for(new i;i<MAX_PLAYERS;i++)
{
if(gReconnectTime[i] <= 0) continue;
if(!strcmp(ip,gReconnectIP[i],false) && strlen(gReconnectIP[i]))
{
format(mes,sizeof(mes),"[A] Reconnect IP: %s = %s || Time: %d || NickName: %s",ip,gReconnectIP[i],gReconnectTime[i],nick);
AdminChat(CGRAY,mes);
gReconnectTime[i] += 10;
SendClientMessage(playerid,CGRAY,"Перезаходить можно не менее чем через 10 секунд");
/*if(gReconnectTime[i] >= 30)
{
new mes[128];
format(mes,sizeof(mes),"banip %s",ip);
SendRconCommand(mes);
}
NewKick(playerid);*/
return 0;
}
}

Хотя эту часть можно заменить, написать в сервер.кфг

minconnectiontime 10000

DeimoS
02.01.2016, 14:23
Эмм, а теперь покажите логи.

#enotik
02.01.2016, 15:07
Мне вот эта часть не нравится, может из-за нее?


for(new i;i<MAX_PLAYERS;i++)
{
if(gReconnectTime[i] <= 0) continue;
if(!strcmp(ip,gReconnectIP[i],false) && strlen(gReconnectIP[i]))
{
format(mes,sizeof(mes),"[A] Reconnect IP: %s = %s || Time: %d || NickName: %s",ip,gReconnectIP[i],gReconnectTime[i],nick);
AdminChat(CGRAY,mes);
gReconnectTime[i] += 10;
SendClientMessage(playerid,CGRAY,"Перезаходить можно не менее чем через 10 секунд");
/*if(gReconnectTime[i] >= 30)
{
new mes[128];
format(mes,sizeof(mes),"banip %s",ip);
SendRconCommand(mes);
}
NewKick(playerid);*/
return 0;
}
}

Хотя эту часть можно заменить, написать в сервер.кфг

minconnectiontime 10000

Эту часть я убирал, проблема оставалась..
После я ее переписал..

- - - Добавлено - - -




----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[02:56:35]
[02:56:35] Server Plugins
[02:56:35] --------------
[02:56:35] Loading plugin: mysql.so
[02:56:35]

> MySQL plugin R6 successfully loaded.

[02:56:35] Loaded.
[02:56:35] Loading plugin: sscanf.so
[02:56:35]

[02:56:35] ===============================

[02:56:35] sscanf plugin loaded.

[02:56:35] Version: 2.8.1

[02:56:35] (c) 2012 Alex "Y_Less" Cole

[02:56:35] ===============================

[02:56:35] Loaded.
[02:56:35] Loading plugin: PointToPoint.so
[02:56:35] PointToPoint Plugin Loaded.
[02:56:35] Loaded.
[02:56:35] Loading plugin: regex.so
[02:56:35]

[02:56:35] ______________________________________

[02:56:35] Regular Expression Plugin v0.2.1 loaded
[02:56:35] ______________________________________

[02:56:35] By: Fro (c) Copyright <TBG> 2009-2011
[02:56:35] ______________________________________

[02:56:35] Loaded.
[02:56:35] Loading plugin: dc_cmd.so
[02:56:35] Daniel's CMD plugin v2.8
[02:56:35] (c) 2014 Daniel_Cortez
[02:56:35] www.pro-pawn.ru
[02:56:35] Loaded.
[02:56:35] Loading plugin: streamer.so
[02:56:35]

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[02:56:35] Loaded.
[02:56:35] Loaded 6 plugins.

[02:56:35]
[02:56:35] Ban list
[02:56:35] --------
[02:56:35] Loaded: samp.ban
[02:56:35]
[02:56:35]
[02:56:35] Filterscripts
[02:56:35] ---------------
[02:56:35] Loading filterscript 'yom_buttons.amx'...
[02:56:35] Unable to load filterscript 'yom_buttons.amx'.
[02:56:35] Loaded 0 filterscripts.

[02:56:35]
[02:56:35]
[02:56:35]
[02:56:35] =======================================
[02:56:35] | |
[02:56:35] | YSI version 1.06.0002 |
[02:56:35] | By Alex "Y_Less" Cole |
[02:56:35] | |
[02:56:35] =======================================
[02:56:35]
[02:56:35] Current day: 1463
[02:56:35] Соединение с Mysql сервером установлено
[02:56:35] 3 --- 1014
[02:56:35] 490 houses loaded
[02:56:35] Filling: 1, Mark[0]: 0
[02:56:35] Filling: 2, Mark[0]: 0
[02:56:35] Filling: 3, Mark[0]: 5000
[02:56:35] Filling: 4, Mark[0]: 0
[02:56:35] Банк Новостей успешно загружён, на счету $0.
[02:56:35] Number of vehicle models: 103
[02:56:35]
[02:56:35] ==========================================
[02:56:35] | |
[02:56:35] | A new version (v3.09.0684) of YSI is |
[02:56:35] | available from: |
[02:56:35] | |
[02:56:35] | www.y-less.com/YSI/YSI_1.0.zip |
[02:56:35] | |
[02:56:35] | Changelog: |
[02:56:35] | |
[02:56:35] | 3.00.0000: |
[02:56:35] | |
[02:56:35] | YSI 3.0 released! Now includes the |
[02:56:35] | "y_text" library for better messages, |
[02:56:35] | and a reworked "y_classes" library. |
[02:56:35] | Largely documented here |
[02:56:35] | "http://forum.sa-mp.com/showthread.php |
[02:56:35] | ?t=321092". |
[02:56:35] | |
[02:56:35] | 3.01.0002: |
[02:56:35] | |
[02:56:35] | Small fixes to "y_text" and |
[02:56:35] | "y_classes". |
[02:56:35] | |
[02:56:35] | 3.09.0684: |
[02:56:35] | |
[02:56:35] | Reverted to old download location. |
[02:56:35] | Improved (and fixed) version checks; |
[02:56:35] | added y_bitmap, y_areas, y_races, |
[02:56:35] | y_zonenames, better documentation; |
[02:56:35] | MANY other bug fixes - see the github |
[02:56:35] | repository for more details: |
[02:56:35] | |
[02:56:35] ==========================================
[02:56:35]
[02:58:12] [connection] 178.127.233.162:64345 requests connection cookie.
[02:58:14] [connection] incoming connection: 178.127.233.162:64345 id: 0
[02:58:14] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[02:59:03] [chat] [Andy_Fawkess]: f
[02:59:57] RCON (In-Game): Player #0 (Andy_Fawkess) failed login.
[03:00:07] RCON (In-Game): Player #0 (Andy_Fawkess) has logged in.
[03:00:14] RCON (In-Game): Player [Andy_Fawkess] sent command: say lol
[03:00:18] RCON (In-Game): Player [Andy_Fawkess] sent command: say azaza
[03:00:20] RCON (In-Game): Player [Andy_Fawkess] sent command: say azazaa
[03:00:21] RCON (In-Game): Player [Andy_Fawkess] sent command: say azazaaa
[03:00:22] RCON (In-Game): Player [Andy_Fawkess] sent command: say azazaaaa
[03:00:24] RCON (In-Game): Player [Andy_Fawkess] sent command: say azazaaaaaaa
[03:00:30] [part] Andy_Fawkess has left the server (0:1)
[04:05:10] Saving 8

----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[04:18:34]
[04:18:34] Server Plugins
[04:18:34] --------------
[04:18:34] Loading plugin: mysql.so
[04:18:34]

> MySQL plugin R6 successfully loaded.

[04:18:34] Loaded.
[04:18:34] Loading plugin: sscanf.so
[04:18:34]

[04:18:34] ===============================

[04:18:34] sscanf plugin loaded.

[04:18:34] Version: 2.8.1

[04:18:34] (c) 2012 Alex "Y_Less" Cole

[04:18:34] ===============================

[04:18:34] Loaded.
[04:18:34] Loading plugin: PointToPoint.so
[04:18:34] PointToPoint Plugin Loaded.
[04:18:34] Loaded.
[04:18:34] Loading plugin: regex.so
[04:18:34]

[04:18:34] ______________________________________

[04:18:34] Regular Expression Plugin v0.2.1 loaded
[04:18:34] ______________________________________

[04:18:34] By: Fro (c) Copyright <TBG> 2009-2011
[04:18:34] ______________________________________

[04:18:34] Loaded.
[04:18:34] Loading plugin: dc_cmd.so
[04:18:34] Daniel's CMD plugin v2.8
[04:18:34] (c) 2014 Daniel_Cortez
[04:18:34] www.pro-pawn.ru
[04:18:34] Loaded.
[04:18:34] Loading plugin: streamer.so
[04:18:34]

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[04:18:34] Loaded.
[04:18:34] Loaded 6 plugins.

[04:18:34]
[04:18:34] Ban list
[04:18:34] --------
[04:18:34] Loaded: samp.ban
[04:18:34]
[04:18:34]
[04:18:34] Filterscripts
[04:18:34] ---------------
[04:18:34] Loading filterscript 'yom_buttons.amx'...
[04:18:34] Unable to load filterscript 'yom_buttons.amx'.
[04:18:34] Loaded 0 filterscripts.

[04:18:34]
[04:18:34]
[04:18:34]
[04:18:34] =======================================
[04:18:34] | |
[04:18:34] | YSI version 1.06.0002 |
[04:18:34] | By Alex "Y_Less" Cole |
[04:18:34] | |
[04:18:34] =======================================
[04:18:34]
[04:18:34] Current day: 1463
[04:18:34] Соединение с Mysql сервером установлено
[04:18:34] 3 --- 1014
[04:18:34] 490 houses loaded
[04:18:34] Filling: 1, Mark[0]: 0
[04:18:34] Filling: 2, Mark[0]: 0
[04:18:34] Filling: 3, Mark[0]: 5000
[04:18:34] Filling: 4, Mark[0]: 0
[04:18:34] Банк Новостей успешно загружён, на счету $0.
[04:18:34] Number of vehicle models: 103
[04:18:34]
[04:18:34] ==========================================
[04:18:34] | |
[04:18:34] | A new version (v3.09.0684) of YSI is |
[04:18:34] | available from: |
[04:18:34] | |
[04:18:34] | www.y-less.com/YSI/YSI_1.0.zip |
[04:18:34] | |
[04:18:34] | Changelog: |
[04:18:34] | |
[04:18:34] | 3.00.0000: |
[04:18:34] | |
[04:18:34] | YSI 3.0 released! Now includes the |
[04:18:34] | "y_text" library for better messages, |
[04:18:34] | and a reworked "y_classes" library. |
[04:18:34] | Largely documented here |
[04:18:34] | "http://forum.sa-mp.com/showthread.php |
[04:18:34] | ?t=321092". |
[04:18:34] | |
[04:18:34] | 3.01.0002: |
[04:18:34] | |
[04:18:34] | Small fixes to "y_text" and |
[04:18:34] | "y_classes". |
[04:18:34] | |
[04:18:34] | 3.09.0684: |
[04:18:34] | |
[04:18:34] | Reverted to old download location. |
[04:18:34] | Improved (and fixed) version checks; |
[04:18:34] | added y_bitmap, y_areas, y_races, |
[04:18:34] | y_zonenames, better documentation; |
[04:18:34] | MANY other bug fixes - see the github |
[04:18:34] | repository for more details: |
[04:18:34] | |
[04:18:34] ==========================================
[04:18:34]
[04:19:27] [connection] 178.127.233.162:58011 requests connection cookie.
[04:19:28] [connection] incoming connection: 178.127.233.162:58011 id: 0
[04:19:29] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[04:23:29] [part] Andy_Fawkess has left the server (0:1)

----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[04:29:04]
[04:29:04] Server Plugins
[04:29:04] --------------
[04:29:04] Loading plugin: mysql.so
[04:29:04]

> MySQL plugin R6 successfully loaded.

[04:29:04] Loaded.
[04:29:04] Loading plugin: sscanf.so
[04:29:04]

[04:29:04] ===============================

[04:29:04] sscanf plugin loaded.

[04:29:04] Version: 2.8.1

[04:29:04] (c) 2012 Alex "Y_Less" Cole

[04:29:04] ===============================

[04:29:04] Loaded.
[04:29:04] Loading plugin: PointToPoint.so
[04:29:04] PointToPoint Plugin Loaded.
[04:29:04] Loaded.
[04:29:04] Loading plugin: regex.so
[04:29:04]

[04:29:04] ______________________________________

[04:29:04] Regular Expression Plugin v0.2.1 loaded
[04:29:04] ______________________________________

[04:29:04] By: Fro (c) Copyright <TBG> 2009-2011
[04:29:04] ______________________________________

[04:29:04] Loaded.
[04:29:04] Loading plugin: dc_cmd.so
[04:29:04] Daniel's CMD plugin v2.8
[04:29:04] (c) 2014 Daniel_Cortez
[04:29:04] www.pro-pawn.ru
[04:29:04] Loaded.
[04:29:04] Loading plugin: streamer.so
[04:29:04]

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[04:29:04] Loaded.
[04:29:04] Loaded 6 plugins.

[04:29:04]
[04:29:04] Ban list
[04:29:04] --------
[04:29:04] Loaded: samp.ban
[04:29:04]
[04:29:04]
[04:29:04] Filterscripts
[04:29:04] ---------------
[04:29:04] Loading filterscript 'yom_buttons.amx'...
[04:29:04] Unable to load filterscript 'yom_buttons.amx'.
[04:29:04] Loaded 0 filterscripts.

[04:29:04]
[04:29:04]
[04:29:04]
[04:29:04] =======================================
[04:29:04] | |
[04:29:04] | YSI version 1.06.0002 |
[04:29:04] | By Alex "Y_Less" Cole |
[04:29:04] | |
[04:29:04] =======================================
[04:29:04]
[04:29:04] Current day: 1463
[04:29:04] Соединение с Mysql сервером установлено
[04:29:04] 3 --- 1014
[04:29:04] 490 houses loaded
[04:29:04] Filling: 1, Mark[0]: 0
[04:29:04] Filling: 2, Mark[0]: 0
[04:29:04] Filling: 3, Mark[0]: 5000
[04:29:04] Filling: 4, Mark[0]: 0
[04:29:04] Банк Новостей успешно загружён, на счету $0.
[04:29:04] Number of vehicle models: 103
[04:29:04]
[04:29:04] ==========================================
[04:29:04] | |
[04:29:04] | A new version (v3.09.0684) of YSI is |
[04:29:04] | available from: |
[04:29:04] | |
[04:29:04] | www.y-less.com/YSI/YSI_1.0.zip |
[04:29:04] | |
[04:29:04] | Changelog: |
[04:29:04] | |
[04:29:04] | 3.00.0000: |
[04:29:04] | |
[04:29:04] | YSI 3.0 released! Now includes the |
[04:29:04] | "y_text" library for better messages, |
[04:29:04] | and a reworked "y_classes" library. |
[04:29:04] | Largely documented here |
[04:29:04] | "http://forum.sa-mp.com/showthread.php |
[04:29:04] | ?t=321092". |
[04:29:04] | |
[04:29:04] | 3.01.0002: |
[04:29:04] | |
[04:29:04] | Small fixes to "y_text" and |
[04:29:04] | "y_classes". |
[04:29:04] | |
[04:29:04] | 3.09.0684: |
[04:29:04] | |
[04:29:04] | Reverted to old download location. |
[04:29:04] | Improved (and fixed) version checks; |
[04:29:04] | added y_bitmap, y_areas, y_races, |
[04:29:04] | y_zonenames, better documentation; |
[04:29:04] | MANY other bug fixes - see the github |
[04:29:04] | repository for more details: |
[04:29:04] | |
[04:29:04] ==========================================
[04:29:04]
[04:30:51] [connection] 178.127.233.162:64883 requests connection cookie.
[04:30:52] [connection] incoming connection: 178.127.233.162:64883 id: 0
[04:31:26] [connection] 178.127.233.162:64887 requests connection cookie.
[04:31:27] [connection] incoming connection: 178.127.233.162:64887 id: 0
[04:32:16] [connection] 178.127.233.162:64890 requests connection cookie.
[04:32:17] [connection] incoming connection: 178.127.233.162:64890 id: 0
[04:32:17] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[04:35:38] [chat] [Andy_Fawkess]: sp
[04:36:11] [part] Andy_Fawkess has left the server (0:1)

----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[05:04:33]
[05:04:33] Server Plugins
[05:04:33] --------------
[05:04:33] Loading plugin: mysql.so
[05:04:33]

> MySQL plugin R6 successfully loaded.

[05:04:33] Loaded.
[05:04:33] Loading plugin: sscanf.so
[05:04:33]

[05:04:33] ===============================

[05:04:33] sscanf plugin loaded.

[05:04:33] Version: 2.8.1

[05:04:33] (c) 2012 Alex "Y_Less" Cole

[05:04:33] ===============================

[05:04:33] Loaded.
[05:04:33] Loading plugin: PointToPoint.so
[05:04:33] PointToPoint Plugin Loaded.
[05:04:33] Loaded.
[05:04:33] Loading plugin: regex.so
[05:04:33]

[05:04:33] ______________________________________

[05:04:33] Regular Expression Plugin v0.2.1 loaded
[05:04:33] ______________________________________

[05:04:33] By: Fro (c) Copyright <TBG> 2009-2011
[05:04:33] ______________________________________

[05:04:33] Loaded.
[05:04:33] Loading plugin: dc_cmd.so
[05:04:33] Daniel's CMD plugin v2.8
[05:04:33] (c) 2014 Daniel_Cortez
[05:04:33] www.pro-pawn.ru
[05:04:33] Loaded.
[05:04:33] Loading plugin: streamer.so
[05:04:33]

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[05:04:33] Loaded.
[05:04:33] Loaded 6 plugins.

[05:04:33]
[05:04:33] Ban list
[05:04:33] --------
[05:04:33] Loaded: samp.ban
[05:04:33]
[05:04:33]
[05:04:33] Filterscripts
[05:04:33] ---------------
[05:04:33] Loading filterscript 'yom_buttons.amx'...
[05:04:33] Unable to load filterscript 'yom_buttons.amx'.
[05:04:33] Loaded 0 filterscripts.

[05:04:33]
[05:04:33]
[05:04:33]
[05:04:33] =======================================
[05:04:33] | |
[05:04:33] | YSI version 1.06.0002 |
[05:04:33] | By Alex "Y_Less" Cole |
[05:04:33] | |
[05:04:33] =======================================
[05:04:33]
[05:04:33] Current day: 1463
[05:04:33] Соединение с Mysql сервером установлено
[05:04:33] 3 --- 1014
[05:04:33] 490 houses loaded
[05:04:33] Filling: 1, Mark[0]: 0
[05:04:33] Filling: 2, Mark[0]: 0
[05:04:33] Filling: 3, Mark[0]: 5000
[05:04:33] Filling: 4, Mark[0]: 0
[05:04:33] Банк Новостей успешно загружён, на счету $0.
[05:04:33] Number of vehicle models: 103
[05:04:33]
[05:04:33] ==========================================
[05:04:33] | |
[05:04:33] | A new version (v3.09.0684) of YSI is |
[05:04:33] | available from: |
[05:04:33] | |
[05:04:33] | www.y-less.com/YSI/YSI_1.0.zip |
[05:04:33] | |
[05:04:33] | Changelog: |
[05:04:33] | |
[05:04:33] | 3.00.0000: |
[05:04:33] | |
[05:04:33] | YSI 3.0 released! Now includes the |
[05:04:33] | "y_text" library for better messages, |
[05:04:33] | and a reworked "y_classes" library. |
[05:04:33] | Largely documented here |
[05:04:33] | "http://forum.sa-mp.com/showthread.php |
[05:04:33] | ?t=321092". |
[05:04:33] | |
[05:04:33] | 3.01.0002: |
[05:04:33] | |
[05:04:33] | Small fixes to "y_text" and |
[05:04:33] | "y_classes". |
[05:04:33] | |
[05:04:33] | 3.09.0684: |
[05:04:33] | |
[05:04:33] | Reverted to old download location. |
[05:04:33] | Improved (and fixed) version checks; |
[05:04:33] | added y_bitmap, y_areas, y_races, |
[05:04:33] | y_zonenames, better documentation; |
[05:04:33] | MANY other bug fixes - see the github |
[05:04:33] | repository for more details: |
[05:04:33] | |
[05:04:33] ==========================================
[05:04:33]



- - - Добавлено - - -


Эмм, а теперь покажите логи.

ниже скинул..

DeimoS
02.01.2016, 15:12
Эмм, именно момент отключения игрока от сервера.

#enotik
02.01.2016, 15:19
Эмм, именно момент отключения игрока от сервера.



[14:10:12] [connection] 178.127.233.162:63466 requests connection cookie.
[14:10:13] [connection] incoming connection: 178.127.233.162:63466 id: 0
[14:10:13] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[14:10:27] [part] Andy_Fawkess has left the server (0:1)
[14:10:57] [connection] 178.127.233.162:63468 requests connection cookie.
[14:10:58] [connection] incoming connection: 178.127.233.162:63468 id: 0
[14:10:59] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[14:11:07] [part] Andy_Fawkess has left the server (0:1)
[14:11:29] [connection] 178.127.233.162:53992 requests connection cookie.
[14:11:30] [connection] incoming connection: 178.127.233.162:53992 id: 0
[14:11:30] [join] Andy_Fawkess has joined the server (0:178.127.233.162)
[14:11:35] [part] Andy_Fawkess has left the server (0:1)

Как я заметил, когда нормально проходит подключение, порт один, кода сразу выкидывает(закрывает подключение), порт другой..