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

error log admin flatfile


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
dustydevil
Member
Join Date: Feb 2016
Old 12-14-2016 , 07:22   error log admin flatfile
Reply With Quote #1

Right my server has been crashing Lately and All I have in my logs in
Code:
L 12/14/2016 - 12:15:47: [admin-flatfile.smx] Error(s) detected parsing addons\sourcemod\configs\admin_overrides.cfg
L 12/14/2016 - 12:15:47: [admin-flatfile.smx]  (line 77) Section beginning without a matching ending
Code:
Overrides
{
	/**
	 * By default, commands are registered with three pieces of information:
	 * 1)Command Name 		(for example, "csdm_enable")
	 * 2)Command Group Name	(for example, "CSDM")
	 * 3)Command Level		(for example, "changemap")
	 *
	 * You can override the default flags assigned to individual commands or command groups in this way.
	 * To override a group, use the "@" character before the name.  Example:
	 * Examples:
	 *		"@CSDM"			"b"				// Override the CSDM group to 'b' flag
	 * 		"csdm_enable"	"bgi"			// Override the csdm_enable command to 'bgi' flags
	 *
	 * Note that for overrides, order is important.  In the above example, csdm_enable overwrites
	 * any setting that csdm_enable previously had.
	 *
	 * You can make a command completely public by using an empty flag string.
	{  
       	sm_respawn "z"
        sm_evilrocket "z"
        sm_colorize "z"
        sm_vote "z"
	    sm_disco "z"
	    sm_teleport "z"
        sm_tele "b"
        sm_alpha "z"
        sm_fakesay "z"
        sm_invis "z"
        sm_invisplayer "z"
        sm_explode "z"
        sm_autodisco "z"
        sm_selfcolorize "z"
        sm_cash "z"
        sm_nv "z"
        sm_defuser "z"
        sm_knives "z"
        sm_respawn "z"
        sm_setmodel "z"
        sm_disarm "z"
        sm_melee "z"
        sm_bury "z"
        sm_unbury "z"
        sm_hp "z"
        sm_armour "z"
        sm_give "z"
        sm_speed "z" 
        sm_frags "z"
	    sm_deaths "z"
        sm_team "b" 
        sm_teamswap "z"
        sm_spec "b"
        sm_swap "z"
        sm_lswap "z"
        sm_exch "z"
        sm_lexch "z"
        sm_balance "z"
        sm_shuffle "z"
        sm_exec "z"
        sm_fexec "z"
        sm_getloc "z"
        sm_saveloc "z"
        sm_teleport "b"
        sm_blink "z"
        sm_god "z"
        sm_extend "z"
        sm_rr "z"
        sm_shutdown "z"
        sm_showmotd "z"
        sm_url "z"
        sm_getmodel "z"
        sm_drop "z"
        sm_dropslot "z"
        sm_gravity "z"
        sm_reloadadmins "z"
        sm_restrict" "b"
        sm_unrestrict "b"
	sm_chicken "z"
    }
Now I don't see what is Wrong with it
dustydevil is offline
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 12-14-2016 , 07:49   Re: error log admin flatfile
Reply With Quote #2

Quote:
Originally Posted by dustydevil View Post
Code:
L 12/14/2016 - 12:15:47: [admin-flatfile.smx] Error(s) detected parsing addons\sourcemod\configs\admin_overrides.cfg
L 12/14/2016 - 12:15:47: [admin-flatfile.smx]  (line 77) Section beginning without a matching ending
Now I don't see what is Wrong with it
Code:
        sm_dropslot "z"
        sm_gravity "z"
        sm_reloadadmins "z"
        sm_restrict" "b"   <-- here in line 76-77 is a " to much
        sm_unrestrict "b"
	sm_chicken "z"
    }
__________________
coding & free software
shanapu is offline
DJ Tsunami
DJ Post Spammer
Join Date: Feb 2008
Location: The Netherlands
Old 12-14-2016 , 07:56   Re: error log admin flatfile
Reply With Quote #3

Also the { after the comments shouldn't be there, instead you need to close the comments with */
__________________
Advertisements | REST in Pawn - HTTP client for JSON REST APIs
Please do not PM me with questions. Post in the plugin thread.

Last edited by DJ Tsunami; 12-14-2016 at 07:56.
DJ Tsunami is offline
dustydevil
Member
Join Date: Feb 2016
Old 12-14-2016 , 08:12   Re: error log admin flatfile
Reply With Quote #4

so
Code:
Overrides
{
	/**
	 * By default, commands are registered with three pieces of information:
	 * 1)Command Name 		(for example, "csdm_enable")
	 * 2)Command Group Name	(for example, "CSDM")
	 * 3)Command Level		(for example, "changemap")
	 *
	 * You can override the default flags assigned to individual commands or command groups in this way.
	 * To override a group, use the "@" character before the name.  Example:
	 * Examples:
	 *		"@CSDM"			"b"				// Override the CSDM group to 'b' flag
	 * 		"csdm_enable"	"bgi"			// Override the csdm_enable command to 'bgi' flags
	 *
	 * Note that for overrides, order is important.  In the above example, csdm_enable overwrites
	 * any setting that csdm_enable previously had.
	 *
	 * You can make a command completely public by using an empty flag string.
	*/  
       	sm_respawn "z"
        sm_evilrocket "z"
        sm_colorize "z"
        sm_vote "z"
	    sm_disco "z"
	    sm_teleport "z"
        sm_tele "b"
        sm_alpha "z"
        sm_fakesay "z"
        sm_invis "z"
        sm_invisplayer "z"
        sm_explode "z"
        sm_autodisco "z"
        sm_selfcolorize "z"
        sm_cash "z"
        sm_nv "z"
        sm_defuser "z"
        sm_knives "z"
        sm_respawn "z"
        sm_setmodel "z"
        sm_disarm "z"
        sm_melee "z"
        sm_bury "z"
        sm_unbury "z"
        sm_hp "z"
        sm_armour "z"
        sm_give "z"
        sm_speed "z" 
        sm_frags "z"
	    sm_deaths "z"
        sm_team "b" 
        sm_teamswap "z"
        sm_spec "b"
        sm_swap "z"
        sm_lswap "z"
        sm_exch "z"
        sm_lexch "z"
        sm_balance "z"
        sm_shuffle "z"
        sm_exec "z"
        sm_fexec "z"
        sm_getloc "z"
        sm_saveloc "z"
        sm_teleport "b"
        sm_blink "z"
        sm_god "z"
        sm_extend "z"
        sm_rr "z"
        sm_shutdown "z"
        sm_showmotd "z"
        sm_url "z"
        sm_getmodel "z"
        sm_drop "z"
        sm_dropslot "z"
        sm_gravity "z"
        sm_reloadadmins "z"
        sm_restrict  "b"
        sm_unrestrict "b"
	sm_chicken  "z"
    }
is that correct

Last edited by dustydevil; 12-14-2016 at 08:14.
dustydevil 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 13:33.


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