Raised This Month: $12 Target: $400
 3% 

[CS:GO] Zombie Plague 1.2.1 (Updated 01-Mar-2023)


Post New Thread Reply   
 
Thread Tools Display Modes
rokfestr
Member
Join Date: Apr 2011
Old 03-20-2018 , 03:52   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #371

Quote:
Originally Posted by gubka View Post
change database plugin

PHP Code:
/**
 * ============================================================================
 *
 *  Zombie Plague Mod #3 Generation
 *
 *
 *  Copyright (C) 2015-2018 Nikita Ushakov (Ireland, Dublin)
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * ============================================================================
 **/

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

#pragma newdecls required

// Define for deleting database each map
//#define DROPPING

/**
 * Record plugin info.
 **/
public Plugin DataBase =
{
    
name            "[ZP] Addon: DataBase",
    
author          "qubka (Nikita Ushakov)",     
    
description     "MYSQL or SQlite database for ammopacks, level, exp",
    
version         "6.0",
    
url             "https://forums.alliedmods.net/showthread.php?t=290657"
}
 
/**
 * Name of database section in the database.cfg
 **/
#define AMMOPACK_BLOCK_DATABASE         "zombiedatabase"

/**
 * Amount of variables for new player.
 **/
#define DEFAULT_AMMOPACK    50
#define DEFAULT_LEVEL        1
#define DEFAULT_EXP            0

/**
 * Steam ID length.
 **/
#define STEAMID_MAX_LENGTH     32

// Handle for database
Handle hDataBase INVALID_HANDLE;

// Arrays for storing ID in the SQL base
char SteamID[MAXPLAYERS+1][STEAMID_MAX_LENGTH];
int  DataID[MAXPLAYERS+1];
bool IsLoaded[MAXPLAYERS+1];

/**
 * Create a SQL database connection.
 **/
public void OnConfigsExecuted(/*void*/)
{
    
// Close database handle, if it was already created
    
if(hDataBase != INVALID_HANDLE)
    {
        
delete hDataBase;
    }
    
    
// Returns if a named configuration is present in databases.cfg.
    
if(SQL_CheckConfig(AMMOPACK_BLOCK_DATABASE))
    {
        
// Initialize chars
        
char sError[BIG_LINE_LENGTH];
        
char sDriver[SMALL_LINE_LENGTH]; 
        
char sRequest[PLATFORM_MAX_PATH];
        
        
// Creates an SQL connection from a named configuration
        
hDataBase SQL_Connect(AMMOPACK_BLOCK_DATABASEfalsesErrorsizeof(sError));

        
// If base doesn't exist or mod can't make connection
        
if(hDataBase == INVALID_HANDLE)
        {
            
SetFailState(sError);
            return;
        }
        
        
// Reads the driver of an opened database
        
SQL_ReadDriver(hDataBasesDriversizeof(sDriver)); 
        
        
// If driver is a MySQL
        
bool MySQLDataBase StrEqual(sDriver"mysql"false);
        
        
// Block sql base from the other requests
        
SQL_LockDatabase(hDataBase);
        
        
// Delete existing database if dropping enable
        #if defined DROPPING
            // Format request
            
Format(sRequestsizeof(sRequest), "DROP TABLE IF EXISTS `zombieplague_database`");
            
            
// Sent a request
            
if(!SQL_FastQuery(hDataBasesRequest))
            {
                
// Get an error, if it exist
                
SQL_GetError(hDataBasesErrorsizeof(sError));
                
                
// Log error and stop server
                
SetFailState("%s in request: \"%s\""sErrorsRequest);
                return;
            }
        
#endif
        
        // Format request
        
if(MySQLDataBase)
        {
            
Format(sRequestsizeof(sRequest), "CREATE TABLE IF NOT EXISTS `zombieplague_database` (`id` int(64) NOT NULL auto_increment, `steam_id` varchar(32) NOT NULL, `money` int(64) NOT NULL, `level` int(64) NOT NULL, `exp` int(64) NOT NULL, `humanclass` int(64) NOT NULL, `zombieclass` int(64) NOT NULL, PRIMARY KEY  (`id`), UNIQUE KEY `steam_id` (`steam_id`))");
        }
        else
        {
            
Format(sRequestsizeof(sRequest), "CREATE TABLE IF NOT EXISTS `zombieplague_database` (id INTEGER PRIMARY KEY AUTOINCREMENT, steam_id TEXT UNIQUE, money INTEGER, level INTEGER, exp INTEGER, humanclass INTEGER, zombieclass INTEGER)");
        }
        
        
// Sent a request
        
if(!SQL_FastQuery(hDataBasesRequest))
        {
            
// Get an error, if it exist
            
SQL_GetError(hDataBasesErrorsizeof(sError));
            
            
// Log error and stop server
            
SetFailState("%s in request: \"%s\""sErrorsRequest);
            return;
        }

        
// Unlock it
        
SQL_UnlockDatabase(hDataBase);
    }
    else
    {
        
SetFailState("Section \"%s\" doesn't found in databases.cfg"AMMOPACK_BLOCK_DATABASE);
    }
}



/**
 * SQL functions, which work with the client.
 **/
 
 
 
/**
 * Called when a client is disconnecting from the server.
 *
 * @param clientIndex        The client index.
 **/
public void OnClientDisconnect(int clientIndex)
{
    
#pragma unused clientIndex
    
    // If client wasn't load, then stop
    
if(!IsLoaded[clientIndex])
    {
        return;
    }
    
    
// Update ammopacks in database
    
SaveClientInfo(clientIndex);
    
    
// Reset client's variables
    
DataID[clientIndex] = -1;
    
IsLoaded[clientIndex] = false;
}

/**
 * Called once a client is authorized and fully in-game, and 
 * after all post-connection authorizations have been performed.  
 *
 * This callback is gauranteed to occur on all clients, and always 
 * after each OnClientPutInServer() call.
 * 
 * @param clientIndex        The client index. 
 **/
