[Помогите] Admin Stealth

RaayNoff

Участник
Сообщения
135
Реакции
12
В забугорном плагине, есть одна ошибочка, которая крашит сервачок. Вообшем суть заключается в том, что при старте нового раунда сервер вылетает. Смысл плагина в том, чтобы скрыть администратора и ввести в stealth режим. На сервере админа не видно ни в табе, ни в самом процессе игры. Помогите пожалуйста, кто может пофиксить эту ошибку? Буду очень благодарен!
--- Добавлено позже ---
C-подобный:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#include <sdkhooks>

#tryinclude <jenkins>

#define VERSION "1.4"

#if !defined BUILD
#define BUILD "0"
#endif

#define SPECTATOR 1
#define JOIN_MESSAGE "Player %N has joined the game"
#define QUIT_MESSAGE "Player %N left the game (Disconnected by user.)"

public Plugin:myinfo =
{
    name = "Admin Stealth",
    author = "necavi",
    description = "Allows administrators to become nearly completely invisible.",
    version = VERSION,
    url = "http://necavi.org/"
}
new bool:g_bIsInvisible[MAXPLAYERS + 2] = {false, ...};
new g_iSpectateTarget[MAXPLAYERS + 2] = {0, ...};
new Float:g_fLastSpecChange[MAXPLAYERS + 2] = {0.0, ...};
new g_iOldTeam[MAXPLAYERS + 2] = {0, ...};
new Handle:g_hHostname = INVALID_HANDLE;

