Raised This Month: $ Target: $400
 0% 

Solved [FIXED]Deathrun server won't start


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
ZEDD_Intensity
Senior Member
Join Date: Jun 2016
Old 02-24-2017 , 05:08   [FIXED]Deathrun server won't start
Reply With Quote #1

Hey there,

I've got a Deathrun Server. Today, I did a server restart like I do everyday. But, as an exception, after the restart the server didn't get back on. I executed screen -r, didn't work as there were No resumes on.
I rushed to the hlds_run to check some stuff, I made some edits coz My server was not Auto_Restarting. So I'm posting a SMALL part of it here to make sure its all good.
Code:
export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"

init() {
	# Initialises the various variables
	# Set up the defaults
	GAME="valve"
	DEBUG=“”
	RESTART="yes"
	HL=./hlds_linux
	HL_DETECT=1
	TIMEOUT=10 # time to wait after a crash (in seconds)
	CRASH_DEBUG_MSG="email debug.log to [email protected]"
	GDB="gdb" # the gdb binary to run
	DEBUG_LOG="debug.log"
	PID_FILE=""
	STEAM=""
	STEAMERR=""
	SIGINT_ACTION="quit 0" # exit normally on sig int
	NO_TRAP=0
	AUTO_UPDATE=""
	BETA_VERSION=""
	PARAMS=$*

	# Remove any old default pid files
	# Cant do this as they may be still running
	#rm -f hlds.*.pid

	# use the $FORCE environment variable if its set
	if test -n "$FORCE" ; then
		# Note: command line -binary will override this
		HL=$FORCE
		HL_DETECT=0
	fi

	while test $# -gt 0; do
		case "$1" in
		"-game")
			GAME="$2"
			shift ;;
		"-debug")
			DEBUG=“”
			# Ensure that PID_FILE is set
			if test -z "$PID_FILE"; then
				PID_FILE="hlds.$$.pid"
			fi ;;
		“-restart")
			RESTART=“” ;;
		"-pidfile")
			PID_FILE="$2"
			shift ;;
		"-binary")
			HL="$2"
			HL_DETECT=0
			shift ;;
		"-timeout")
			TIMEOUT="$2"
			shift ;;
		"-gdb")
			GDB="$2"
			shift ;;
		"-debuglog")
			DEBUG_LOG="$2"
			shift ;;
		"-autoupdate")
			AUTO_UPDATE="yes"
			STEAM="steamcmd/steamcmd.sh"
			RESTART="yes" ;;
		"-steamerr")
			STEAMERR=1 ;;
		"-ignoresigint")
			SIGINT_ACTION="" ;;
		"-notrap")
			NO_TRAP=1 ;;
		"-beta")
			BETA_VERSION="$2"
			shift ;;
		"-help")
			# quit with syntax
			quit 2
			;;
I rushed to the server.cfg but really didn't notice anything wrong there as well.

Here's my CFG :
Code:
// Use this file to configure your DEDICATED server. 
// This config file is executed on server start.

// disable autoaim
sv_aim 0

// disable clients' ability to pause the server
pausable 0

// default server name. Change to "Bob's Server", etc.
hostname "[censored]"

mp_freezetime "0"

// maximum client movement speed 
sv_maxspeed 320

// 20 minute timelimit
mp_timelimit 20

sv_allowdownload 1
net_maxfilesize 64
sv_allowupload 1
sv_downloadurl "[censored]"


sv_cheats 0

// load ban files
exec listip.cfg
exec banned.cfg

