<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alliedmods.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eakgnarok</id>
	<title>AlliedModders Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alliedmods.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eakgnarok"/>
	<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/Special:Contributions/Eakgnarok"/>
	<updated>2026-05-26T20:22:02Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.6</generator>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=Ko:AutoConfigs_(SourceMod_Scripting)&amp;diff=8450</id>
		<title>Ko:AutoConfigs (SourceMod Scripting)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=Ko:AutoConfigs_(SourceMod_Scripting)&amp;diff=8450"/>
		<updated>2012-04-20T05:39:55Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: 첫 작성&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
소스모드는 단순한 플러그인을 위해서 로드 시에 자동으로 실행되는 설정 파일을 생성하게 하는 시스템을 제공합니다.  이것은 &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt; 에 있는 native(원시) 함수인 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 를 통해서 처리됩니다.&lt;br /&gt;
&lt;br /&gt;
모든 설정 파일들이 실행되고 나면, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; 가 호출됩니다. 이 포워드는 해당 플러그인이 설정파일이 없거나 늦게 로드되어도 항상 호출됩니다.&lt;br /&gt;
&lt;br /&gt;
=이용법=&lt;br /&gt;
여기에는 이것을 호출할 세 가지 매개 변수(parameter)들이 있습니다:&lt;br /&gt;
*''autoCreate'' - 참일 경우에, 소스모드는 지정된 설정 파일이 존재하지 않는다면 플러그인에 의해 생성된 모든 ConVar들을 설정 파일를 만들어 덤프할 것입니다.&lt;br /&gt;
*''name'' - 설정 파일의 이름이입니다(.cfg 확장자는 제외됨). 만약 비어있다면, &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt;가 붙여지고 플러그인의 이름이 사용됩니다. 예를 들면, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; 같은 경우는 &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
*''folder'' - 선택적으로 메인 &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; 폴더 아래에서 폴더를 변경합니다.  기본적으로 이것이 sourcemod 이기 때문에, 경로는 &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt; 이곳이 됩니다. 만약 비어있다면, 경로는 &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : 하위 폴더를 생성하는 것도 가능합니다; 소스모드는 각각의 하위 폴더의 생성을 시도할 것입니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : '''autoCreate''' 가 참값으로 되어있는 다수의 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 호출이 있을 때, 처음으로 생성되는 파일은 다른 파일이 생성되는 것을 방지합니다. 그러므로, 다수 파일들 사이에서는 자동적으로 cvar들을 나눌 방법이 없습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=예제 덤프=&lt;br /&gt;
autoCreate 기능은 다음과 같이 보이는 설정 파일을 내보낼 것입니다:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8448</id>
		<title>AutoConfigs (SourceMod Scripting)/ko</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8448"/>
		<updated>2012-04-18T14:14:04Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
{{Languages|AutoConfigs_(SourceMod_Scripting)}}&lt;br /&gt;
소스모드는 로드 시에 자동적으로 실행되는 설정 파일을 생성하게 하는 편리한 플러그인을 위한 시스템을 제공합니다.  이것은 &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt; 에 있는 native 함수인 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 를 통해서 처리됩니다.&lt;br /&gt;
&lt;br /&gt;
한번 모든 설정 파일들이 실행된 후에, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; 가 호출됩니다. 이 포워드는 해당 플러그인이 적어도 하나의 설정을 가지고 있거나 늦게 로드되어도 항상 호출됩니다.&lt;br /&gt;
&lt;br /&gt;
=이용법=&lt;br /&gt;
여기에는 이것을 호출할 세 가지 매개 변수(parameter)들이 있습니다:&lt;br /&gt;
*''autoCreate'' - 만약 참값이라면, 소스모드는 특정 설정 파일이 존재하지 않는다면 플러그인에 의해 생성된 모든 ConVar들을 설정 파일를 만들어 덤프할 것입니다.&lt;br /&gt;
*''name'' - 설정 파일의 이름이다(.cfg 확장을 포함). 만약 비어있다면, &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt;가 붙여지고 플러그인의 이름이 사용됩니다. 예를 들면, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; 같은 경우는 &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
*''folder'' - 임의적으로 메인 &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; 폴더 아래에서 폴더를 변경합니다.  기본적으로 이것이 sourcemod 이기 때문에, 경로는 &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt; 이곳이 됩니다. 만약 비어있다면, 경로는 &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : 폴더를 생성하는 것도 가능합니다; 소스모드는 설정 파일을 생성하기 위해 폴더 생성을 시도할 것입니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : '''autoCreate''' 가 참값으로 되어있는 다수의 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 호출을 가지고 있다면, 자동적으로 생성되는 첫 번째 파일은 다른 것에 생성되어지는 것을 방지합니다. 그러므로, 다수 파일들 사이에서는 자동적으로 cvar들을 쪼갤 방법이 없습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=예제 덤프=&lt;br /&gt;
autoCreate 기능은 다음과 같이 보이는 설정 파일을 내보낼 것입니다:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8447</id>
		<title>AutoConfigs (SourceMod Scripting)/ko</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8447"/>
		<updated>2012-04-18T14:12:23Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
{{Languages|AutoConfigs_(SourceMod_Scripting)}}&lt;br /&gt;
소스모드는 로드 시에 자동적으로 실행되는 설정 파일을 생성하게 하는 편리한 플러그인을 위한 시스템을 제공합니다.  이것은 &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt; 에 있는 native 함수인 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 를 통해서 처리됩니다.&lt;br /&gt;
&lt;br /&gt;
한번 모든 설정 파일들이 실행된 후에, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; 가 호출됩니다. 이 포워드는 해당 플러그인이 적어도 하나의 설정을 가지고 있거나 늦게 로드되어도 항상 호출됩니다.&lt;br /&gt;
&lt;br /&gt;
=이용법=&lt;br /&gt;
여기에는 이것을 호출할 세 가지 매개 변수(parameter)들이 있습니다:&lt;br /&gt;
*''autoCreate'' - 만약 참값이라면, 소스모드는 특정 설정 파일이 존재하지 않는다면 플러그인에 의해 생성된 모든 ConVar들을 설정 파일를 만들어 덤프할 것입니다.&lt;br /&gt;
*''name'' - 설정 파일의 이름이다(.cfg 확장을 포함). 만약 비어있다면, &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt;가 붙여지고 플러그인의 이름이 사용됩니다. 예를 들면, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; 같은 경우는 &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
*''folder'' - 임의적으로 메인 &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; 폴더 아래에서 폴더를 변경합니다.  기본적으로 이것이 sourcemod 이기 때문에, 경로는 &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt; 이곳이 됩니다. 만약 비어있다면, 경로는 &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : 폴더를 생성하는 것도 가능합니다; 소스모드는 설정 파일을 생성하기 위해 폴더 생성을 시도할 것입니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : '''autoCreate''' 가 참값으로 되어있는 다수의 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 호출을 가지고 있다면, 자동적으로 생성되는 첫 번째 파일은 다른 것에 생성되어지는 것을 방지합니다. 그러므로, 다수 파일들 사이에서는 자동적으로 cvar들을 쪼갤 방법이 없습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=예제 덤프=&lt;br /&gt;
autoCreate 기능은 다음과 같이 보이는 설정 파일을 내보낼 것입니다:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;br /&gt;
&lt;br /&gt;
{{LanguageSwitch}}&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8446</id>
		<title>AutoConfigs (SourceMod Scripting)/ko</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8446"/>
		<updated>2012-04-18T14:10:26Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
{{Languages|AutoConfigs_(SourceMod_Scripting)}}&lt;br /&gt;
소스모드는 로드 시에 자동적으로 실행되는 설정 파일을 생성하게 하는 편리한 플러그인을 위한 시스템을 제공합니다.  이것은 &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt; 에 있는 native 함수인 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 를 통해서 처리됩니다.&lt;br /&gt;
&lt;br /&gt;
한번 모든 설정 파일들이 실행된 후에, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; 가 호출됩니다. 이 포워드는 해당 플러그인이 적어도 하나의 설정을 가지고 있거나 늦게 로드되어도 항상 호출됩니다.&lt;br /&gt;
&lt;br /&gt;
=이용=&lt;br /&gt;
여기에는 이것을 호출할 세 가지 매개 변수(parameter)들이 있습니다:&lt;br /&gt;
*''autoCreate'' - 만약 참값이라면, 소스모드는 특정 설정 파일이 존재하지 않는다면 플러그인에 의해 생성된 모든 ConVar들을 설정 파일를 만들어 덤프할 것입니다.&lt;br /&gt;
*''name'' - 설정 파일의 이름이다(.cfg 확장을 포함). 만약 비어있다면, &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt;가 붙여지고 플러그인의 이름이 사용됩니다. 예를 들면, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; 같은 경우는 &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
*''folder'' - 임의적으로 메인 &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; 폴더 아래에서 폴더를 변경합니다.  기본적으로 이것이 sourcemod 이기 때문에, 경로는 &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt; 이곳이 됩니다. 만약 비어있다면, 경로는 &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : 폴더를 생성하는 것도 가능합니다; 소스모드는 설정 파일을 생성하기 위해 폴더 생성을 시도할 것입니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : '''autoCreate''' 가 참값으로 되어있는 다수의 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 호출을 가지고 있다면, 자동적으로 생성되는 첫 번째 파일은 다른 것에 생성되어지는 것을 방지합니다. 그러므로, 다수 파일들 사이에서는 자동적으로 cvar들을 쪼갤 방법이 없습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=예제 덤프=&lt;br /&gt;
autoCreate 기능은 다음과 같이 보이는 설정 파일을 내보낼 것입니다:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;br /&gt;
&lt;br /&gt;
{{LanguageSwitch}}&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)&amp;diff=8445</id>
		<title>AutoConfigs (SourceMod Scripting)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)&amp;diff=8445"/>
		<updated>2012-04-18T14:10:04Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
{{Languages|AutoConfigs_(SourceMod_Scripting)}}&lt;br /&gt;
SourceMod provides a system for simple plugins to automatically generate config files which get executed on load.  This is done via the &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; native in &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Once all configuration files are executed, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; is called.  This forward will always be called, even if your plugin had no configs or if it was loaded late.&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are three parameters to this call:&lt;br /&gt;
*''autoCreate'' - If true, SourceMod will dump all ConVars created by the plugin into a config file if the specified config file does not exist.&lt;br /&gt;
*''name'' - Name of the config file (excluding the .cfg extension).  If empty, the plugin's name will be used instead, with &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt; prepended.  For example, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; becomes &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt;.&lt;br /&gt;
*''folder'' - Optionally change the folder under the main &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; folder.  By default this is &amp;lt;tt&amp;gt;sourcemod&amp;lt;/tt&amp;gt;, and configs go in &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt;.  If empty, the config will be in &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
''Note'': It is possible to write nested folders; SourceMod will attempt to create each one.&lt;br /&gt;
&lt;br /&gt;
''Note'': If you have multiple &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; calls marked with '''autoCreate''' being true, the first file to be auto created will prevent any others from being created.  Thus, there is no way to automatically split cvars between multiple files.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Example Dump=&lt;br /&gt;
The autoCreate feature exports a config file that looks like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;br /&gt;
&lt;br /&gt;
{{LanguageSwitch}}&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)&amp;diff=8444</id>
		<title>AutoConfigs (SourceMod Scripting)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)&amp;diff=8444"/>
		<updated>2012-04-18T14:09:12Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
{{Languages|Installing_SourceMod}}&lt;br /&gt;
SourceMod provides a system for simple plugins to automatically generate config files which get executed on load.  This is done via the &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; native in &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Once all configuration files are executed, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; is called.  This forward will always be called, even if your plugin had no configs or if it was loaded late.&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are three parameters to this call:&lt;br /&gt;
*''autoCreate'' - If true, SourceMod will dump all ConVars created by the plugin into a config file if the specified config file does not exist.&lt;br /&gt;
*''name'' - Name of the config file (excluding the .cfg extension).  If empty, the plugin's name will be used instead, with &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt; prepended.  For example, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; becomes &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt;.&lt;br /&gt;
*''folder'' - Optionally change the folder under the main &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; folder.  By default this is &amp;lt;tt&amp;gt;sourcemod&amp;lt;/tt&amp;gt;, and configs go in &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt;.  If empty, the config will be in &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
''Note'': It is possible to write nested folders; SourceMod will attempt to create each one.&lt;br /&gt;
&lt;br /&gt;
''Note'': If you have multiple &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; calls marked with '''autoCreate''' being true, the first file to be auto created will prevent any others from being created.  Thus, there is no way to automatically split cvars between multiple files.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Example Dump=&lt;br /&gt;
The autoCreate feature exports a config file that looks like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;br /&gt;
&lt;br /&gt;
{{LanguageSwitch}}&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8443</id>
		<title>AutoConfigs (SourceMod Scripting)/ko</title>
		<link rel="alternate" type="text/html" href="https://wiki.alliedmods.net/index.php?title=AutoConfigs_(SourceMod_Scripting)/ko&amp;diff=8443"/>
		<updated>2012-04-18T14:07:46Z</updated>

		<summary type="html">&lt;p&gt;Eakgnarok: Created page with &amp;quot;__FORCETOC__  {{Languages|Installing_SourceMod}}  소스모드는 로드 시에 자동적으로 실행되는 설정 파일을 생성하게 하는 편리한 플러그인을 위...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
{{Languages|Installing_SourceMod}}&lt;br /&gt;
&lt;br /&gt;
소스모드는 로드 시에 자동적으로 실행되는 설정 파일을 생성하게 하는 편리한 플러그인을 위한 시스템을 제공합니다.  이것은 &amp;lt;tt&amp;gt;scripting/include/sourcemod.inc&amp;lt;/tt&amp;gt; 에 있는 native 함수인 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 를 통해서 처리됩니다.&lt;br /&gt;
&lt;br /&gt;
한번 모든 설정 파일들이 실행된 후에, &amp;lt;tt&amp;gt;OnConfigsExecuted&amp;lt;/tt&amp;gt; 가 호출됩니다. 이 포워드는 해당 플러그인이 적어도 하나의 설정을 가지고 있거나 늦게 로드되어도 항상 호출됩니다.&lt;br /&gt;
&lt;br /&gt;
=이용=&lt;br /&gt;
여기에는 이것을 호출할 세 가지 매개 변수(parameter)들이 있습니다:&lt;br /&gt;
*''autoCreate'' - 만약 참값이라면, 소스모드는 특정 설정 파일이 존재하지 않는다면 플러그인에 의해 생성된 모든 ConVar들을 설정 파일를 만들어 덤프할 것입니다.&lt;br /&gt;
*''name'' - 설정 파일의 이름이다(.cfg 확장을 포함). 만약 비어있다면, &amp;lt;tt&amp;gt;plugin.&amp;lt;/tt&amp;gt;가 붙여지고 플러그인의 이름이 사용됩니다. 예를 들면, &amp;lt;tt&amp;gt;hat.smx&amp;lt;/tt&amp;gt; 같은 경우는 &amp;lt;tt&amp;gt;plugin.hat.cfg&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
*''folder'' - 임의적으로 메인 &amp;lt;tt&amp;gt;cfg&amp;lt;/tt&amp;gt; 폴더 아래에서 폴더를 변경합니다.  기본적으로 이것이 sourcemod 이기 때문에, 경로는 &amp;lt;tt&amp;gt;cfg/sourcemod/&amp;lt;/tt&amp;gt; 이곳이 됩니다. 만약 비어있다면, 경로는 &amp;lt;tt&amp;gt;cfg/&amp;lt;/tt&amp;gt; 가 됩니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : 폴더를 생성하는 것도 가능합니다; 소스모드는 설정 파일을 생성하기 위해 폴더 생성을 시도할 것입니다.&lt;br /&gt;
&lt;br /&gt;
''참고'' : '''autoCreate''' 가 참값으로 되어있는 다수의 &amp;lt;tt&amp;gt;AutoExecConfig&amp;lt;/tt&amp;gt; 호출을 가지고 있다면, 자동적으로 생성되는 첫 번째 파일은 다른 것에 생성되어지는 것을 방지합니다. 그러므로, 다수 파일들 사이에서는 자동적으로 cvar들을 쪼갤 방법이 없습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=예제 덤프=&lt;br /&gt;
autoCreate 기능은 다음과 같이 보이는 설정 파일을 내보낼 것입니다:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// This file was auto-generated by SourceMod (v1.0.0.986)&lt;br /&gt;
// ConVars for plugin &amp;quot;hat.smx&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// MySQL database&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;&amp;quot;&lt;br /&gt;
mysqlk_database &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
// MySQL host, use this to configure various&lt;br /&gt;
// things for your server.&lt;br /&gt;
// -&lt;br /&gt;
// Default: &amp;quot;localhost&amp;quot;&lt;br /&gt;
mysqlk_host &amp;quot;localhost&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SourceMod Scripting]]&lt;br /&gt;
&lt;br /&gt;
{{LanguageSwitch}}&lt;/div&gt;</summary>
		<author><name>Eakgnarok</name></author>
		
	</entry>
</feed>