public OnPluginStart()
{
    CreateConVar("sm_adminstealth_version", VERSION, "", FCVAR_PLUGIN);
    CreateConVar("sm_adminstealth_build", BUILD, "", FCVAR_PLUGIN);
    RegAdminCmd("sm_stealth", Command_Stealth, ADMFLAG_CUSTOM3, "Allows an administrator to toggle complete invisibility on themselves.");
    g_hHostname = FindConVar("hostname");
    AddCommandListener(Command_JoinTeam, "jointeam");
    AddCommandListener(Command_Status, "status");
}
public OnClientDisconnect(client)
{
    if(g_bIsInvisible[client] && ValidPlayer(client))
    {
        InvisOff(client);
    }
}
public Action:OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon, &subtype, &cmdnum, &tickcount, &seed, mouse[2])
{
    if(g_bIsInvisible[client] && buttons & IN_JUMP && GetGameTime() > g_fLastSpecChange[client] + 1.0)
    {
        new current_target = GetClientOfUserId(g_iSpectateTarget[client]);
        new new_target;
        for(new i = current_target + 1; i <= MaxClients + current_target; i++)
        {
            new_target = (i >= MaxClients) ? i % MaxClients : i;
            PrintToChat(client, "current_target: %d new_target = %d", current_target, new_target);
            if(new_target != client && ValidPlayer(new_target) && IsPlayerAlive(new_target))
            {
                g_iSpectateTarget[client] = GetClientUserId(new_target);
                new Float:target_origin[3];
                new Float:target_angles[3];
                GetClientAbsOrigin(new_target, target_origin);
                GetClientEyeAngles(new_target, target_angles);
                TeleportEntity(client, target_origin, target_angles, NULL_VECTOR);
                g_fLastSpecChange[client] = GetGameTime();
                return;
            }
        }
    }
}
public Action:Command_JoinTeam(client, const String:command[], args) 
{
    if(g_bIsInvisible[client])
    {
        PrintToChat(client, "[SM] Can not join team when in invisible mode!");
        return Plugin_Handled;
    }
    else
    {
        return Plugin_Continue;
    }
}
public Action:Event_WeaponCanUse(client,weapon)
{
    return Plugin_Handled;
}
public Action:Command_Status(client, const String:command[], args)
{
    if(CheckCommandAccess(client, "sm_stealth", 0))
    {
        return Plugin_Continue;
    }
    new String:buffer[64];
    GetConVarString(g_hHostname,buffer,sizeof(buffer));
    PrintToConsole(client,"hostname: %s",buffer);
    PrintToConsole(client,"version : 1909615/24 1909615 secure");
    GetCurrentMap(buffer,sizeof(buffer));
    new Float:vec[3];
    GetClientAbsOrigin(client, vec);
    PrintToConsole(client,"map     : %s at: %.0f x, %.0f y, %.0f z", buffer, vec[0], vec[1], vec[2]);
    PrintToConsole(client,"players : %d (%d max)", GetClientCount() - GetInvisCount(), MaxClients);
    PrintToConsole(client,"# userid name                uniqueid            connected ping loss state");
    new String:name[18];
    new String:steamID[19];
    new String:time[9];
    for(new i; i <= MaxClients; i++)
    {
        if(ValidPlayer(i))
        {
            if(!g_bIsInvisible[i])
            {
                Format(name,sizeof(name),"\"%N\"",i);
                GetClientAuthString(i,steamID,sizeof(steamID));
                if(!IsFakeClient(i))
                {
                    FormatShortTime(RoundToFloor(GetClientTime(i)),time,sizeof(time));
                    PrintToConsole(client,"# %6d %-19s %19s %9s %4d %4d active", GetClientUserId(i),
                        name, steamID, time, RoundToFloor(GetClientAvgLatency(i,NetFlow_Both) * 1000.0),
                        RoundToFloor(GetClientAvgLoss(i,NetFlow_Both) * 100.0));
                }
                else
                {
                    PrintToConsole(client,"# %6d %-19s %19s                     active", GetClientUserId(i), name, steamID);
                }
            }
        }
    }
    return Plugin_Stop;
}
public Action:Command_Stealth(client, args)
{
    ToggleInvis(client);
    LogAction(client, -1, "%N has toggled stealth mode.", client);
    return Plugin_Handled;
}
ToggleInvis(client)
{
    if(g_bIsInvisible[client])
    {
        InvisOff(client);
    }
    else
    {
        InvisOn(client);
    }
}
InvisOff(client, announce=true)
{
    g_bIsInvisible[client] = false;
    SetEntProp(client, Prop_Send, "m_iTeamNum", g_iOldTeam[client]);
    if(GetClientTeam(client) != SPECTATOR)
    {
        SetEntProp(client, Prop_Send, "m_lifeState", 0);
        SetEntProp(client, Prop_Data, "m_takedamage", 2);
        SetEntityMoveType(client, MOVETYPE_ISOMETRIC);   
        SDKUnhook(client, SDKHook_WeaponCanUse, Event_WeaponCanUse);
        if(IsPlayerAlive(client))
        {
            GivePlayerItem(client, "weapon_knife");
        }
    }
    if(announce)
    {
        PrintToChatAll(JOIN_MESSAGE, client);
    }
    PrintToChat(client, "You are no longer in stealth mode.");

}

InvisOn(client, announce=true)
{
    g_bIsInvisible[client] = true;
    g_iOldTeam[client] = GetEntProp(client,Prop_Send,"m_iTeamNum");
    SetEntProp(client, Prop_Send, "m_iTeamNum", 4);
    if(GetClientTeam(client) != SPECTATOR)
    {
        SetEntProp(client, Prop_Send, "m_lifeState",2);
        SetEntProp(client, Prop_Data, "m_takedamage",0);   
        SetEntityMoveType(client, MOVETYPE_NOCLIP);
        RemoveAllWeapons(client);
        SDKHook(client, SDKHook_WeaponCanUse, Event_WeaponCanUse);
    }
    if(announce)
    {
        PrintToChatAll(QUIT_MESSAGE, client);
    }
    PrintToChat(client, "You are now in stealth mode.");

}
RemoveAllWeapons(client)
{
   
    new weaponIndex;
    for (new i = 0; i <= 5; i++)
    {
        while ((weaponIndex = GetPlayerWeaponSlot(client, i)) != -1)
        {
            RemovePlayerItem(client, weaponIndex);
            RemoveEdict(weaponIndex);
        }
    }
}
bool:ValidPlayer(client)
{
    if(client > 0 && client <= MaxClients && IsClientConnected(client) && IsClientInGame(client))
    {
        return true;
    }
    return false;
}
FormatShortTime(time, String:outTime[], size)
{
    new temp;
    temp = time % 60;
    Format(outTime, size,"%02d",temp);
    temp = (time % 3600) / 60;
    Format(outTime, size,"%02d:%s", temp, outTime);
    temp = (time % 86400) / 3600;
    if(temp > 0)
    {
        Format(outTime, size, "%d%:s", temp, outTime);

    }
}
GetInvisCount()
{
    new count = 0;
    for(new i; i <= MaxClients; i++)
    {
        if(ValidPlayer(i) && g_bIsInvisible[i])
        {
            count++;
        }
    }
    return count;
}
 