map [MAP]
I DISABLED EVERY Plugin I had in my plugins.ini and tried restarting the server. Didn't work.
I went to my Modules to see if the Modules are flooding the server.
I disabled some modules that won't be used in the Bootup as Follows :
Code:
fun
engine
fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
;hamsandwich
Here is the server logging,
I remember, when the server crashed, I was Replacing Exolent's Advanced bans with AMXBans. I'm not sure if there's an error with Bans in the Log.
anyways, below they are :
Code:
L 02/24/2017 - 03:23:23: Start of error session.
L 02/24/2017 - 03:23:23: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 03:23:23: Invalid CVAR pointer
L 02/24/2017 - 03:23:23: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 03:23:23: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 03:56:31: Start of error session.
L 02/24/2017 - 03:56:31: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 03:56:31: [AMXX] Plugin ("fakefull_original.amxx") is setting itself as failed.
L 02/24/2017 - 03:56:31: [AMXX] Plugin says: Unable to read file "addons/amxmodx/configs/botnames.txt", it is required to load bot names from
L 02/24/2017 - 03:56:31: [AMXX] Displaying debug trace (plugin "fakefull_original.amxx")
L 02/24/2017 - 03:56:31: [AMXX] Run time error 1: forced exit 
L 02/24/2017 - 03:56:31: [AMXX]    [0] 6435.attach::ReadNames (line 466)
L 02/24/2017 - 03:56:31: [AMXX]    [1] 6435.attach::plugin_init (line 166)
L 02/24/2017 - 03:56:31: Invalid CVAR pointer
L 02/24/2017 - 03:56:31: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 03:56:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 03:57:17: Invalid trie handle provided (0)
L 02/24/2017 - 03:57:17: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "TrieSetCell") - debug not enabled!
L 02/24/2017 - 03:57:17: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:03:12: Start of error session.
L 02/24/2017 - 04:03:12: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:03:12: Invalid CVAR pointer
L 02/24/2017 - 04:03:12: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 04:03:12: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:07:27: Start of error session.
L 02/24/2017 - 04:07:27: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:07:27: Invalid CVAR pointer
L 02/24/2017 - 04:07:27: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 04:07:27: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:10:07: Start of error session.
L 02/24/2017 - 04:10:07: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:10:07: Invalid CVAR pointer
L 02/24/2017 - 04:10:07: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 04:10:07: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:11:37: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 04:11:37: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:12:31: Start of error session.
L 02/24/2017 - 04:12:31: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:12:31: Invalid CVAR pointer
L 02/24/2017 - 04:12:31: [AMXX] Run time error 10 (plugin "uq_jumpstats_tops.amxx") (native "get_pcvar_num") - debug not enabled!
L 02/24/2017 - 04:12:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:13:40: Invalid weapon id 0
L 02/24/2017 - 04:13:40: [AMXX] Run time error 10 (plugin "potti.amxx") (native "get_weaponname") - debug not enabled!
L 02/24/2017 - 04:13:40: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:14:03: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 04:14:03: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:20:27: Start of error session.
L 02/24/2017 - 04:20:27: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:20:27: [FUN] Invalid player 2
L 02/24/2017 - 04:20:27: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 04:20:27: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 04:20:27: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 04:20:27: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 04:20:28: [AMXX] Displaying debug trace (plugin "uq_jumpstats.amxx")
L 02/24/2017 - 04:20:28: [AMXX] Run time error 4: index out of bounds 
L 02/24/2017 - 04:20:28: [AMXX]    [0] colorchat.inc::ColorChat (line 74)
L 02/24/2017 - 04:20:28: [AMXX]    [1] uq_jumpstats.sma::Color_Chat_Lang (line 8166)
L 02/24/2017 - 04:20:28: [AMXX]    [2] uq_jumpstats.sma::Color_Chat_Lang (line 8164)
L 02/24/2017 - 04:20:28: [AMXX]    [3] uq_jumpstats.sma::ResetHUD (line 8758)
L 02/24/2017 - 04:22:40: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 04:22:40: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:24:40: Start of error session.
L 02/24/2017 - 04:24:40: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 04:24:40: [FUN] Invalid player 2
L 02/24/2017 - 04:24:40: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 04:24:40: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 04:24:40: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 04:24:40: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 04:24:40: [AMXX] Displaying debug trace (plugin "uq_jumpstats.amxx")
L 02/24/2017 - 04:24:40: [AMXX] Run time error 4: index out of bounds 
L 02/24/2017 - 04:24:40: [AMXX]    [0] colorchat.inc::ColorChat (line 74)
L 02/24/2017 - 04:24:40: [AMXX]    [1] uq_jumpstats.sma::Color_Chat_Lang (line 8166)
L 02/24/2017 - 04:24:40: [AMXX]    [2] uq_jumpstats.sma::Color_Chat_Lang (line 8164)
L 02/24/2017 - 04:24:40: [AMXX]    [3] uq_jumpstats.sma::ResetHUD (line 8758)
L 02/24/2017 - 04:25:12: Invalid weapon id 0
L 02/24/2017 - 04:25:12: [AMXX] Run time error 10 (plugin "potti.amxx") (native "get_weaponname") - debug not enabled!
L 02/24/2017 - 04:25:12: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 04:25:35: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 04:25:35: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 05:12:15: Start of error session.
L 02/24/2017 - 05:12:15: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 05:12:15: [FUN] Invalid player 2
L 02/24/2017 - 05:12:15: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 05:12:15: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 05:12:15: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 05:12:15: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 05:12:15: [AMXX] Displaying debug trace (plugin "uq_jumpstats.amxx")
L 02/24/2017 - 05:12:15: [AMXX] Run time error 4: index out of bounds 
L 02/24/2017 - 05:12:15: [AMXX]    [0] colorchat.inc::ColorChat (line 74)
L 02/24/2017 - 05:12:15: [AMXX]    [1] uq_jumpstats.sma::Color_Chat_Lang (line 8166)
L 02/24/2017 - 05:12:15: [AMXX]    [2] uq_jumpstats.sma::Color_Chat_Lang (line 8164)
L 02/24/2017 - 05:12:15: [AMXX]    [3] uq_jumpstats.sma::ResetHUD (line 8758)
L 02/24/2017 - 05:13:12: Invalid weapon id 0
L 02/24/2017 - 05:13:12: [AMXX] Run time error 10 (plugin "potti.amxx") (native "get_weaponname") - debug not enabled!
L 02/24/2017 - 05:13:12: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 05:48:49: Start of error session.
L 02/24/2017 - 05:48:49: Info (map "deathrun_absolute") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 05:48:49: [MySQL] Invalid handle: 0
L 02/24/2017 - 05:48:49: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 05:48:49: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 06:07:15: Start of error session.
L 02/24/2017 - 06:07:15: Info (map "deathrun_c00l_f_hard") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 06:07:15: [MySQL] Invalid handle: 0
L 02/24/2017 - 06:07:15: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 06:07:15: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 06:25:42: Start of error session.
L 02/24/2017 - 06:25:42: Info (map "deathrun_earthquake_fg") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 06:25:42: [MySQL] Invalid handle: 0
L 02/24/2017 - 06:25:42: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 06:25:42: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 06:44:08: Start of error session.
L 02/24/2017 - 06:44:08: Info (map "deathrun_av2009_recolored-ez") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 06:44:08: [MySQL] Invalid handle: 0
L 02/24/2017 - 06:44:08: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 06:44:08: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 06:45:56: [FUN] Invalid player 2
L 02/24/2017 - 06:45:56: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 06:45:56: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 06:45:56: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 06:45:56: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 06:48:03: Start of error session.
L 02/24/2017 - 06:48:03: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 06:48:03: [MySQL] Invalid handle: 0
L 02/24/2017 - 06:48:03: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 06:48:03: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 06:48:14: [FUN] Invalid player 2
L 02/24/2017 - 06:48:14: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 06:48:14: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 06:48:14: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 06:48:14: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 06:50:24: [FUN] Invalid player 2
L 02/24/2017 - 06:50:24: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 06:50:24: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 06:50:24: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 06:50:24: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 06:51:14: [FUN] Invalid player 3
L 02/24/2017 - 06:51:14: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 06:51:14: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 06:51:14: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 06:51:14: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 07:00:06: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 07:00:06: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:20:51: Start of error session.
L 02/24/2017 - 07:20:51: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 07:20:51: [MySQL] Invalid handle: 0
L 02/24/2017 - 07:20:51: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 07:20:51: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:21:06: [FUN] Invalid player 2
L 02/24/2017 - 07:21:06: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 07:21:06: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 07:21:06: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 07:21:06: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 07:21:06: [AMXX] Displaying debug trace (plugin "uq_jumpstats.amxx")
L 02/24/2017 - 07:21:06: [AMXX] Run time error 4: index out of bounds 
L 02/24/2017 - 07:21:06: [AMXX]    [0] colorchat.inc::ColorChat (line 74)
L 02/24/2017 - 07:21:06: [AMXX]    [1] uq_jumpstats.sma::Color_Chat_Lang (line 8166)
L 02/24/2017 - 07:21:06: [AMXX]    [2] uq_jumpstats.sma::Color_Chat_Lang (line 8164)
L 02/24/2017 - 07:21:06: [AMXX]    [3] uq_jumpstats.sma::ResetHUD (line 8758)
L 02/24/2017 - 07:21:36: Start of error session.
L 02/24/2017 - 07:21:36: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 07:21:36: [MySQL] Invalid handle: 0
L 02/24/2017 - 07:21:36: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 07:21:36: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:21:45: [FUN] Invalid player 2
L 02/24/2017 - 07:21:45: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 07:21:45: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 07:21:45: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 07:21:45: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 07:22:34: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 07:22:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:23:34: Start of error session.
L 02/24/2017 - 07:23:34: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 07:23:34: [MySQL] Invalid handle: 0
L 02/24/2017 - 07:23:34: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 07:23:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:23:48: [FUN] Invalid player 2
L 02/24/2017 - 07:23:48: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 07:23:48: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 07:23:48: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 07:23:48: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 07:23:48: [AMXX] Displaying debug trace (plugin "uq_jumpstats.amxx")
L 02/24/2017 - 07:23:48: [AMXX] Run time error 4: index out of bounds 
L 02/24/2017 - 07:23:48: [AMXX]    [0] colorchat.inc::ColorChat (line 74)
L 02/24/2017 - 07:23:48: [AMXX]    [1] uq_jumpstats.sma::Color_Chat_Lang (line 8166)
L 02/24/2017 - 07:23:48: [AMXX]    [2] uq_jumpstats.sma::Color_Chat_Lang (line 8164)
L 02/24/2017 - 07:23:48: [AMXX]    [3] uq_jumpstats.sma::ResetHUD (line 8758)
L 02/24/2017 - 07:24:12: Start of error session.
L 02/24/2017 - 07:24:12: Info (map "deathrun_c00l_f") (file "addons/amxmodx/logs/error_20170224.log")
L 02/24/2017 - 07:24:12: [MySQL] Invalid handle: 0
L 02/24/2017 - 07:24:12: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_FreeHandle") - debug not enabled!
L 02/24/2017 - 07:24:12: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:24:21: [FUN] Invalid player 2
L 02/24/2017 - 07:24:21: [AMXX] Displaying debug trace (plugin "CustomDRVIP.amxx")
L 02/24/2017 - 07:24:21: [AMXX] Run time error 10: native error (native "set_user_maxspeed")
L 02/24/2017 - 07:24:21: [AMXX]    [0] text1TtSC4.sma::ResetVariables (line 141)
L 02/24/2017 - 07:24:21: [AMXX]    [1] text1TtSC4.sma::fw_HamSpawnPost (line 130)
L 02/24/2017 - 07:24:58: Invalid weapon id 0
L 02/24/2017 - 07:24:58: [AMXX] Run time error 10 (plugin "potti.amxx") (native "get_weaponname") - debug not enabled!
L 02/24/2017 - 07:24:58: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 02/24/2017 - 07:26:05: [AMXX] Run time error 4 (plugin "potti.amxx") - debug not enabled!
L 02/24/2017 - 07:26:05: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
I'm really sorry for such a long post.
But, This server, means a lot to me. I'm coding a ton of custom stuff for this server.
Can anyone please help me with this one?

Thanks a lot,
ZEDD

Last edited by ZEDD_Intensity; 02-25-2017 at 08:21. Reason: Typos
ZEDD_Intensity is offline
 



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 21:01.


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