<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mygamingtalk.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Purple</id>
	<title>MyGamingTalk - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mygamingtalk.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Purple"/>
	<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/Special:Contributions/Purple"/>
	<updated>2026-04-13T12:03:29Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1246</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1246"/>
		<updated>2015-04-02T23:11:03Z</updated>

		<summary type="html">&lt;p&gt;Purple: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;br /&gt;
&lt;br /&gt;
= et.RegisterModname() =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local modname = &amp;quot;^1MY MOD NAME&amp;quot;&lt;br /&gt;
    et.RegisterModname( modname )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    et.RegisterModname( &amp;quot;^1MY MOD NAME&amp;quot; )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= et.trap_Cvar_Get() =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    maxclients = et.trap_Cvar_Get( &amp;quot;sv_maxclients&amp;quot; )&lt;br /&gt;
    et.trap_SendServerCommand( -1, &amp;quot;chat this server has &amp;quot;..maxclients..&amp;quot; slots!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local silent_anticheat = et.trap_Cvar_Get( &amp;quot;sv_sac&amp;quot; ) -- local represents that this can only be used in this function.&lt;br /&gt;
    if silent_anticheat == 1 then&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat enabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    else&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat disabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    end&lt;br /&gt;
 end&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1245</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1245"/>
		<updated>2015-04-02T23:05:03Z</updated>

		<summary type="html">&lt;p&gt;Purple: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;br /&gt;
&lt;br /&gt;
=== et.RegisterModname() ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local modname = &amp;quot;^1MY MOD NAME&amp;quot;&lt;br /&gt;
    et.RegisterModname( modname )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    et.RegisterModname( &amp;quot;^1MY MOD NAME&amp;quot; )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== et.trap_Cvar_Get() ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    maxclients = et.trap_Cvar_Get( &amp;quot;sv_maxclients&amp;quot; )&lt;br /&gt;
    et.trap_SendServerCommand( -1, &amp;quot;chat this server has &amp;quot;..maxclients..&amp;quot; slots!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local silent_anticheat = et.trap_Cvar_Get( &amp;quot;sv_sac&amp;quot; ) -- local represents that this can only be used in this function.&lt;br /&gt;
    if silent_anticheat == 1 then&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat enabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    else&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat disabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    end&lt;br /&gt;
 end&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1244</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1244"/>
		<updated>2015-04-02T23:03:44Z</updated>

		<summary type="html">&lt;p&gt;Purple: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;br /&gt;
&lt;br /&gt;
=== et.RegisterModname() ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local modname = &amp;quot;^1MY MOD NAME&amp;quot;&lt;br /&gt;
    et.RegisterModname( modname )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    et.RegisterModname( &amp;quot;^1MY MOD NAME&amp;quot; )&lt;br /&gt;
 end&lt;br /&gt;
=  =&lt;br /&gt;
&lt;br /&gt;
=== et.trap_Cvar_Get() ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    maxclients = et.trap_Cvar_Get( &amp;quot;sv_maxclients&amp;quot; )&lt;br /&gt;
    et.trap_SendServerCommand( -1, &amp;quot;chat this server has &amp;quot;..maxclients..&amp;quot; slots!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local silent_anticheat = et.trap_Cvar_Get( &amp;quot;sv_sac&amp;quot; ) -- local represents that this can only be used in this function.&lt;br /&gt;
    if silent_anticheat == 1 then&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat enabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    else&lt;br /&gt;
       et.trap_SendServerCommand( -1, &amp;quot;chat This server has silent anticheat disabled!&amp;quot; ) -- -1 represents as all clients.&lt;br /&gt;
    end&lt;br /&gt;
 end&lt;br /&gt;
=  =&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1243</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1243"/>
		<updated>2015-04-02T22:50:46Z</updated>

		<summary type="html">&lt;p&gt;Purple: /* et.RegisterModname() */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;br /&gt;
&lt;br /&gt;
=== et.RegisterModname() ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local modname = &amp;quot;^1MY MOD NAME&amp;quot;&lt;br /&gt;
    et.RegisterModname( modname )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    et.RegisterModname( &amp;quot;^1MY MOD NAME&amp;quot; )&lt;br /&gt;
 end&lt;br /&gt;
=  =&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1242</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1242"/>
		<updated>2015-04-02T22:48:16Z</updated>

		<summary type="html">&lt;p&gt;Purple: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;br /&gt;
&lt;br /&gt;
=== et.RegisterModname() ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example Usage&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    local modname = &amp;quot;^1MY MOD NAME&amp;quot;&lt;br /&gt;
    et.RegisterModname( modname )&lt;br /&gt;
 end&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 function et_InitGame( levelTime, randomSeed, restart )&lt;br /&gt;
    et.RegisterModname( &amp;quot;^1MY MOD NAME&amp;quot; )&lt;br /&gt;
 end&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1241</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1241"/>
		<updated>2015-04-02T22:38:39Z</updated>

		<summary type="html">&lt;p&gt;Purple: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Lua is a server sided scripting language allowing users to customize their servers and settings to the fullest. Here below you will be able to find many examples on how the Lua Wolf API works in silEnT while getting a general understanding of lua.&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1237</id>
		<title>Lua Examples</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Lua_Examples&amp;diff=1237"/>
		<updated>2015-03-30T22:15:28Z</updated>

		<summary type="html">&lt;p&gt;Purple: Created page with &amp;quot;WIP&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WIP&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1236</id>
		<title>SilEnT Mod</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1236"/>
		<updated>2015-03-30T22:15:13Z</updated>

		<summary type="html">&lt;p&gt;Purple: /* Content */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SilEnT Mod is a modification for game Wolfenstein: Enemy Territory by [http://www.splashdamage.com/ SplashDamage].&lt;br /&gt;
&lt;br /&gt;
Our goals with the mod are high quality, high performance and high configurability for both, the server and the client side.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Some important features of silEnT mod are:&lt;br /&gt;
&lt;br /&gt;
*Fixed many small bugs that affected the gameplay. These include fixing the sniper zoom exploit and pmove_fixed bug.&lt;br /&gt;
*Lots of code optimisations in many places.&lt;br /&gt;
*New database system for shrubbot with enhanced commands. Now you can ban players even if they are not on server, search players, edit their greeting text, sound, levels, etc.&lt;br /&gt;
*We have added new weapons PPSh, Tripmines and improvised demolition with carefull consideration that they will not alter the game flow that the Enemy Territory is known of. Admins can also easily configure or disable these weapons on their servers.&lt;br /&gt;
*We improved bandwidth usage by rewriting big part of the data transmissions between the server and client and this way gained big performance improvement resulting in more smoother game and stable FPS.&lt;br /&gt;
*Removed many exploitable cvars including cg_noDamageKick.&lt;br /&gt;
*New User Interface with 3 themes. Themes can be switched with &amp;quot;ui_theme&amp;quot; cvar {1,2,3} (Since 0.4.0)&lt;br /&gt;
*Widescreen support. (Since 0.4.0)&lt;br /&gt;
*New front end user interface for private message system. (Since 0.4.0)&lt;br /&gt;
*3rd person view for knife throw animations. (Since 0.4.0)&lt;br /&gt;
*Enhanced Hardware Based Identification system. g_identOptions 16. The server will automatically create a new ban for a player that is circumventing old ban and the client identification catches it. &lt;br /&gt;
*Subnet ban feature to replace pb_sv_banmask. (Since 0.4.0)&lt;br /&gt;
*Possiblity to mute only global chat sounds with cg_noVoiceChats 2. Also added into the menu. (Since 0.4.0)&lt;br /&gt;
*silEnT Mod Anti Cheat to help admins against cheaters. (Since 0.8.0) Feel free to send us non detected cheats through [http://mygamingtalk.com/forums/index.php?app=contactus&amp;amp;module=contato&amp;amp;section=form&amp;amp;id=2 Cheat Submission Page].&lt;br /&gt;
*Customized votes. (Since 0.8.1)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
For full list of features, please follow full documentation. &lt;br /&gt;
&lt;br /&gt;
== Content  ==&lt;br /&gt;
&lt;br /&gt;
*[http://mygamingtalk.com/forums/files/file/38-silent/ Download] &lt;br /&gt;
*[[Silent Mod Installation|Installation]] &lt;br /&gt;
*Server Cvar &lt;br /&gt;
**[[Silent Mod Server Cvar|silEnT Mod Server Cvar]] &lt;br /&gt;
**[[Generic Server Cvar|Generic Server Cvar]] &lt;br /&gt;
*Client Cvar &lt;br /&gt;
**[[Silent Mod Client Cvar|silEnT Mod Client Cvar]] &lt;br /&gt;
**[[Generic Client Cvar|Generic Client Cvar]] &lt;br /&gt;
*[[Silent Server Console Commands|Server Console Commands]]&lt;br /&gt;
*[[Silent Shrubbot|Shrubbot and User Database]] &lt;br /&gt;
*[[Silent Forcing Client Settings|Forcing Client Settings]]&lt;br /&gt;
*[[Silent Creating Custom Commands|Creating Custom Commands]]&lt;br /&gt;
*[[Silent Banners|Banners]] &lt;br /&gt;
*[[Silent Shortcuts|Shortcuts]] &lt;br /&gt;
*[[Silent Sounds|Hit Sounds, Spree Sounds and Announcements]]&lt;br /&gt;
*Lua Scripting&lt;br /&gt;
**[[Silent Lua|Lua Scripting]] &lt;br /&gt;
**[[Lua Examples|Lua Examples]]&lt;br /&gt;
*[[Silent FAQ|Frequently Asked Questions]] &lt;br /&gt;
*[[Silent Server Config| silEnT Mod Server Config]]&lt;br /&gt;
*[[Silent Changelog|Changelog]] &lt;br /&gt;
*[[Silent Credits|Credits]]&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1235</id>
		<title>SilEnT Mod</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1235"/>
		<updated>2015-03-30T22:14:51Z</updated>

		<summary type="html">&lt;p&gt;Purple: /* Content */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SilEnT Mod is a modification for game Wolfenstein: Enemy Territory by [http://www.splashdamage.com/ SplashDamage].&lt;br /&gt;
&lt;br /&gt;
Our goals with the mod are high quality, high performance and high configurability for both, the server and the client side.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Some important features of silEnT mod are:&lt;br /&gt;
&lt;br /&gt;
*Fixed many small bugs that affected the gameplay. These include fixing the sniper zoom exploit and pmove_fixed bug.&lt;br /&gt;
*Lots of code optimisations in many places.&lt;br /&gt;
*New database system for shrubbot with enhanced commands. Now you can ban players even if they are not on server, search players, edit their greeting text, sound, levels, etc.&lt;br /&gt;
*We have added new weapons PPSh, Tripmines and improvised demolition with carefull consideration that they will not alter the game flow that the Enemy Territory is known of. Admins can also easily configure or disable these weapons on their servers.&lt;br /&gt;
*We improved bandwidth usage by rewriting big part of the data transmissions between the server and client and this way gained big performance improvement resulting in more smoother game and stable FPS.&lt;br /&gt;
*Removed many exploitable cvars including cg_noDamageKick.&lt;br /&gt;
*New User Interface with 3 themes. Themes can be switched with &amp;quot;ui_theme&amp;quot; cvar {1,2,3} (Since 0.4.0)&lt;br /&gt;
*Widescreen support. (Since 0.4.0)&lt;br /&gt;
*New front end user interface for private message system. (Since 0.4.0)&lt;br /&gt;
*3rd person view for knife throw animations. (Since 0.4.0)&lt;br /&gt;
*Enhanced Hardware Based Identification system. g_identOptions 16. The server will automatically create a new ban for a player that is circumventing old ban and the client identification catches it. &lt;br /&gt;
*Subnet ban feature to replace pb_sv_banmask. (Since 0.4.0)&lt;br /&gt;
*Possiblity to mute only global chat sounds with cg_noVoiceChats 2. Also added into the menu. (Since 0.4.0)&lt;br /&gt;
*silEnT Mod Anti Cheat to help admins against cheaters. (Since 0.8.0) Feel free to send us non detected cheats through [http://mygamingtalk.com/forums/index.php?app=contactus&amp;amp;module=contato&amp;amp;section=form&amp;amp;id=2 Cheat Submission Page].&lt;br /&gt;
*Customized votes. (Since 0.8.1)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
For full list of features, please follow full documentation. &lt;br /&gt;
&lt;br /&gt;
== Content  ==&lt;br /&gt;
&lt;br /&gt;
*[http://mygamingtalk.com/forums/files/file/38-silent/ Download] &lt;br /&gt;
*[[Silent Mod Installation|Installation]] &lt;br /&gt;
*Server Cvar &lt;br /&gt;
**[[Silent Mod Server Cvar|silEnT Mod Server Cvar]] &lt;br /&gt;
**[[Generic Server Cvar|Generic Server Cvar]] &lt;br /&gt;
*Client Cvar &lt;br /&gt;
**[[Silent Mod Client Cvar|silEnT Mod Client Cvar]] &lt;br /&gt;
**[[Generic Client Cvar|Generic Client Cvar]] &lt;br /&gt;
*[[Silent Server Console Commands|Server Console Commands]]&lt;br /&gt;
*[[Silent Shrubbot|Shrubbot and User Database]] &lt;br /&gt;
*[[Silent Forcing Client Settings|Forcing Client Settings]]&lt;br /&gt;
*[[Silent Creating Custom Commands|Creating Custom Commands]]&lt;br /&gt;
*[[Silent Banners|Banners]] &lt;br /&gt;
*[[Silent Shortcuts|Shortcuts]] &lt;br /&gt;
*[[Silent Sounds|Hit Sounds, Spree Sounds and Announcements]]&lt;br /&gt;
*Lua Scripting&lt;br /&gt;
**[[Silent Lua|Lua Scripting]] &lt;br /&gt;
*[[Lua Examples|Lua Examples&lt;br /&gt;
*[[Silent FAQ|Frequently Asked Questions]] &lt;br /&gt;
*[[Silent Server Config| silEnT Mod Server Config]]&lt;br /&gt;
*[[Silent Changelog|Changelog]] &lt;br /&gt;
*[[Silent Credits|Credits]]&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1234</id>
		<title>SilEnT Mod</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=SilEnT_Mod&amp;diff=1234"/>
		<updated>2015-03-30T22:14:07Z</updated>

		<summary type="html">&lt;p&gt;Purple: /* Content */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SilEnT Mod is a modification for game Wolfenstein: Enemy Territory by [http://www.splashdamage.com/ SplashDamage].&lt;br /&gt;
&lt;br /&gt;
Our goals with the mod are high quality, high performance and high configurability for both, the server and the client side.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Some important features of silEnT mod are:&lt;br /&gt;
&lt;br /&gt;
*Fixed many small bugs that affected the gameplay. These include fixing the sniper zoom exploit and pmove_fixed bug.&lt;br /&gt;
*Lots of code optimisations in many places.&lt;br /&gt;
*New database system for shrubbot with enhanced commands. Now you can ban players even if they are not on server, search players, edit their greeting text, sound, levels, etc.&lt;br /&gt;
*We have added new weapons PPSh, Tripmines and improvised demolition with carefull consideration that they will not alter the game flow that the Enemy Territory is known of. Admins can also easily configure or disable these weapons on their servers.&lt;br /&gt;
*We improved bandwidth usage by rewriting big part of the data transmissions between the server and client and this way gained big performance improvement resulting in more smoother game and stable FPS.&lt;br /&gt;
*Removed many exploitable cvars including cg_noDamageKick.&lt;br /&gt;
*New User Interface with 3 themes. Themes can be switched with &amp;quot;ui_theme&amp;quot; cvar {1,2,3} (Since 0.4.0)&lt;br /&gt;
*Widescreen support. (Since 0.4.0)&lt;br /&gt;
*New front end user interface for private message system. (Since 0.4.0)&lt;br /&gt;
*3rd person view for knife throw animations. (Since 0.4.0)&lt;br /&gt;
*Enhanced Hardware Based Identification system. g_identOptions 16. The server will automatically create a new ban for a player that is circumventing old ban and the client identification catches it. &lt;br /&gt;
*Subnet ban feature to replace pb_sv_banmask. (Since 0.4.0)&lt;br /&gt;
*Possiblity to mute only global chat sounds with cg_noVoiceChats 2. Also added into the menu. (Since 0.4.0)&lt;br /&gt;
*silEnT Mod Anti Cheat to help admins against cheaters. (Since 0.8.0) Feel free to send us non detected cheats through [http://mygamingtalk.com/forums/index.php?app=contactus&amp;amp;module=contato&amp;amp;section=form&amp;amp;id=2 Cheat Submission Page].&lt;br /&gt;
*Customized votes. (Since 0.8.1)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
For full list of features, please follow full documentation. &lt;br /&gt;
&lt;br /&gt;
== Content  ==&lt;br /&gt;
&lt;br /&gt;
*[http://mygamingtalk.com/forums/files/file/38-silent/ Download] &lt;br /&gt;
*[[Silent Mod Installation|Installation]] &lt;br /&gt;
*Server Cvar &lt;br /&gt;
**[[Silent Mod Server Cvar|silEnT Mod Server Cvar]] &lt;br /&gt;
**[[Generic Server Cvar|Generic Server Cvar]] &lt;br /&gt;
*Client Cvar &lt;br /&gt;
**[[Silent Mod Client Cvar|silEnT Mod Client Cvar]] &lt;br /&gt;
**[[Generic Client Cvar|Generic Client Cvar]] &lt;br /&gt;
*[[Silent Server Console Commands|Server Console Commands]]&lt;br /&gt;
*[[Silent Shrubbot|Shrubbot and User Database]] &lt;br /&gt;
*[[Silent Forcing Client Settings|Forcing Client Settings]]&lt;br /&gt;
*[[Silent Creating Custom Commands|Creating Custom Commands]]&lt;br /&gt;
*[[Silent Banners|Banners]] &lt;br /&gt;
*[[Silent Shortcuts|Shortcuts]] &lt;br /&gt;
*[[Silent Sounds|Hit Sounds, Spree Sounds and Announcements]]&lt;br /&gt;
** Lua Scripting&lt;br /&gt;
*[[Silent Lua|Lua Scripting]] &lt;br /&gt;
*[[Lua Examples|Lua Examples&lt;br /&gt;
*[[Silent FAQ|Frequently Asked Questions]] &lt;br /&gt;
*[[Silent Server Config| silEnT Mod Server Config]]&lt;br /&gt;
*[[Silent Changelog|Changelog]] &lt;br /&gt;
*[[Silent Credits|Credits]]&lt;/div&gt;</summary>
		<author><name>Purple</name></author>
	</entry>
</feed>