RaayNoff

Участник
Сообщения
135
Реакции
12
Поставь перед этими строками // и скомпилируй заново. Оружие можно будет использовать, но для теста от падения - ничего страшного.
Поставил комментарии там где ты и говорил. Все равно крашит сервер.
 

RaayNoff

Участник
Сообщения
135
Реакции
12
Эх ну ладно. Спасибо, что пытался помочь. Скажи пожалуйста, как ты учился скриптингу? Есть нормальное видео обучение? Про обучение от Рико не говори, я текст плохо воспринимаю. :)
 

RaayNoff

Участник
Сообщения
135
Реакции
12
Вот ссылочка
C-подобный:
https://forums.alliedmods.net/showthread.php?p=1796351
 

AlmazON

Не путать с самим yand3xmail
Сообщения
5,099
Реакции
2,755
пофиксить эту ошибку
PHP:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#include <sdkhooks>

#tryinclude <jenkins>

#define VERSION "1.4fix"

#if !defined BUILD
#define BUILD "0"
#endif

#define SPECTATOR 1
#define JOIN_MESSAGE "Player %N has joined the game"
#define QUIT_MESSAGE "Player %N left the game (Disconnected by user.)"

public Plugin:myinfo = 
{
    name = "Admin Stealth",
    author = "necavi",
    description = "Allows administrators to become nearly completely invisible.",
    version = VERSION,
    url = "http://necavi.org/"
}
new bool:g_bIsInvisible[MAXPLAYERS + 1];
new g_iSpectateTarget[MAXPLAYERS + 1];
new Float:g_fLastSpecChange[MAXPLAYERS + 1];
new g_iOldTeam[MAXPLAYERS + 1];
new Handle:g_hHostname = INVALID_HANDLE;

