Raised This Month: $ Target: $400
 0% 

[CSPROMOD] Basic HP Left Modification


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
a1uqfk47
Member
Join Date: Sep 2005
Old 02-25-2010 , 20:51   [CSPROMOD] Basic HP Left Modification
Reply With Quote #1

Hey,

I am testing out the above mentioned plugin (http://forums.alliedmods.net/showthread.php?t=63759) for a simple damage report. This plugin works almost perfectly for CSPromod except for the fact that the hp left that it reports back to you is some arbitrary number (and as well that number is not always a positive number - ie: -123123123). Here's a screenshot of what I mean:



As you can see its obviously way off. If possible, could someone possibly look at the code posted below and take a look to see what would need to be change for this to be shown properly in CSPromod, that would be awesome and greatly appreciated! Thanks.

Code:
#include <sourcemod>

//0=attacker name, 1=attacker weapon
new String:deathInfo[MAXPLAYERS+1][2][32];
new hpleft[MAXPLAYERS+1];
new distances[MAXPLAYERS+1];
new bool:headshots[MAXPLAYERS+1];
new Handle:weaponNames;

#define PLUGIN_VERSION "1.2.1"

public Plugin:myinfo = {
	name = "HP Left",
	author = "InterWave Studios team",
	description = "Shows how many hp an attacker has left",
	version = PLUGIN_VERSION,
	url = "http://www.interwavestudios.com/"
};

public OnPluginStart()
{
	HookEvent("player_death", playerDeath)
	CreateConVar("sm_hpl_version", PLUGIN_VERSION, "HP left version", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY)
	RegConsoleCmd("say", printInfoChat);
	RegConsoleCmd("say_team", printInfoChat);
	LoadTranslations("hp_left.phrases");
	weaponNames = CreateKeyValues("Weapons");
}

public Action:printInfoChat(client, args){
	//Make sure it's not console
	if(client == 0){
		return Plugin_Continue
	}
	
	//Get the user's command
	new String:user_command[192];
	GetCmdArgString(user_command, 192);
	new start_index = 0
	new command_length = strlen(user_command);
	if (command_length > 0) {
		//Get rid of quotes
		if (user_command[0] == 34)	{
			start_index = 1;
			if (user_command[command_length - 1] == 34)	{
				user_command[command_length - 1] = 0;
			}
		}
		
		if (user_command[start_index] == 47)	{
			start_index++;
		}
	}
	
	if(strcmp(user_command[start_index],"hp",false)==0 || strcmp(user_command[start_index],"/hp",false)==0){
		//Make sure they've died already
		if(distances[client] == 0){
			PrintToChat(client,"%t", "Notdied")
		}else{
			printInfo(client)
		}
	}
	
	return Plugin_Continue
}

public printInfo(client){
	if(headshots[client]){	
		PrintToChat(client,"%t", "Killedhs", 3,deathInfo[client][0],1,deathInfo[client][1],hpleft[client])
	}else{
		PrintToChat(client,"%t", "Killed", 3,deathInfo[client][0],1,deathInfo[client][1],hpleft[client])
	}
}


public Action:playerDeath(Handle:event, const String:name[], bool:dontBroadcast){
	new victim = GetClientOfUserId(GetEventInt(event, "userid"))
	new attacker = GetClientOfUserId(GetEventInt(event, "attacker"))
	
	//Suicide of some form, not paying attention
	if(attacker == victim || attacker == 0){
		return Plugin_Continue
	}
		
	new String:attackerName[32]
	GetClientName(attacker,attackerName,32)
	new String:weapon[32]
	GetEventString(event, "weapon", weapon, 32)
	
	if(strlen(weapon) == 0)
		return Plugin_Continue

	KvGetString(weaponNames, weapon, weapon, sizeof(weapon), weapon);
	ReplaceString(weapon, 32, "WEAPON_", "")

	//Store the info in the arrays
	strcopy(deathInfo[victim][0],sizeof(deathInfo[][]),attackerName)
	strcopy(deathInfo[victim][1],sizeof(deathInfo[][]),weapon)
	if(attacker != 0){
		if(IsClientConnected(attacker)) {
			hpleft[victim] = GetClientHealth(attacker)	
		}
	}
	printInfo(victim)
	
	return Plugin_Continue
}

public OnMapStart() {
	decl String:sPath[PLATFORM_MAX_PATH];
	BuildPath(Path_SM, sPath, sizeof(sPath), "configs/hp_left_weapons.txt");
	FileToKeyValues(weaponNames, sPath);
}
__________________
[Methods of Destruction] CSPromod Beta 1.04 Server

Last edited by a1uqfk47; 02-25-2010 at 21:00.
a1uqfk47 is offline
Kevin_b_er
SourceMod Donor
Join Date: Feb 2009
Old 02-25-2010 , 21:58   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #2

Can you check addons/sourcemod/logs for an error log and report back any errors?
Kevin_b_er is offline
a1uqfk47
Member
Join Date: Sep 2005
Old 02-25-2010 , 22:15   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #3

There isnt any sub directory or file labelled logs inside the sourcemod folder but im assuming that it didn't log any errors, or if the logs being logged inside game root folder under logs (ie: cspromod/logs) are the ones you mean i checked the most recent completed log but no mention of any errors either.

Code:
L 02/25/2010 - 22:26:54: Loading map "csp_nuke"
L 02/25/2010 - 22:26:54: server cvars start
L 02/25/2010 - 22:26:54: "sm_hpl_version" = "1.1"
L 02/25/2010 - 22:26:54: "extra_cash_amount" = "16000"
L 02/25/2010 - 22:26:54: "extra_cash_on" = "1"
L 02/25/2010 - 22:26:54: "sm_advertisements_version" = "0.5.5"
L 02/25/2010 - 22:26:54: "sm_stats_version" = "1.0.11"
L 02/25/2010 - 22:26:54: "sm_stats_displaymode" = "0"
L 02/25/2010 - 22:26:54: "sm_stats_startpoints" = "1000"
L 02/25/2010 - 22:26:54: "sm_stats_enabled" = "1"
L 02/25/2010 - 22:26:54: "sourcemod_version" = "1.3.1"
L 02/25/2010 - 22:26:54: "sm_nextmap" = "csp_nuke"
L 02/25/2010 - 22:26:54: "metamod_version" = "1.8.0V"
L 02/25/2010 - 22:26:54: "mp_c4timer" = "35"
L 02/25/2010 - 22:26:54: "mp_bomb_dlight" = "0"
L 02/25/2010 - 22:26:54: "weapon_wmscale" = "1"
L 02/25/2010 - 22:26:54: "mp_buytime" = "30"
L 02/25/2010 - 22:26:54: "mp_freezetime" = "5"
L 02/25/2010 - 22:26:54: "mp_roundtime" = "120"
L 02/25/2010 - 22:26:54: "no_thing" = "1"
L 02/25/2010 - 22:26:54: "mp_spawntime" = "10"
L 02/25/2010 - 22:26:54: "mp_maxrounds" = "0"
L 02/25/2010 - 22:26:54: "mp_startmoney" = "16000"
L 02/25/2010 - 22:26:54: "mp_matchrounds" = "15"
L 02/25/2010 - 22:26:54: "sv_alltalk" = "1"
L 02/25/2010 - 22:26:54: "mp_timelimit" = "30"
L 02/25/2010 - 22:26:54: "sv_gravity" = "800"
L 02/25/2010 - 22:26:54: "sv_stopspeed" = "75"
L 02/25/2010 - 22:26:54: "sv_noclipaccelerate" = "5"
L 02/25/2010 - 22:26:54: "sv_noclipspeed" = "5"
L 02/25/2010 - 22:26:54: "sv_specaccelerate" = "5"
L 02/25/2010 - 22:26:54: "sv_specspeed" = "3"
L 02/25/2010 - 22:26:54: "sv_specnoclip" = "0"
L 02/25/2010 - 22:26:54: "sv_maxspeed" = "320"
L 02/25/2010 - 22:26:54: "sv_accelerate" = "6"
L 02/25/2010 - 22:26:54: "sv_airaccelerate" = "12"
L 02/25/2010 - 22:26:54: "sv_wateraccelerate" = "10"
L 02/25/2010 - 22:26:54: "sv_waterfriction" = "1"
L 02/25/2010 - 22:26:54: "sv_footsteps" = "1"
L 02/25/2010 - 22:26:54: "sv_rollspeed" = "200"
L 02/25/2010 - 22:26:54: "sv_rollangle" = "0"
L 02/25/2010 - 22:26:54: "sv_friction" = "3.6"
L 02/25/2010 - 22:26:54: "sv_edgefriction" = "2"
L 02/25/2010 - 22:26:54: "sv_bounce" = "0"
L 02/25/2010 - 22:26:54: "sv_stepsize" = "18"
L 02/25/2010 - 22:26:54: "r_VehicleViewDampen" = "1"
L 02/25/2010 - 22:26:54: "r_JeepViewDampenFreq" = "7.0"
L 02/25/2010 - 22:26:54: "r_JeepViewDampenDamp" = "1.0"
L 02/25/2010 - 22:26:54: "r_JeepViewZHeight" = "10.0"
L 02/25/2010 - 22:26:54: "r_AirboatViewDampenFreq" = "7.0"
L 02/25/2010 - 22:26:54: "r_AirboatViewDampenDamp" = "1.0"
L 02/25/2010 - 22:26:54: "r_AirboatViewZHeight" = "0.0"
L 02/25/2010 - 22:26:54: "mp_friendlyfire" = "1"
L 02/25/2010 - 22:26:54: "decalfrequency" = "60"
L 02/25/2010 - 22:26:54: "mp_teamplay" = "0"
L 02/25/2010 - 22:26:54: "mp_fraglimit" = "0"
L 02/25/2010 - 22:26:54: "mp_falldamage" = "1"
L 02/25/2010 - 22:26:54: "mp_weaponstay" = "0"
L 02/25/2010 - 22:26:54: "mp_forcerespawn" = "1"
L 02/25/2010 - 22:26:54: "mp_footsteps" = "1"
L 02/25/2010 - 22:26:54: "mp_flashlight" = "1"
L 02/25/2010 - 22:26:54: "mp_autocrosshair" = "0"
L 02/25/2010 - 22:26:54: "mp_allowNPCs" = "1"
L 02/25/2010 - 22:26:54: "sv_cheats" = "0"
L 02/25/2010 - 22:26:54: "sv_pausable" = "0"
L 02/25/2010 - 22:26:54: "sv_contact" = ""
L 02/25/2010 - 22:26:54: "sv_voiceenable" = "1"
L 02/25/2010 - 22:26:54: "deathmatch" = "1"
L 02/25/2010 - 22:26:54: "coop" = "0"
L 02/25/2010 - 22:26:54: "tv_password" = ""
L 02/25/2010 - 22:26:54: "tv_relaypassword" = ""
L 02/25/2010 - 22:26:54: "sv_password" = ""
L 02/25/2010 - 22:26:54: server cvars end
L 02/25/2010 - 22:26:57: Started map "csp_nuke" (CRC "104272580")
L 02/25/2010 - 22:26:58: server_cvar: "sv_password" "***PROTECTED***"
L 02/25/2010 - 22:26:58: Log file closed
__________________
[Methods of Destruction] CSPromod Beta 1.04 Server

Last edited by a1uqfk47; 02-25-2010 at 22:56.
a1uqfk47 is offline
Kevin_b_er
SourceMod Donor
Join Date: Feb 2009
Old 02-26-2010 , 00:30   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #4

No sorry not talking about [moddir]/logs.

Check addons/sourcemod/configs/core.cfg and make sure the first major entry, "Logging", is set to "on".
Kevin_b_er is offline
stephane50
Senior Member
Join Date: Jan 2009
Old 02-26-2010 , 03:15   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #5

not it works not cspromod it is a beta mod we must not forget
stephane50 is offline
a1uqfk47
Member
Join Date: Sep 2005
Old 02-26-2010 , 08:28   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #6

The game is still in beta yes but much of its functionality is still there. But thats what I am trying to see if the specific function needed for this plugin is there because i beleive its different or just absent. As for my core.cfg I forgot to post that above because I checked that prior and forgot to post that as well to minimize number of posts until a possible resolution and the logging is sure on, its on by default. I do know that the event/function "player_hurt" is not yet in cspromod but I do know of someone who has made a seperate damage plugin themseleves and shows the damage done at the end of the round but will not release it for now. Im not sure if that has anything to do with it?
__________________
[Methods of Destruction] CSPromod Beta 1.04 Server

Last edited by a1uqfk47; 02-26-2010 at 12:37.
a1uqfk47 is offline
Kevin_b_er
SourceMod Donor
Join Date: Feb 2009
Old 02-27-2010 , 02:07   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #7

I believe you have a greater problem if you claim there is no logs directory in sourcemod.

The zip package for sourcemod contains an empty logs directory, so what happened to it?

There should be something logged by sourcemod if it doesn't involve this plugin!
Kevin_b_er is offline
fubister
New Member
Join Date: Feb 2011
Old 02-16-2011 , 16:00   Re: [CSPROMOD] Basic HP Left Modification
Reply With Quote #8

Hi i see it's old topic, but I think there is no point of starting new one, anyways, I have exactly the same problem as described above, works everything except hp left, and also Im trying to run this on CSPromod 1.05 (2007SDK Base - Orangebox)

any solution for me?

Log file:

Code:
L 02/16/2011 - 10:17:47: SourceMod error session started
L 02/16/2011 - 10:17:47: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 10:17:47: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:17:47: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:17:47: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:17:47: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:17:47: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:21:33: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:21:33: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:21:33: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:21:33: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:21:33: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:25:33: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:25:33: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:25:33: [SM]   [0]  Line 801, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:25:33: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:25:33: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:26:30: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:26:30: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:26:30: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:26:30: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:26:30: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:26:59: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:26:59: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:26:59: [SM]   [0]  Line 801, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:26:59: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:26:59: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:28:31: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:28:31: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:28:31: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:28:31: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:28:31: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:30:16: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 10:32:27: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 10:32:42: Error log file session closed.
L 02/16/2011 - 10:35:39: SourceMod error session started
L 02/16/2011 - 10:35:39: Info (map "csp_inferno") (file "errors_20110216.log")
L 02/16/2011 - 10:35:39: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:35:39: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:35:39: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:35:39: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:35:39: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:36:19: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:36:19: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:36:19: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:36:19: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:36:19: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:37:17: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:37:17: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:37:17: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:37:17: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:37:17: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:38:04: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:38:04: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:38:04: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:38:04: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:38:04: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:39:15: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:39:15: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:39:15: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:39:15: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:39:15: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:39:39: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:39:39: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:39:39: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:39:39: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:39:39: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:40:34: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:40:34: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:40:34: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:40:34: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:40:34: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:43:51: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:43:51: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:43:51: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:43:51: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:43:51: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:44:19: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:44:19: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:44:19: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:44:19: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:44:19: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:45:03: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:45:03: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:45:03: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:45:03: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:45:03: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:45:50: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:45:50: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:45:50: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:45:50: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:45:50: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:46:18: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:46:18: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:46:18: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:46:18: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:46:18: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:48:52: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 10:48:57: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:48:57: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:48:57: [SM]   [0]  Line 805, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:48:57: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:48:57: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 10:51:07: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 10:51:25: Error log file session closed.
L 02/16/2011 - 10:53:40: SourceMod error session started
L 02/16/2011 - 10:53:40: Info (map "csp_lite") (file "errors_20110216.log")
L 02/16/2011 - 10:53:40: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 10:53:40: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 10:53:40: [SM]   [0]  Line 801, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::SwitchTeam()
L 02/16/2011 - 10:53:40: [SM]   [1]  Line 709, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::BalanceTeams()
L 02/16/2011 - 10:53:40: [SM]   [2]  Line 552, C:\Users\Evan\source\plugins\team balance\addons\sourcemod\scripting\teambalance.sp::EventRoundStart()
L 02/16/2011 - 11:43:14: SourceMod error session started
L 02/16/2011 - 11:43:14: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 11:43:14: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 11:47:02: SourceMod error session started
L 02/16/2011 - 11:47:02: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 11:47:02: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 11:53:19: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:53:19: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:53:19: [SM]   [0]  Line 805, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:53:19: [SM]   [1]  Line 829, teambalance.sp::CommandTeamSwap()
L 02/16/2011 - 11:53:19: [SM]   [2]  Line 1232, teambalance.sp::TeamManagementMenuHandler()
L 02/16/2011 - 11:53:28: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:53:28: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:53:28: [SM]   [0]  Line 805, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:53:28: [SM]   [1]  Line 1343, teambalance.sp::SwitchPlayerMenuHandler()
L 02/16/2011 - 11:54:01: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:54:01: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:54:01: [SM]   [0]  Line 805, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:54:01: [SM]   [1]  Line 829, teambalance.sp::CommandTeamSwap()
L 02/16/2011 - 11:54:01: [SM]   [2]  Line 1232, teambalance.sp::TeamManagementMenuHandler()
L 02/16/2011 - 11:54:53: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:54:53: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:54:53: [SM]   [0]  Line 805, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:54:53: [SM]   [1]  Line 829, teambalance.sp::CommandTeamSwap()
L 02/16/2011 - 11:54:53: [SM]   [2]  Line 1232, teambalance.sp::TeamManagementMenuHandler()
L 02/16/2011 - 11:55:25: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:55:25: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:55:25: [SM]   [0]  Line 801, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:55:25: [SM]   [1]  Line 1343, teambalance.sp::SwitchPlayerMenuHandler()
L 02/16/2011 - 11:56:09: [SM] Native "SDKCall" reported: Invalid Handle 0 (error 4)
L 02/16/2011 - 11:56:09: [SM] Displaying call stack trace for plugin "teambalance.smx":
L 02/16/2011 - 11:56:09: [SM]   [0]  Line 805, teambalance.sp::SwitchTeam()
L 02/16/2011 - 11:56:09: [SM]   [1]  Line 829, teambalance.sp::CommandTeamSwap()
L 02/16/2011 - 11:56:09: [SM]   [2]  Line 1232, teambalance.sp::TeamManagementMenuHandler()
L 02/16/2011 - 11:56:32: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 11:56:32: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 11:56:32: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 11:56:32: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 11:56:45: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 11:56:45: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 11:56:47: [ultimate-mapchooser.smx] NOMINATIONS: Nomination menu not built, no map groups found in rotation.
L 02/16/2011 - 11:56:52: [ultimate-mapchooser.smx] NOMINATIONS: Nomination menu not built, no map groups found in rotation.
L 02/16/2011 - 11:57:33: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 11:57:33: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 11:57:47: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 11:57:47: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 12:01:57: SourceMod error session started
L 02/16/2011 - 12:01:57: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:01:57: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:02:26: SourceMod error session started
L 02/16/2011 - 12:02:26: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:02:26: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:14:01: SourceMod error session started
L 02/16/2011 - 12:14:01: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:14:01: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:23:18: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 12:24:23: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 12:24:37: Error log file session closed.
L 02/16/2011 - 12:24:37: SourceMod error session started
L 02/16/2011 - 12:24:37: Info (map "csp_inferno") (file "errors_20110216.log")
L 02/16/2011 - 12:24:37: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:38:45: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 12:40:00: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 12:40:18: Error log file session closed.
L 02/16/2011 - 12:40:18: SourceMod error session started
L 02/16/2011 - 12:40:18: Info (map "csp_lite") (file "errors_20110216.log")
L 02/16/2011 - 12:40:18: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:40:58: Error log file session closed.
L 02/16/2011 - 12:40:59: SourceMod error session started
L 02/16/2011 - 12:40:59: Info (map "csp_nuke") (file "errors_20110216.log")
L 02/16/2011 - 12:40:59: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:44:09: SourceMod error session started
L 02/16/2011 - 12:44:09: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:44:09: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:44:19: SourceMod error session started
L 02/16/2011 - 12:44:19: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:44:19: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:44:53: SourceMod error session started
L 02/16/2011 - 12:44:53: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:44:53: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:45:26: SourceMod error session started
L 02/16/2011 - 12:45:26: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:45:26: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:46:23: SourceMod error session started
L 02/16/2011 - 12:46:23: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 12:46:23: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 12:46:58: Error log file session closed.
L 02/16/2011 - 12:46:58: SourceMod error session started
L 02/16/2011 - 12:46:58: Info (map "csp_nuke") (file "errors_20110216.log")
L 02/16/2011 - 12:46:58: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:05:15: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 13:07:31: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 13:07:44: Error log file session closed.
L 02/16/2011 - 13:07:44: SourceMod error session started
L 02/16/2011 - 13:07:44: Info (map "csp_inferno") (file "errors_20110216.log")
L 02/16/2011 - 13:07:44: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:19:48: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 13:20:55: Error log file session closed.
L 02/16/2011 - 13:20:55: SourceMod error session started
L 02/16/2011 - 13:20:55: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 13:20:55: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:29:47: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 13:30:39: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 13:30:58: Error log file session closed.
L 02/16/2011 - 13:30:58: SourceMod error session started
L 02/16/2011 - 13:30:58: Info (map "csp_lite") (file "errors_20110216.log")
L 02/16/2011 - 13:30:58: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:31:58: Error log file session closed.
L 02/16/2011 - 13:31:58: SourceMod error session started
L 02/16/2011 - 13:31:58: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 13:31:58: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:42:55: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 13:43:37: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 13:43:50: Error log file session closed.
L 02/16/2011 - 13:43:50: SourceMod error session started
L 02/16/2011 - 13:43:50: Info (map "csp_nuke") (file "errors_20110216.log")
L 02/16/2011 - 13:43:50: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:46:23: Error log file session closed.
L 02/16/2011 - 13:46:23: SourceMod error session started
L 02/16/2011 - 13:46:23: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 13:46:23: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 13:54:18: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 13:55:31: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 13:55:35: Error log file session closed.
L 02/16/2011 - 13:55:35: SourceMod error session started
L 02/16/2011 - 13:55:35: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 13:55:35: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 14:03:21: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 14:04:11: Error log file session closed.
L 02/16/2011 - 14:04:11: SourceMod error session started
L 02/16/2011 - 14:04:11: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 14:04:11: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 14:11:54: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 14:12:07: Error log file session closed.
L 02/16/2011 - 14:12:07: SourceMod error session started
L 02/16/2011 - 14:12:07: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 14:12:07: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 14:13:04: Error log file session closed.
L 02/16/2011 - 14:13:04: SourceMod error session started
L 02/16/2011 - 14:13:04: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 14:13:04: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 14:29:20: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 15:43:54: Error log file session closed.
L 02/16/2011 - 15:43:54: SourceMod error session started
L 02/16/2011 - 15:43:54: Info (map "csp_train") (file "errors_20110216.log")
L 02/16/2011 - 15:43:54: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 16:03:22: Error log file session closed.
L 02/16/2011 - 16:03:22: SourceMod error session started
L 02/16/2011 - 16:03:22: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 16:03:22: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 16:08:33: Error log file session closed.
L 02/16/2011 - 16:08:33: SourceMod error session started
L 02/16/2011 - 16:08:33: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 16:08:33: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 16:57:09: SourceMod error session started
L 02/16/2011 - 16:57:09: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 16:57:09: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 16:58:01: SourceMod error session started
L 02/16/2011 - 16:58:01: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 16:58:01: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 17:14:33: Error log file session closed.
L 02/16/2011 - 17:14:33: SourceMod error session started
L 02/16/2011 - 17:14:33: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 17:14:33: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 17:22:57: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 17:23:33: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 17:23:35: Error log file session closed.
L 02/16/2011 - 17:23:35: SourceMod error session started
L 02/16/2011 - 17:23:35: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 17:23:35: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 17:30:08: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 17:31:17: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 17:31:20: Error log file session closed.
L 02/16/2011 - 17:31:21: SourceMod error session started
L 02/16/2011 - 17:31:21: Info (map "csp_aim_arena") (file "errors_20110216.log")
L 02/16/2011 - 17:31:21: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 17:31:32: Error log file session closed.
L 02/16/2011 - 17:31:32: SourceMod error session started
L 02/16/2011 - 17:31:32: Info (map "csp_dust2") (file "errors_20110216.log")
L 02/16/2011 - 17:31:32: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
L 02/16/2011 - 17:35:48: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 17:35:48: [ultimate-mapchooser.smx] RTV: Unable to create RTV menu, voting aborted.
L 02/16/2011 - 17:36:23: [ultimate-mapchooser.smx] NOMINATIONS: Nomination menu not built, no map groups found in rotation.
L 02/16/2011 - 17:36:32: [ultimate-mapchooser.smx] NOMINATIONS: Nomination menu not built, no map groups found in rotation.
L 02/16/2011 - 17:42:06: [ultimate-mapchooser.smx] VOTING: No map categories found in rotation. Vote menu was not built.
L 02/16/2011 - 17:42:43: [ultimate-mapchooser.smx] RANDOM MAP: Cannot pick a random map, no available map groups found in rotation.
L 02/16/2011 - 17:42:58: Error log file session closed.
L 02/16/2011 - 17:42:58: SourceMod error session started
L 02/16/2011 - 17:42:58: Info (map "csp_inferno") (file "errors_20110216.log")
L 02/16/2011 - 17:42:58: [SM] Unable to load plugin "autoswapteam.smx": Required extension "cstrike" file("games/game.cstrike.ext") not running
fubister is offline
Reply



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 02:18.


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