public void OnClientPostAdminCheck(int clientIndex)
{
    
#pragma unused clientIndex
    
    // Reset client's variables
    
DataID[clientIndex] = -1;
    
IsLoaded[clientIndex] = false;
    
    
// If database doesn't exist, then stop
    
if(hDataBase == INVALID_HANDLE)
    {
        return;
    }
    
    
// Verify that the client is non-bot
    
if(IsFakeClient(clientIndex))
    {
        return;
    }
    
    
// Initialize reqest char
    
static char sRequest[PLATFORM_MAX_PATH];
    
    
// Get client's authentication string (SteamID)
    
if(!GetClientAuthId(clientIndexAuthId_Steam2SteamID[clientIndex], sizeof(SteamID[])))
    {
        return;
    }

    
// Format request
    
Format(sRequestsizeof(sRequest), "SELECT id, money, level, exp, humanclass, zombieclass FROM `zombieplague_database` WHERE steam_id = '%s'"SteamID[clientIndex]);
    
    
// Sent a request
    
SQL_TQuery(hDataBaseSQLBaseExtract_CallbacksRequestGetClientUserId(clientIndex));
}

/**
 * General callback for threaded SQL stuff
 *
 * @param hDriver            Parent object of the handle.
 * @param hResult            Handle to the child object.
 * @param sSQLerror            Error string if there was an error.
 * @param clientID            Data passed in via the original threaded invocation.
 **/
public void SQLBaseExtract_Callback(Handle hDriverHandle hResult, const char[] sSQLerrorany clientID)
{
    
// Get real player index from event key
    
int clientIndex GetClientOfUserId(clientID);

    
#pragma unused clientIndex
    
    // Make sure the client didn't disconnect while the thread was running
    
if(clientIndex)
    {
        
// If invalid query handle
        
if(hResult == INVALID_HANDLE)
        {
            
LogError(sSQLerror);
            return;
        }
        else
        {
            
// Client was found, get ammopacks from the table
            
if(SQL_FetchRow(hResult))
            {
                
// Get client ID in the row
                
DataID[clientIndex] = SQL_FetchInt(hResult0); 
                
                
// Set client loaded amount of ammopacks
                
ZP_SetClientAmmoPack(clientIndexSQL_FetchInt(hResult1));
                
                
// Set client level
                
ZP_SetClientLevel(clientIndexSQL_FetchInt(hResult2));
                
                
// Set client exp
                
ZP_SetClientExp(clientIndexSQL_FetchInt(hResult3));

                
// Set client human class
                
ZP_SetClientHumanClass(clientIndexSQL_FetchInt(hResult4));

                
// Set client zombie class
                
ZP_SetClientZombieClass(clientIndexSQL_FetchInt(hResult5));

                
// Update ammopacks in database
                
SaveClientInfo(clientIndex);
            }
            else
            {
                
// Initialize reqest char
                
char sRequest[PLATFORM_MAX_PATH];
                
                
// Format request
                
Format(sRequestsizeof(sRequest), "INSERT INTO `zombieplague_database` (steam_id) VALUES ('%s')"SteamID[clientIndex]);
                
                
// Block sql base from the other requests
                
SQL_LockDatabase(hDataBase);
                
                
// Sent a request
                
if(!SQL_FastQuery(hDataBasesRequest))
                {
                    
// Initialize char
                    
static char sError[BIG_LINE_LENGTH];
                
                    
// Get an error, if it exist
                    
SQL_GetError(hDataBasesErrorsizeof(sError));
                    
                    
// Log error
                    
LogError("%s in request: \"%s\""sErrorsRequest);
                }
                
                
// Unlock it
                
SQL_UnlockDatabase(hDataBase);
                
                
// Set starter client stats
                
ZP_SetClientAmmoPack(clientIndexDEFAULT_AMMOPACK);
                
ZP_SetClientLevel(clientIndexDEFAULT_LEVEL);
                
ZP_SetClientExp(clientIndexDEFAULT_EXP);
            }
            
            
// Client was loaded
            
IsLoaded[clientIndex] = true;
        }
    }
}

/**
 * Called for inserting amount of ammopacks in the SQL base.
 *
 * @param clientIndex        The client index.
 **/