public OnPluginStart()
{
	CreateConVar("sm_adminstealth_version", VERSION);
	CreateConVar("sm_adminstealth_build", BUILD);
	RegAdminCmd("sm_stealth", Command_Stealth, ADMFLAG_CUSTOM3, "Allows an administrator to toggle complete invisibility on themselves.");
	g_hHostname = FindConVar("hostname");
	AddCommandListener(Command_JoinTeam, "jointeam");
	AddCommandListener(Command_Status, "status");
	HookEventEx("round_prestart", Event_RoundPrestart, EventHookMode_PostNoCopy);
	HookEventEx("round_poststart", Event_RoundPoststart, EventHookMode_PostNoCopy);
}
public OnClientDisconnect(client)
{
	if(g_bIsInvisible[client]) InvisOff(client, false);
}
public Action:OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon, &subtype, &cmdnum, &tickcount, &seed, mouse[2])
{
    if(g_bIsInvisible[client] && buttons & IN_JUMP && GetGameTime() > g_fLastSpecChange[client] + 1.0)
    {
        static current_target, new_target;
        current_target = GetClientOfUserId(g_iSpectateTarget[client]);
        for(new i = current_target + 1; i <= MaxClients + current_target; i++)
        {
            new_target = (i >= MaxClients) ? i % MaxClients : i;
            PrintToChat(client, "current_target: %d new_target = %d", current_target, new_target);
            if(new_target != client && ValidPlayer(new_target) && IsPlayerAlive(new_target))
            {
                g_iSpectateTarget[client] = GetClientUserId(new_target);
                decl Float:target_origin[3], Float:target_angles[3];
                GetClientAbsOrigin(new_target, target_origin);
                GetClientEyeAngles(new_target, target_angles);
                TeleportEntity(client, target_origin, target_angles, NULL_VECTOR);
                g_fLastSpecChange[client] = GetGameTime();
                return Plugin_Continue;
            }
        }
    }
    return Plugin_Continue;
}
public Action:Command_JoinTeam(client, const String:command[], args)  
{ 
    if(g_bIsInvisible[client])
    {
        PrintToChat(client, "[SM] Can not join team when in invisible mode!");
        return Plugin_Handled; 
    }
    return Plugin_Continue;
}
public Action:Event_WeaponCanUse(client,weapon)
{
    return Plugin_Handled;
}
public Action:Command_Status(client, const String:command[], args)
{
    if(CheckCommandAccess(client, "sm_stealth", 0))
    {
        return Plugin_Continue;
    }
    decl String:buffer[64];
    GetConVarString(g_hHostname,buffer,sizeof(buffer));
    PrintToConsole(client,"hostname: %s",buffer);
    PrintToConsole(client,"version : 1909615/24 1909615 secure");
    GetCurrentMap(buffer,sizeof(buffer));
    decl Float:vec[3];
    GetClientAbsOrigin(client, vec);
    PrintToConsole(client,"map     : %s at: %.0f x, %.0f y, %.0f z", buffer, vec[0], vec[1], vec[2]);
    PrintToConsole(client,"players : %d (%d max)", GetClientCount() - GetInvisCount(), MaxClients);
    PrintToConsole(client,"# userid name                uniqueid            connected ping loss state");
    decl String:name[18], String:steamID[19], String:time[9];
    for(new i = 1; i <= MaxClients; i++)
    {
        if(ValidPlayer(i))
        {
            if(!g_bIsInvisible[i])
            {
                Format(name,sizeof(name),"\"%N\"",i);
                #if SOURCEMOD_V_MAJOR > 1 || SOURCEMOD_V_MINOR > 5
                GetClientAuthId(i,AuthId_Engine,steamID,sizeof(steamID));
                #else
                GetClientAuthString(i,steamID,sizeof(steamID));
                #endif
                if(!IsFakeClient(i))
                {
                    FormatShortTime(RoundToFloor(GetClientTime(i)),time,sizeof(time));
                    PrintToConsole(client,"# %6d %-19s %19s %9s %4d %4d active", GetClientUserId(i), 
                        name, steamID, time, RoundToFloor(GetClientAvgLatency(i,NetFlow_Both) * 1000.0), 
                        RoundToFloor(GetClientAvgLoss(i,NetFlow_Both) * 100.0));
                } 
                else 
                {
                    PrintToConsole(client,"# %6d %-19s %19s                     active", GetClientUserId(i), name, steamID);
                }
            }
        }
    }
    return Plugin_Stop;
}
public Action:Command_Stealth(client, args)
{
    if(client)
    {
        ToggleInvis(client);
        LogAction(client, -1, "%N has toggled stealth mode.", client);
    }
    return Plugin_Handled;
}
ToggleInvis(client)
{
	if(g_bIsInvisible[client]) InvisOff(client);
	else InvisOn(client);
}
InvisOff(client, bool:stop=true, bool:announce=true)
{
	g_bIsInvisible[client] = !announce;
	if(stop)
	{
		SetEntProp(client, Prop_Send, "m_iTeamNum", g_iOldTeam[client]);
		if(GetClientTeam(client) != SPECTATOR)
		{
			SetEntProp(client, Prop_Send, "m_lifeState", 0);
			SetEntProp(client, Prop_Data, "m_takedamage", 2);
			SetEntityMoveType(client, MOVETYPE_ISOMETRIC);
			SDKUnhook(client, SDKHook_WeaponCanUse, Event_WeaponCanUse);
			if(IsPlayerAlive(client)) GivePlayerItem(client, "weapon_knife");
			if(announce) PrintToChat(client, "You are no longer in stealth mode.");
		}
	}
	if(announce) PrintToChatAll(JOIN_MESSAGE, client);
}

InvisOn(client, bool:announce=true)
{
	g_bIsInvisible[client] = true;
	g_iOldTeam[client] = GetEntProp(client,Prop_Send,"m_iTeamNum");
	SetEntProp(client, Prop_Send, "m_iTeamNum", 4);
	if(GetClientTeam(client) != SPECTATOR)
	{
		SetEntProp(client, Prop_Send, "m_lifeState",2);
		SetEntProp(client, Prop_Data, "m_takedamage",0);
		SetEntityMoveType(client, MOVETYPE_NOCLIP);
		new entity = CreateEntityByName("player_weaponstrip");
		AcceptEntityInput(entity, "strip", client);
		AcceptEntityInput(entity, "kill");
		SDKHook(client, SDKHook_WeaponCanUse, Event_WeaponCanUse);
	}
	if(announce)
	{
		PrintToChat(client, "You are now in stealth mode.");
		PrintToChatAll(QUIT_MESSAGE, client);
	}
}
bool:ValidPlayer(client)
{
    return client > 0 && client <= MaxClients && IsClientConnected(client) && IsClientInGame(client);
}
FormatShortTime(time, String:outTime[], size)
{
    new temp;
    temp = time % 60;
    Format(outTime, size,"%02d",temp);
    temp = (time % 3600) / 60;
    Format(outTime, size,"%02d:%s", temp, outTime);
    temp = (time % 86400) / 3600;
    if(temp > 0)
    {
        Format(outTime, size, "%d%:s", temp, outTime);
    }
}
GetInvisCount()
{
    new count = 0;
    for(new i = 1; i <= MaxClients; i++)
    {
        if(g_bIsInvisible[i])
        {
            count++;
        }
    }
    return count;
}

public Event_RoundPrestart(Handle:event, String:name[], bool:dontBroadcast)
{
	for (new i = 1; i <= MaxClients; ++i)
	{
		if(g_bIsInvisible[i]) InvisOff(i, true, false);
	}
}
public Event_RoundPoststart(Handle:event, String:name[], bool:dontBroadcast)
{
	for (new i = 1; i <= MaxClients; ++i)
	{
		if(g_bIsInvisible[i]) InvisOn(i, false);
	}
}
 
Последнее редактирование:

RaayNoff

Участник
Сообщения
135
Реакции
12
Можешь написать, что ты добавил и прокомментировать пожалуйста?
 

AlmazON

Не путать с самим yand3xmail
Сообщения
5,099
Реакции
2,755
перед спавном - выкл., а после - включить
Судя по всему, работает? Оффтоп
 

Rabb1t

Амбассадор
Сообщения
2,968
Реакции
1,429
  • Команда форума
  • #12
@"RaayNoff", Оффтоп
 

RaayNoff

Участник
Сообщения
135
Реакции
12
Судя по всему, работает? Оффтоп
Даже не успел протестировать т. к. с планшета. Скажу спасибо, когда проверю, если заработает.
--- Добавлено позже ---
@Rabb1t, созданием таких уроков можно неплохо заработать на ютубе. Ответить и пролайкать не смог, тк не догадался ибо сидел с планшета.
--- Добавлено позже ---
Судя по всему, работает? Оффтоп
Не собираюсь я выкладывать фикс со своим авторством. Спасибо за помощь в любом случае, позже напишу о работоспособности. Для себя спрашивал по поводу комментариев, тк ничего не смыслю. Как я понял ты добавил вот этот паблик, правильно?
C-подобный:
public Action:Event_Spawn(client)
{
    InvisOff(client, false, false);
    return Plugin_Continue;
}

public Event_SpawnPost(client) InvisOn(client, false, false);
--- Добавлено позже ---
Скинь пжлст плагин, если на кс го тоже работает)
Скину обязательно, как приду домой. Через часа 4.
--- Добавлено позже ---
@AlmazON проверил, не помогло. Все также крашит сервер.
--- Добавлено позже ---
@life вот ссылка на плагин:
 
Последнее редактирование:

Rabb1t

Амбассадор
Сообщения
2,968
Реакции
1,429
  • Команда форума
  • #14
@"RaayNoff", Оффтоп
 

RaayNoff

Участник
Сообщения
135
Реакции
12
@life вот ссылка на плагин: Admin Stealth - AlliedModders
@"RaayNoff", Оффтоп
Оффтоп
--- Добавлено позже ---
@"RaayNoff", Оффтоп
Оффтоп
 

Rostu

Добрая душа
Сообщения
986
Реакции
622
@AlmazON, @"RaayNoff", Я так и не понял как действует данный плагин. Т.к при заходе меня видно в TAB и я был видимым а не невидимым. - CS:GO
 

RaayNoff

Участник
Сообщения
135
Реакции
12
@AlmazON
Так же крашит.
L 01/12/2017 - 00:31:05: SourceMod error session started
L 01/12/2017 - 00:31:05: Info (map "workshop/745310980/ttt_cg_magma_v2b") (file "errors_20170112.log")
L 01/12/2017 - 00:31:05: Error log file session closed.
L 01/12/2017 - 00:31:05: SourceMod error session started
L 01/12/2017 - 00:31:05: Info (map "workshop/745310980/ttt_cg_magma_v2b") (file "errors_20170112.log")
L 01/12/2017 - 00:31:05: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 00:31:05: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 00:37:45: Error log file session closed.
L 01/12/2017 - 00:37:45: SourceMod error session started
L 01/12/2017 - 00:37:45: Info (map "workshop/745310980/ttt_cg_magma_v2b") (file "errors_20170112.log")
L 01/12/2017 - 00:37:45: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 00:37:45: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 01:12:08: Error log file session closed.
L 01/12/2017 - 01:12:08: SourceMod error session started
L 01/12/2017 - 01:12:08: Info (map "workshop/686457680/ttt_clue") (file "errors_20170112.log")
L 01/12/2017 - 01:12:08: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 01:12:08: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 01:46:07: Error log file session closed.
L 01/12/2017 - 01:46:07: SourceMod error session started
L 01/12/2017 - 01:46:07: Info (map "workshop/679851958/ttt_richburg") (file "errors_20170112.log")
L 01/12/2017 - 01:46:07: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 01:46:07: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 02:22:04: Error log file session closed.
L 01/12/2017 - 02:22:04: SourceMod error session started
L 01/12/2017 - 02:22:04: Info (map "workshop/754011768/ttt_sg_skyfrequency") (file "errors_20170112.log")
L 01/12/2017 - 02:22:04: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 02:22:04: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 06:44:27: SourceMod error session started
L 01/12/2017 - 06:44:27: Info (map "de_dust2") (file "errors_20170112.log")
L 01/12/2017 - 06:44:27: [SM] Unable to load extension "cleaner.ext": Failed to find signature. Please contact the author.
L 01/12/2017 - 06:44:28: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 06:44:28: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 06:44:30: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 06:44:31: Error log file session closed.
L 01/12/2017 - 06:44:31: SourceMod error session started
L 01/12/2017 - 06:44:31: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 06:44:31: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 06:44:31: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 06:44:37: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 06:44:42: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 06:44:47: [ttt/ttt_sql.smx] (SQL_Start) Error: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 06:44:47: [ttt/ttt_sql.smx] (SQL_Start) Database failure: Couldn't connect to "ttt"!
L 01/12/2017 - 06:44:52: [ttt/ttt_sql.smx] Can't connect to a database after 3 retries!
L 01/12/2017 - 09:14:55: SourceMod error session started
L 01/12/2017 - 09:14:55: Info (map "de_dust2") (file "errors_20170112.log")
L 01/12/2017 - 09:14:55: [SM] Unable to load extension "cleaner.ext": Failed to find signature. Please contact the author.
L 01/12/2017 - 09:14:56: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 09:14:56: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 09:14:57: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:14:59: Error log file session closed.
L 01/12/2017 - 09:14:59: SourceMod error session started
L 01/12/2017 - 09:14:59: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 09:14:59: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 09:14:59: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 09:15:04: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:15:09: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:15:14: [ttt/ttt_sql.smx] (SQL_Start) Error: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:15:14: [ttt/ttt_sql.smx] (SQL_Start) Database failure: Couldn't connect to "ttt"!
L 01/12/2017 - 09:15:19: [ttt/ttt_sql.smx] Can't connect to a database after 3 retries!
L 01/12/2017 - 09:15:56: Error log file session closed.
L 01/12/2017 - 09:15:56: SourceMod error session started
L 01/12/2017 - 09:15:56: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 09:15:56: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 09:15:56: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 09:17:06: SourceMod error session started
L 01/12/2017 - 09:17:06: Info (map "de_dust2") (file "errors_20170112.log")
L 01/12/2017 - 09:17:06: [SM] Unable to load extension "cleaner.ext": Failed to find signature. Please contact the author.
L 01/12/2017 - 09:17:07: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 09:17:07: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 09:17:08: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:17:09: Error log file session closed.
L 01/12/2017 - 09:17:09: SourceMod error session started
L 01/12/2017 - 09:17:09: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 09:17:09: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 09:17:09: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 09:17:15: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:17:20: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:17:25: [ttt/ttt_sql.smx] (SQL_Start) Error: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 09:17:25: [ttt/ttt_sql.smx] (SQL_Start) Database failure: Couldn't connect to "ttt"!
L 01/12/2017 - 09:17:30: [ttt/ttt_sql.smx] Can't connect to a database after 3 retries!
L 01/12/2017 - 10:08:33: Error log file session closed.
L 01/12/2017 - 10:08:33: SourceMod error session started
L 01/12/2017 - 10:08:33: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 10:08:33: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 10:08:33: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 10:46:10: Error log file session closed.
L 01/12/2017 - 10:46:11: SourceMod error session started
L 01/12/2017 - 10:46:11: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 10:46:11: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 10:46:11: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 10:52:02: Error log file session closed.
L 01/12/2017 - 10:52:02: SourceMod error session started
L 01/12/2017 - 10:52:02: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 10:52:02: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 10:52:02: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 10:56:48: Error log file session closed.
L 01/12/2017 - 10:56:48: SourceMod error session started
L 01/12/2017 - 10:56:48: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 10:56:48: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 10:56:48: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 11:09:23: Error log file session closed.
L 01/12/2017 - 11:09:23: SourceMod error session started
L 01/12/2017 - 11:09:23: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 11:09:23: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 11:09:23: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 11:13:05: Error log file session closed.
L 01/12/2017 - 11:13:05: SourceMod error session started
L 01/12/2017 - 11:13:05: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 11:13:05: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 11:13:05: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 11:39:47: Error log file session closed.
L 01/12/2017 - 11:39:47: SourceMod error session started
L 01/12/2017 - 11:39:47: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 11:39:47: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 11:39:47: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 12:02:31: Error log file session closed.
L 01/12/2017 - 12:02:31: SourceMod error session started
L 01/12/2017 - 12:02:31: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 12:02:31: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 12:02:31: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 12:18:07: Error log file session closed.
L 01/12/2017 - 12:18:07: SourceMod error session started
L 01/12/2017 - 12:18:07: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 12:18:07: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 12:18:07: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 12:27:16: Error log file session closed.
L 01/12/2017 - 12:27:16: SourceMod error session started
L 01/12/2017 - 12:27:16: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 12:27:16: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 12:27:16: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 12:50:30: Error log file session closed.
L 01/12/2017 - 12:50:30: SourceMod error session started
L 01/12/2017 - 12:50:30: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 12:50:30: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 12:50:30: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 12:51:34: Error log file session closed.
L 01/12/2017 - 12:51:34: SourceMod error session started
L 01/12/2017 - 12:51:34: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 12:51:34: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 12:51:34: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:15:40: SourceMod error session started
L 01/12/2017 - 13:15:40: Info (map "de_dust2") (file "errors_20170112.log")
L 01/12/2017 - 13:15:40: [SM] Unable to load extension "cleaner.ext": Failed to find signature. Please contact the author.
L 01/12/2017 - 13:15:41: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 13:15:41: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:15:42: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:15:44: Error log file session closed.
L 01/12/2017 - 13:15:44: SourceMod error session started
L 01/12/2017 - 13:15:44: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 13:15:44: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 13:15:44: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:15:49: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:15:54: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:15:59: [ttt/ttt_sql.smx] (SQL_Start) Error: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:15:59: [ttt/ttt_sql.smx] (SQL_Start) Database failure: Couldn't connect to "ttt"!
L 01/12/2017 - 13:16:04: [ttt/ttt_sql.smx] Can't connect to a database after 3 retries!
L 01/12/2017 - 13:16:20: Error log file session closed.
L 01/12/2017 - 13:16:20: SourceMod error session started
L 01/12/2017 - 13:16:20: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 13:16:20: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 13:16:20: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:17:03: SourceMod error session started
L 01/12/2017 - 13:17:03: Info (map "de_dust2") (file "errors_20170112.log")
L 01/12/2017 - 13:17:03: [SM] Unable to load extension "cleaner.ext": Failed to find signature. Please contact the author.
L 01/12/2017 - 13:17:04: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 13:17:04: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:17:06: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:17:07: Error log file session closed.
L 01/12/2017 - 13:17:07: SourceMod error session started
L 01/12/2017 - 13:17:07: Info (map "workshop/653562320/ttt_rooftops_slayers") (file "errors_20170112.log")
L 01/12/2017 - 13:17:07: [SM] Fatal error encountered parsing translation file "plugin.playersvotes.txt"
L 01/12/2017 - 13:17:07: [SM] Error (line 0, column 0): Stream failed to open
L 01/12/2017 - 13:17:12: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:17:18: [ttt/ttt_sql.smx] (OnConnect) Connection to database failed: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:17:23: [ttt/ttt_sql.smx] (SQL_Start) Error: [1045]: Access denied for user 'gord_tttt'@'46.174.50.59' (using password: YES)
L 01/12/2017 - 13:17:23: [ttt/ttt_sql.smx] (SQL_Start) Database failure: Couldn't connect to "ttt"!
L 01/12/2017 - 13:17:28: [ttt/ttt_sql.smx] Can't connect to a database after 3 retries!
--- Добавлено позже ---
@AlmazON, @"RaayNoff", Я так и не понял как действует данный плагин. Т.к при заходе меня видно в TAB и я был видимым а не невидимым. - CS:GO
Пропиши команду "sm_stealth".
 

Rostu

Добрая душа
Сообщения
986
Реакции
622
@"RaayNoff", Ах ну да. Ну хорошо что у меня бхоп. @AlmazON, У меня в errorах только и краш.
L 01/12/2017 - 19:38:25: [b_hide.smx] Event_Spawn
L 01/12/2017 - 19:38:25: [b_hide.smx] Event_Spawn off
L 01/12/2017 - 19:38:25: [b_hide.smx] Event_SpawnPost
L 01/12/2017 - 19:38:31: [b_hide.smx] Event_Spawn
L 01/12/2017 - 19:38:31: [b_hide.smx] Event_Spawn off
L 01/12/2017 - 19:38:31: [b_hide.smx] Event_SpawnPost
L 01/12/2017 - 19:38:47: [b_hide.smx] Event_Spawn
 
Сверху Снизу