void SaveClientInfo(int clientIndex)
{
    
#pragma unused clientIndex
    
    // Initialize reqest char
    
static char sRequest[PLATFORM_MAX_PATH];
    
    
// Format request
    
if(DataID[clientIndex] < 1)
    {
        
Format(sRequestsizeof(sRequest), "UPDATE `zombieplague_database` SET money = %d, level = %d, exp = %d, humanclass = %d, zombieclass = %d WHERE steam_id = '%s'"ZP_GetClientAmmoPack(clientIndex), ZP_GetClientLevel(clientIndex), ZP_GetClientExp(clientIndex), ZP_GetClientHumanClassNext(clientIndex), ZP_GetClientZombieClassNext(clientIndex), SteamID[clientIndex]);
    }
    else
    {
        
Format(sRequestsizeof(sRequest), "UPDATE `zombieplague_database` SET money = %d, level = %d, exp = %d, humanclass = %d, zombieclass = %d WHERE id = %d"ZP_GetClientAmmoPack(clientIndex), ZP_GetClientLevel(clientIndex), ZP_GetClientExp(clientIndex), ZP_GetClientHumanClassNext(clientIndex), ZP_GetClientZombieClassNext(clientIndex), DataID[clientIndex]);
    }
    
    
// Block sql base from the other requests
    
SQL_LockDatabase(hDataBase);
    
    
// Sent a request
    
if(!SQL_FastQuery(hDataBasesRequest))
    {
        
// Initialize char
        
static char sError[BIG_LINE_LENGTH];
    
        
// Get an error, if it exist
        
SQL_GetError(hDataBasesErrorsizeof(sError));
        
        
// Log error
        
LogError("%s in request: \"%s\""sErrorsRequest);
    }
    
    
// Unlock it
    
SQL_UnlockDatabase(hDataBase);

Quote:
Originally Posted by Mikado View Post
Delet old database.
DataBase Deleted
rokfestr is offline
romeo7
Senior Member
Join Date: Mar 2017
Old 03-23-2018 , 06:38   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #372

Quote:
Originally Posted by rokfestr View Post
Не работает на MySQL, выдает ошибку:
Code:
L 03/19/2018 - 12:04:45: [SM] Exception reported: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to us in request: "CREATE TABLE IF NOT EXISTS `zombieplague_database` (`id` int(64) NOT NULL auto_increment, `steam_id` varchar(32) NOT NULL, `money` int(64) NOT NULL, `level` int(64) NOT NULL, `exp` int(64) NOT NULL, `humanclass` int(64) NOT NULL, `zombieclass` int(64) NOT"
L 03/19/2018 - 12:04:45: [SM] Blaming: zp/zbm3_addon_database.smx
L 03/19/2018 - 12:04:45: [SM] Call stack trace:
L 03/19/2018 - 12:04:45: [SM]   [0] SetFailState
L 03/19/2018 - 12:04:45: [SM]   [1] Line 144, zbm3_addon_database.sp::OnConfigsExecuted
На sqlite без ошибок
use this and delete old database:
Attached Files
File Type: sp Get Plugin or Get Source (zbm3_addon_database.sp - 212 views - 11.6 KB)
File Type: smx zbm3_addon_database.smx (6.8 KB, 184 views)
romeo7 is offline
mrkos9i4ok
Member
Join Date: Jul 2016
Location: Russia,Moscow
Old 04-14-2018 , 13:39   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #373

/del

Last edited by mrkos9i4ok; 04-14-2018 at 13:42. Reason: i`m find
mrkos9i4ok is offline
recar
Junior Member
Join Date: Feb 2018
Old 05-04-2018 , 11:21   Re: [CS:GO] Release: Zombie Plague 6.4
Reply With Quote #374

Quote:
Originally Posted by gubka View Post
Addons:
Addon: Survivor Freeze Knife
ExtraItem: Custom Weapon Base
Addon: Free VIP
Addon: JetPack
Addon: LaserMines
Addon: Escape

Tutorials:
Tutorial: How to make VIP extra item?
Tutorial: How to add Infection Grenade extra item?

Done:
212.22.93.10:27045
212.22.93.10:27045

How to buy:
50$ each, but if you want to buy them together 25$ sale off

Spoiler
Boss Mode Server Ip?

Last edited by recar; 05-04-2018 at 11:21.
recar is offline
gubka
Veteran Member
Join Date: Jan 2012
Location: Russia
Old 05-09-2018 , 01:32   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #375

On next week I will add update included new claw models probably. Thanks for you work EMINEM_FB. Any other issues with last version ?
__________________
gubka is offline
Send a message via ICQ to gubka
gubka
Veteran Member
Join Date: Jan 2012
Location: Russia
Old 05-17-2018 , 08:01   Re: [CS:GO] Release: Zombie Plague 6.4
Reply With Quote #376

Quote:
Originally Posted by recar View Post
Boss Mode Server Ip?
It dont have test server already, just videos
__________________
gubka is offline
Send a message via ICQ to gubka
Lost_lgz
Member
Join Date: Sep 2011
Old 05-22-2018 , 13:48   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #377

crash server 22/05/2018

Code:
Client "Nixozzz" connected (37.219.236.110:3609).
Client "Nexon" connected (77.115.37.250:27005).
PutClientInServer: no info_player_start on level
PreMinidumpCallback: updating dump comment
crash_20180522182125_1.dmp[3833]: Uploading dump (out-of-process)
/tmp/dumps/crash_20180522182125_1.dmp
Segmentation fault (core dumped)
BFD: Warning: /root/CSGO/csgo-server/core is truncated: expected core file size >= 400580608, found: 1024000.
Cannot access memory at address 0xf770d928
Cannot access memory at address 0xf770d924
Python Exception <class 'gdb.MemoryError'> Cannot access memory at address 0xffedf580:
debug.cmds:1: Error in sourced command file:
Cannot access memory at address 0xffedf580
email debug.log to [email protected]
Tue May 22 19:24:34 CEST 2018: Server restart in 10 seconds
crash_20180522182125_1.dmp[3833]: Finished uploading minidump (out-of-process): success = yes
crash_20180522182125_1.dmp[3833]: response: Discarded=1
crash_20180522182125_1.dmp[3833]: file ''/tmp/dumps/crash_20180522182125_1.dmp'', upload yes: ''Discarded=1''
LD_LIBRARY_PATH=/root/CSGO/csgo-server/bin:/root/CSGO/csgo-server:/root/CSGO/csgo-server/bin:
#
#Console initialized.
Setting breakpad minidump AppID = 740
#Using breakpad minidump system 740/13636.674.DC
Using breakpad crash handler
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Code:
Dropped konradzik54321 hellcase.com from server: Disconnect
PutClientInServer: no info_player_start on level
PutClientInServer: no info_player_start on level
Client "7xenia" connected (41.227.119.23:27005).
Client "houss3m" connected (197.19.224.83:27005).
PreMinidumpCallback: updating dump comment
crash_20180522192446_1.dmp[4160]: Uploading dump (out-of-process)
/tmp/dumps/crash_20180522192446_1.dmp
Segmentation fault (core dumped)
BFD: Warning: /root/CSGO/csgo-server/core is truncated: expected core file size >= 386736128, found: 1024000.
Cannot access memory at address 0xf77d7928
Cannot access memory at address 0xf77d7924
Python Exception <class 'gdb.MemoryError'> Cannot access memory at address 0xffbf70b0:
debug.cmds:1: Error in sourced command file:
Cannot access memory at address 0xffbf70b0
email debug.log to [email protected]
Tue May 22 19:52:32 CEST 2018: Server restart in 10 seconds
crash_20180522192446_1.dmp[4160]: Finished uploading minidump (out-of-process): success = yes
crash_20180522192446_1.dmp[4160]: response: CrashID=bp-9739e76f-ce9c-4302-a60e-738fa2180522
crash_20180522192446_1.dmp[4160]: file ''/tmp/dumps/crash_20180522192446_1.dmp'', upload yes: ''CrashID=bp-9739e76f-ce9c-4302-a60e-738fa2180522''
LD_LIBRARY_PATH=/root/CSGO/csgo-server/bin:/root/CSGO/csgo-server:/root/CSGO/csgo-server/bin:
#
#Console initialized.
Setting breakpad minidump AppID = 740
#Using breakpad minidump system 740/13636.674.DC
Using breakpad crash handler
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Client "Nixozzz" connected (37.219.236.110609).
PutClientInServer: no info_player_start on level
Client "ŁØらT" connected (78.29.225.141:27005).
PutClientInServer: no info_player_start on level
PutClientInServer: no info_player_start on level

plugins list:
Code:
   01 "zbm3_addon_escape.smx"
  02 "autozspawn.smx"
  03 "zbm3_hclasses_classic.smx"
  04 "Chat Processor - Simple Chat Processor Wrapper" (1.0.0) by Keith Warren (Drixevel)
  05 "Client Preferences" (1.8.0.6044) by AlliedModders LLC
  06 "Basic Commands" (1.8.0.6044) by AlliedModders LLC
  07 "zbm3_core.smx"
  08 "zbm3_zclasses_normal_m_01.smx"
  09 "Test Messages" (1.0.0) by Keith Warren (Shaders Allen)
  10 "zbm3_hclasses_strong.smx"
  11 "zbm3_menu_unstuck.smx"
  12 "zbm3_addon_autorespawn.smx"
  13 "zbm3_zclasses_normal_m_09.smx"
  14 "Basic Chat" (1.8.0.6044) by AlliedModders LLC
  15 "Chat-Processor" (2.1.4) by Keith Warren (Shaders Allen)
  16 "zbm3_menu_class.smx"
  17 "Anti-Flood" (1.8.0.6044) by AlliedModders LLC
  18 "zbm3_hclasses_sas.smx"
  19 "zbm3_hclasses_sass.smx"
  20 "zbm3_hclasses_ctt.smx"
  21 "zbm3_hclasses_lincoln.smx"
  22 "Player Commands" (1.8.0.6044) by AlliedModders LLC
  23 "zbm3_hclasses_terr.smx"
  24 "zbm3_hclasses_karachenko.smx"
  25 "zbm3_extraitem_antidot.smx"
  26 "zbm3_hclasses_leet.smx"
  27 "zbm3_hclasses_emma.smx"
  28 "zbm3_hclasses_fast.smx"
  29 "zbm3_hclasses_707.smx"
  30 "Fun Votes" (1.8.0.6044) by AlliedModders LLC
  31 "Basic Info Triggers" (1.8.0.6044) by AlliedModders LLC
  32 "zbm3_zclasses_mutation_light.smx"
  33 "zbm3_extraitem_frezze.smx"
  34 "Basic Votes" (1.8.0.6044) by AlliedModders LLC
  35 "Sound Commands" (1.8.0.6044) by AlliedModders LLC
  36 "[Source 2013] Custom Chat Colors" (3.1.0 CP) by Dr. McKay, Fixed up by Keith Warren (Drixevel)
  37 "zbm3_hclasses_gign.smx"
  38 "zbm3_zclasses_normal_m_10.smx"
  39 "zbm3_zclasses_mutation_heavy.smx"
  40 "zbm3_hclasses_ct.smx"
  41 "zbm3_zclasses_agirl.smx"
  42 "Basic Ban Commands" (1.8.0.6044) by AlliedModders LLC
  43 "zbm3_hclasses_mila.smx"
  44 "zbm3_extraitem_helathshot.smx"
  45 "zbm3_extraitem_armor.smx"
  46 "zbm3_zclasses_fast.smx"
  47 "zbm3_extraitem_tacgrenade.smx"
  48 "Fun Commands" (1.8.0.6044) by AlliedModders LLC
  49 "zbm3_addon_damagebox.smx"
  50 "zbm3_extraitem_flare.smx"
  51 "zbm3_zclasses_normal_f_05.smx"
  52 "Nextmap" (1.8.0.6044) by AlliedModders LLC
  53 "Reserved Slots" (1.8.0.6044) by AlliedModders LLC
  54 "zbm3_hclasses_arctic.smx"
  55 "zbm3_extraitem_incgrenade.smx"
  56 "zbm3_extraitem_molotov.smx"
  57 "zbm3_zclasses_normal_m_08.smx"
  58 "zbm3_zclasses_zombie_range.smx"
  59 "zbm3_hclasses_t.smx"
  60 "zbm3_menu_shop.smx"
  61 "zbm3_zclasses_tank.smx"
  62 "Admin File Reader" (1.8.0.6044) by AlliedModders LLC
  63 "zbm3_hclasses_black.smx"
  64 "zbm3_addon_ammunition.smx"
  65 "zbm3_hclasses_tank.smx"
  66 "hextags" (1.31) by Hexah
  67 "zbm3_hclasses_choi.smx"
  68 "zbm3_addon_database.smx"
  69 "zbm3_extraitem_napalm.smx"
  70 "Basic Comm Control" (1.8.0.6044) by AlliedModders LLC
  71 "zbm3_zclasses_normal_f_01.smx"
  72 "zbm3_hclasses_lisa.smx"
  73 "Admin Help" (1.8.0.6044) by AlliedModders LLC
  74 "zbm3_zclasses_zpsyh.smx"
  75 "zbm3_zclasses_normal_m_02.smx"
  76 "Admin Menu" (1.8.0.6044) by AlliedModders LLC
  77 "zbm3_menu_admin.smx"
  78 "zbm3_hclasses_carrie.smx"
meta list:
Code:
   [01] SourceMod (1.8.0.6044) by AlliedModders LLC
  [02] Zombie Escape Extension (1.0.0.0) by Copyright (C) 2015-2016 Nikita Ushakov (Ireland, Dublin)
  [03] CS Tools (1.8.0.6044) by AlliedModders LLC
  [04] SDK Tools (1.8.0.6044) by AlliedModders LLC
  [05] SDK Hooks (1.8.0.6044) by AlliedModders LLC
start serv:

Code:
./srcds_run -console -game csgo -usercon +ip x.x.x.x +net_public_adr x.x.x.x -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug
game console:
Code:
Failed, using default cubemap 'engine/defaultcubemap'
SignalXWriteOpportunity(3)
No pure server whitelist. sv_pure = 0
ConVarRef snd_disable_legacy_audio_cache doesn't point to an existing ConVar
ŁØらT connected.
ConVarRef csm_force_enable_displacements doesn't point to an existing ConVar
Unknown command: zhumanclassmenu
Communications with routing cluster 'tsnt' established.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.
QIIST connected.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.

Server connection timed out.
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)

dump.log
Code:
----------------------------------------------
CRASH: Tue May 22 01:08:16 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25762]
[New LWP 25765]
[New LWP 25766]
[New LWP 25769]
[New LWP 25778]
[New LWP 25779]
[New LWP 25780]
[New LWP 25781]
[New LWP 25782]
[New LWP 25763]
[New LWP 25774]
[New LWP 25772]
[New LWP 25771]
[New LWP 25770]
[New LWP 25768]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:09:15 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25803]
[New LWP 25806]
[New LWP 25809]
[New LWP 25812]
[New LWP 25814]
[New LWP 25817]
[New LWP 25821]
[New LWP 25822]
[New LWP 25823]
[New LWP 25824]
[New LWP 25825]
[New LWP 25807]
[New LWP 25804]
[New LWP 25813]
[New LWP 25815]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:10:04 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25852]
[New LWP 25853]
[New LWP 25858]
[New LWP 25868]
[New LWP 25856]
[New LWP 25855]
[New LWP 25869]
[New LWP 25861]
[New LWP 25870]
[New LWP 25860]
[New LWP 25859]
[New LWP 25871]
[New LWP 25864]
[New LWP 25862]
[New LWP 25872]
#0  0xe9bcd9b2 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:10:23 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25887]
[New LWP 25895]
[New LWP 25888]
[New LWP 25890]
[New LWP 25891]
[New LWP 25893]
[New LWP 25894]
[New LWP 25896]
[New LWP 25897]
[New LWP 25899]
[New LWP 25903]
[New LWP 25904]
[New LWP 25905]
[New LWP 25906]
[New LWP 25907]
#0  0xf5f4df22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:11:09 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25920]
[New LWP 25921]
[New LWP 25923]
[New LWP 25926]
[New LWP 25969]
[New LWP 25924]
[New LWP 25952]
[New LWP 25953]
[New LWP 25958]
[New LWP 25961]
[New LWP 25965]
[New LWP 25966]
[New LWP 25967]
[New LWP 25968]
[New LWP 25959]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 19:24:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 2894]
[New LWP 2895]
[New LWP 2898]
[New LWP 2897]
[New LWP 2901]
[New LWP 2902]
[New LWP 2932]
[New LWP 2933]
[New LWP 2935]
[New LWP 2941]
[New LWP 2942]
[New LWP 2943]
[New LWP 2900]
[New LWP 2944]
[New LWP 2945]
[New LWP 2954]
#0  0xf75c73a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 19:52:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 3843]
[New LWP 3844]
[New LWP 3847]
[New LWP 3846]
[New LWP 3850]
[New LWP 3849]
[New LWP 3851]
[New LWP 3855]
[New LWP 3852]
[New LWP 3860]
[New LWP 3859]
[New LWP 3872]
[New LWP 3863]
[New LWP 3862]
[New LWP 3861]
[New LWP 3853]
#0  0xf76913a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:07:23 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4357]
[New LWP 4358]
[New LWP 4361]
[New LWP 4360]
[New LWP 4364]
[New LWP 4363]
[New LWP 4374]
[New LWP 4365]
[New LWP 4366]
[New LWP 4367]
[New LWP 4369]
[New LWP 4373]
[New LWP 4379]
[New LWP 4375]
[New LWP 4376]
#0  0xf760f3a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:13:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4553]
[New LWP 4554]
[New LWP 4557]
[New LWP 4559]
[New LWP 4556]
[New LWP 4560]
[New LWP 4561]
[New LWP 4571]
[New LWP 4562]
[New LWP 4570]
[New LWP 4563]
[New LWP 4569]
[New LWP 4565]
[New LWP 4572]
[New LWP 4573]
#0  0xf75c53a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:37:34 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4795]
[New LWP 4796]
[New LWP 4805]
[New LWP 4811]
[New LWP 4812]
[New LWP 4804]
[New LWP 4813]
[New LWP 4802]
[New LWP 4824]
[New LWP 4801]
[New LWP 4799]
[New LWP 4798]
[New LWP 4815]
[New LWP 4814]
[New LWP 4807]
[New LWP 4803]
#0  0xf76b33a7 in ?? ()
End of Source crash report
----------------------------------------------

Last edited by Lost_lgz; 05-22-2018 at 14:42.
Lost_lgz is offline
Send a message via Yahoo to Lost_lgz Send a message via Skype™ to Lost_lgz
gubka
Veteran Member
Join Date: Jan 2012
Location: Russia
Old 06-03-2018 , 15:58   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #378

Quote:
Originally Posted by Lost_lgz View Post
crash server 22/05/2018

Code:
Client "Nixozzz" connected (37.219.236.110:3609).
Client "Nexon" connected (77.115.37.250:27005).
PutClientInServer: no info_player_start on level
PreMinidumpCallback: updating dump comment
crash_20180522182125_1.dmp[3833]: Uploading dump (out-of-process)
/tmp/dumps/crash_20180522182125_1.dmp
Segmentation fault (core dumped)
BFD: Warning: /root/CSGO/csgo-server/core is truncated: expected core file size >= 400580608, found: 1024000.
Cannot access memory at address 0xf770d928
Cannot access memory at address 0xf770d924
Python Exception <class 'gdb.MemoryError'> Cannot access memory at address 0xffedf580:
debug.cmds:1: Error in sourced command file:
Cannot access memory at address 0xffedf580
email debug.log to [email protected]
Tue May 22 19:24:34 CEST 2018: Server restart in 10 seconds
crash_20180522182125_1.dmp[3833]: Finished uploading minidump (out-of-process): success = yes
crash_20180522182125_1.dmp[3833]: response: Discarded=1
crash_20180522182125_1.dmp[3833]: file ''/tmp/dumps/crash_20180522182125_1.dmp'', upload yes: ''Discarded=1''
LD_LIBRARY_PATH=/root/CSGO/csgo-server/bin:/root/CSGO/csgo-server:/root/CSGO/csgo-server/bin:
#
#Console initialized.
Setting breakpad minidump AppID = 740
#Using breakpad minidump system 740/13636.674.DC
Using breakpad crash handler
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Code:
Dropped konradzik54321 hellcase.com from server: Disconnect
PutClientInServer: no info_player_start on level
PutClientInServer: no info_player_start on level
Client "7xenia" connected (41.227.119.23:27005).
Client "houss3m" connected (197.19.224.83:27005).
PreMinidumpCallback: updating dump comment
crash_20180522192446_1.dmp[4160]: Uploading dump (out-of-process)
/tmp/dumps/crash_20180522192446_1.dmp
Segmentation fault (core dumped)
BFD: Warning: /root/CSGO/csgo-server/core is truncated: expected core file size >= 386736128, found: 1024000.
Cannot access memory at address 0xf77d7928
Cannot access memory at address 0xf77d7924
Python Exception <class 'gdb.MemoryError'> Cannot access memory at address 0xffbf70b0:
debug.cmds:1: Error in sourced command file:
Cannot access memory at address 0xffbf70b0
email debug.log to [email protected]
Tue May 22 19:52:32 CEST 2018: Server restart in 10 seconds
crash_20180522192446_1.dmp[4160]: Finished uploading minidump (out-of-process): success = yes
crash_20180522192446_1.dmp[4160]: response: CrashID=bp-9739e76f-ce9c-4302-a60e-738fa2180522
crash_20180522192446_1.dmp[4160]: file ''/tmp/dumps/crash_20180522192446_1.dmp'', upload yes: ''CrashID=bp-9739e76f-ce9c-4302-a60e-738fa2180522''
LD_LIBRARY_PATH=/root/CSGO/csgo-server/bin:/root/CSGO/csgo-server:/root/CSGO/csgo-server/bin:
#
#Console initialized.
Setting breakpad minidump AppID = 740
#Using breakpad minidump system 740/13636.674.DC
Using breakpad crash handler
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Client "Nixozzz" connected (37.219.236.110609).
PutClientInServer: no info_player_start on level
Client "ŁØらT" connected (78.29.225.141:27005).
PutClientInServer: no info_player_start on level
PutClientInServer: no info_player_start on level

plugins list:
Code:
   01 "zbm3_addon_escape.smx"
  02 "autozspawn.smx"
  03 "zbm3_hclasses_classic.smx"
  04 "Chat Processor - Simple Chat Processor Wrapper" (1.0.0) by Keith Warren (Drixevel)
  05 "Client Preferences" (1.8.0.6044) by AlliedModders LLC
  06 "Basic Commands" (1.8.0.6044) by AlliedModders LLC
  07 "zbm3_core.smx"
  08 "zbm3_zclasses_normal_m_01.smx"
  09 "Test Messages" (1.0.0) by Keith Warren (Shaders Allen)
  10 "zbm3_hclasses_strong.smx"
  11 "zbm3_menu_unstuck.smx"
  12 "zbm3_addon_autorespawn.smx"
  13 "zbm3_zclasses_normal_m_09.smx"
  14 "Basic Chat" (1.8.0.6044) by AlliedModders LLC
  15 "Chat-Processor" (2.1.4) by Keith Warren (Shaders Allen)
  16 "zbm3_menu_class.smx"
  17 "Anti-Flood" (1.8.0.6044) by AlliedModders LLC
  18 "zbm3_hclasses_sas.smx"
  19 "zbm3_hclasses_sass.smx"
  20 "zbm3_hclasses_ctt.smx"
  21 "zbm3_hclasses_lincoln.smx"
  22 "Player Commands" (1.8.0.6044) by AlliedModders LLC
  23 "zbm3_hclasses_terr.smx"
  24 "zbm3_hclasses_karachenko.smx"
  25 "zbm3_extraitem_antidot.smx"
  26 "zbm3_hclasses_leet.smx"
  27 "zbm3_hclasses_emma.smx"
  28 "zbm3_hclasses_fast.smx"
  29 "zbm3_hclasses_707.smx"
  30 "Fun Votes" (1.8.0.6044) by AlliedModders LLC
  31 "Basic Info Triggers" (1.8.0.6044) by AlliedModders LLC
  32 "zbm3_zclasses_mutation_light.smx"
  33 "zbm3_extraitem_frezze.smx"
  34 "Basic Votes" (1.8.0.6044) by AlliedModders LLC
  35 "Sound Commands" (1.8.0.6044) by AlliedModders LLC
  36 "[Source 2013] Custom Chat Colors" (3.1.0 CP) by Dr. McKay, Fixed up by Keith Warren (Drixevel)
  37 "zbm3_hclasses_gign.smx"
  38 "zbm3_zclasses_normal_m_10.smx"
  39 "zbm3_zclasses_mutation_heavy.smx"
  40 "zbm3_hclasses_ct.smx"
  41 "zbm3_zclasses_agirl.smx"
  42 "Basic Ban Commands" (1.8.0.6044) by AlliedModders LLC
  43 "zbm3_hclasses_mila.smx"
  44 "zbm3_extraitem_helathshot.smx"
  45 "zbm3_extraitem_armor.smx"
  46 "zbm3_zclasses_fast.smx"
  47 "zbm3_extraitem_tacgrenade.smx"
  48 "Fun Commands" (1.8.0.6044) by AlliedModders LLC
  49 "zbm3_addon_damagebox.smx"
  50 "zbm3_extraitem_flare.smx"
  51 "zbm3_zclasses_normal_f_05.smx"
  52 "Nextmap" (1.8.0.6044) by AlliedModders LLC
  53 "Reserved Slots" (1.8.0.6044) by AlliedModders LLC
  54 "zbm3_hclasses_arctic.smx"
  55 "zbm3_extraitem_incgrenade.smx"
  56 "zbm3_extraitem_molotov.smx"
  57 "zbm3_zclasses_normal_m_08.smx"
  58 "zbm3_zclasses_zombie_range.smx"
  59 "zbm3_hclasses_t.smx"
  60 "zbm3_menu_shop.smx"
  61 "zbm3_zclasses_tank.smx"
  62 "Admin File Reader" (1.8.0.6044) by AlliedModders LLC
  63 "zbm3_hclasses_black.smx"
  64 "zbm3_addon_ammunition.smx"
  65 "zbm3_hclasses_tank.smx"
  66 "hextags" (1.31) by Hexah
  67 "zbm3_hclasses_choi.smx"
  68 "zbm3_addon_database.smx"
  69 "zbm3_extraitem_napalm.smx"
  70 "Basic Comm Control" (1.8.0.6044) by AlliedModders LLC
  71 "zbm3_zclasses_normal_f_01.smx"
  72 "zbm3_hclasses_lisa.smx"
  73 "Admin Help" (1.8.0.6044) by AlliedModders LLC
  74 "zbm3_zclasses_zpsyh.smx"
  75 "zbm3_zclasses_normal_m_02.smx"
  76 "Admin Menu" (1.8.0.6044) by AlliedModders LLC
  77 "zbm3_menu_admin.smx"
  78 "zbm3_hclasses_carrie.smx"
meta list:
Code:
   [01] SourceMod (1.8.0.6044) by AlliedModders LLC
  [02] Zombie Escape Extension (1.0.0.0) by Copyright (C) 2015-2016 Nikita Ushakov (Ireland, Dublin)
  [03] CS Tools (1.8.0.6044) by AlliedModders LLC
  [04] SDK Tools (1.8.0.6044) by AlliedModders LLC
  [05] SDK Hooks (1.8.0.6044) by AlliedModders LLC
start serv:

Code:
./srcds_run -console -game csgo -usercon +ip x.x.x.x +net_public_adr x.x.x.x -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug
game console:
Code:
Failed, using default cubemap 'engine/defaultcubemap'
SignalXWriteOpportunity(3)
No pure server whitelist. sv_pure = 0
ConVarRef snd_disable_legacy_audio_cache doesn't point to an existing ConVar
ŁØらT connected.
ConVarRef csm_force_enable_displacements doesn't point to an existing ConVar
Unknown command: zhumanclassmenu
Communications with routing cluster 'tsnt' established.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.
QIIST connected.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.
OGS PK VIOLATION: Dropping round data for round 0 session 1785604237579 because we've already submitted it.

Server connection timed out.
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)
Error getting avatar image: playerID(79970624), iIndex(65535)

dump.log
Code:
----------------------------------------------
CRASH: Tue May 22 01:08:16 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25762]
[New LWP 25765]
[New LWP 25766]
[New LWP 25769]
[New LWP 25778]
[New LWP 25779]
[New LWP 25780]
[New LWP 25781]
[New LWP 25782]
[New LWP 25763]
[New LWP 25774]
[New LWP 25772]
[New LWP 25771]
[New LWP 25770]
[New LWP 25768]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:09:15 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25803]
[New LWP 25806]
[New LWP 25809]
[New LWP 25812]
[New LWP 25814]
[New LWP 25817]
[New LWP 25821]
[New LWP 25822]
[New LWP 25823]
[New LWP 25824]
[New LWP 25825]
[New LWP 25807]
[New LWP 25804]
[New LWP 25813]
[New LWP 25815]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:10:04 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25852]
[New LWP 25853]
[New LWP 25858]
[New LWP 25868]
[New LWP 25856]
[New LWP 25855]
[New LWP 25869]
[New LWP 25861]
[New LWP 25870]
[New LWP 25860]
[New LWP 25859]
[New LWP 25871]
[New LWP 25864]
[New LWP 25862]
[New LWP 25872]
#0  0xe9bcd9b2 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:10:23 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25887]
[New LWP 25895]
[New LWP 25888]
[New LWP 25890]
[New LWP 25891]
[New LWP 25893]
[New LWP 25894]
[New LWP 25896]
[New LWP 25897]
[New LWP 25899]
[New LWP 25903]
[New LWP 25904]
[New LWP 25905]
[New LWP 25906]
[New LWP 25907]
#0  0xf5f4df22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 01:11:09 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 25920]
[New LWP 25921]
[New LWP 25923]
[New LWP 25926]
[New LWP 25969]
[New LWP 25924]
[New LWP 25952]
[New LWP 25953]
[New LWP 25958]
[New LWP 25961]
[New LWP 25965]
[New LWP 25966]
[New LWP 25967]
[New LWP 25968]
[New LWP 25959]
#0  0xf5fbdf22 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 19:24:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 2894]
[New LWP 2895]
[New LWP 2898]
[New LWP 2897]
[New LWP 2901]
[New LWP 2902]
[New LWP 2932]
[New LWP 2933]
[New LWP 2935]
[New LWP 2941]
[New LWP 2942]
[New LWP 2943]
[New LWP 2900]
[New LWP 2944]
[New LWP 2945]
[New LWP 2954]
#0  0xf75c73a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 19:52:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 3843]
[New LWP 3844]
[New LWP 3847]
[New LWP 3846]
[New LWP 3850]
[New LWP 3849]
[New LWP 3851]
[New LWP 3855]
[New LWP 3852]
[New LWP 3860]
[New LWP 3859]
[New LWP 3872]
[New LWP 3863]
[New LWP 3862]
[New LWP 3861]
[New LWP 3853]
#0  0xf76913a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:07:23 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4357]
[New LWP 4358]
[New LWP 4361]
[New LWP 4360]
[New LWP 4364]
[New LWP 4363]
[New LWP 4374]
[New LWP 4365]
[New LWP 4366]
[New LWP 4367]
[New LWP 4369]
[New LWP 4373]
[New LWP 4379]
[New LWP 4375]
[New LWP 4376]
#0  0xf760f3a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:13:32 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4553]
[New LWP 4554]
[New LWP 4557]
[New LWP 4559]
[New LWP 4556]
[New LWP 4560]
[New LWP 4561]
[New LWP 4571]
[New LWP 4562]
[New LWP 4570]
[New LWP 4563]
[New LWP 4569]
[New LWP 4565]
[New LWP 4572]
[New LWP 4573]
#0  0xf75c53a7 in ?? ()
End of Source crash report
----------------------------------------------
----------------------------------------------
CRASH: Tue May 22 20:37:34 CEST 2018
Start Line: ./srcds_linux -console -game csgo -usercon +ip 173.249.14.167 +net_public_adr 173.249.14.167 -port 27015 +clientport 27005 +game_type 0 +game_mode 0 +mapgroup mg_active +map ze_alien_mountain_escape_ffvii_v5 -maxplayers_override 34 -tickrate 128 +exec server.cfg -debug 
[New LWP 4795]
[New LWP 4796]
[New LWP 4805]
[New LWP 4811]
[New LWP 4812]
[New LWP 4804]
[New LWP 4813]
[New LWP 4802]
[New LWP 4824]
[New LWP 4801]
[New LWP 4799]
[New LWP 4798]
[New LWP 4815]
[New LWP 4814]
[New LWP 4807]
[New LWP 4803]
#0  0xf76b33a7 in ?? ()
End of Source crash report
----------------------------------------------
Probably you need compile the ext ze with last sourcemod ver
__________________
gubka is offline
Send a message via ICQ to gubka
Accelerator
Senior Member
Join Date: Dec 2010
Location: Russia
Old 06-04-2018 , 10:50   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #379

Sometimes the newly-joined players will spawn under the map. I think happens it makes if the player did not select a team when entering the server.

Unfortunately, there is no source code for zbm3_addon_autorespawn, but through the lysis can see the following:
Code:
public void:OnClientPostAdminCheck(clientIndex)
{
	if (IsFakeClient(clientIndex))
	{
		return void:0;
	}
	GetClientAuthId(clientIndex, AuthIdType:1, SteamID[clientIndex], 66, true);
	new i;
	while (i < 66)
	{
		if (StrEqual(SteamID[clientIndex], DataSteamID[i], true))
		{
			return void:0;
		}
		i++;
	}
	CreateTimer(10.0, EventAutoRespawn, clientIndex, 2);
	return void:0;
}

public Action:EventAutoRespawn(Handle:hTimer, any:clientIndex)
{
	if (!IsPlayerExist(clientIndex, false))
	{
		return Action:4;
	}
	if (!ZP_GetRoundState(ZPServerRound:1))
	{
		new CMode = ZP_GetRoundState(ZPServerRound:4);
		switch (CMode)
		{
			case 4, 5:
			{
			}
			default:
			{
				if (!IsPlayerAlive(clientIndex))
				{
					ZP_ForceClientRespawn(clientIndex);
				}
			}
		}
	}
	return Action:4;
}
I think it's better to create a timer EventAutoRespawn in the event player_team.
__________________

Last edited by Accelerator; 06-04-2018 at 10:51.
Accelerator is online now
gubka
Veteran Member
Join Date: Jan 2012
Location: Russia
Old 06-04-2018 , 19:08   Re: [CS:GO] Release: Zombie Plague 7.8fix2
Reply With Quote #380

Quote:
Originally Posted by Accelerator74 View Post
Sometimes the newly-joined players will spawn under the map. I think happens it makes if the player did not select a team when entering the server.

Unfortunately, there is no source code for zbm3_addon_autorespawn, but through the lysis can see the following:
Code:
public void:OnClientPostAdminCheck(clientIndex)
{
	if (IsFakeClient(clientIndex))
	{
		return void:0;
	}
	GetClientAuthId(clientIndex, AuthIdType:1, SteamID[clientIndex], 66, true);
	new i;
	while (i < 66)
	{
		if (StrEqual(SteamID[clientIndex], DataSteamID[i], true))
		{
			return void:0;
		}
		i++;
	}
	CreateTimer(10.0, EventAutoRespawn, clientIndex, 2);
	return void:0;
}

public Action:EventAutoRespawn(Handle:hTimer, any:clientIndex)
{
	if (!IsPlayerExist(clientIndex, false))
	{
		return Action:4;
	}
	if (!ZP_GetRoundState(ZPServerRound:1))
	{
		new CMode = ZP_GetRoundState(ZPServerRound:4);
		switch (CMode)
		{
			case 4, 5:
			{
			}
			default:
			{
				if (!IsPlayerAlive(clientIndex))
				{
					ZP_ForceClientRespawn(clientIndex);
				}
			}
		}
	}
	return Action:4;
}
I think it's better to create a timer EventAutoRespawn in the event player_team.
It should be removed, probably i forget to remove it from plugins folder, in next version i already remove it from plugin folder.

NEXT UPDATE 7.9
Which things are done

PHP Code:
Fix with death fake events
Fix with change team for spectators 
Added saving of selected human and zombie classes in the sql database
Added free weapon menu on the spawn (Like in classic ZP 4.3), you can disable it in the plugin of the weapons shop.
Fix flare grenade.
Psyh zombie class have a scream skill (Like shaman in zp 4.3)
Girl zombie class have a bomb blast skill (Like deimos in zp 4.3)
NormalM01 zombie class have a smoke stack skill 
Which things i plan to start and finish soon, you also can suggest ideas for classes skills
PHP Code:
# Cvars for setting selection of zclass and hclass only for VIPs. Normal players selected class by random, like bots.
# TESLA CLASS (Electricty skill, like scream skill but dont deal damage, only make the confusion for the humans in the radius)
# TRAPER CLASS (Like fat skill (traps for humans) in cso)
# BLINDER CLASS (Like fat skill (black screen for attacker) in cso)
# HEALER CLASS (Like healer in cso)
# WITCH CLASS (Like witch in zp cso)
# ICER CLASS (Skill place ice wall where you can stand for and wall explose after)
# WATER CLASS (Skill spit water around him) Like a classic class without any special skill.
# Breaked ice effect for removing freeze.
# Zombie bombs (Like infect, jump) and unique models for each class (grenades with unique hands)
# Possibility to set the zombie grenade model (v_ & [I](possibly w_)[/I]) in the class addon 
__________________
gubka is offline
Send a message via ICQ to gubka
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:31.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode