<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[GMod Gaming Forums - Help - FAQs]]></title>
		<link>https://gmodgaming.com/forums/</link>
		<description><![CDATA[GMod Gaming Forums - https://gmodgaming.com/forums]]></description>
		<pubDate>Thu, 07 May 2026 22:48:06 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[My config files for all to use]]></title>
			<link>https://gmodgaming.com/forums/thread-21.html</link>
			<pubDate>Wed, 25 Sep 2019 02:07:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gmodgaming.com/forums/member.php?action=profile&uid=4">mr_chillington</a>]]></dc:creator>
			<guid isPermaLink="false">https://gmodgaming.com/forums/thread-21.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Updated 10/4/2019</span><br />
<span style="font-weight: bold;" class="mycode_b">Here are my configs for you to use, they have been edited so you can pick what you want to use or just use them as a template.</span><br />
<span style="font-weight: bold;" class="mycode_b">Here is what the main file looks like.</span><br />
<span style="font-style: italic;" class="mycode_i">The zip file will be attached for you to download.</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//First a list of keyboard key names<br />
//Hope it helps<br />
<br />
//Key Names - names for binding<br />
    //Numpad 0 - KP_INS<br />
    //Numpad 1 - KP_END<br />
    //Numpad 2 - KP_DOWNARROW<br />
    //Numpad 3 - KP_PGDN<br />
    //Numpad 4 - KP_LEFTARROW<br />
    //Numpad 5 - KP_5<br />
    //Numpad 6 - KP_RIGHTARROW<br />
    //Numpad 7 - KP_HOME<br />
    //Numpad 8 - KP_UPARROW<br />
    //Numpad 9 - KP_PGUP<br />
    //Numpad Dot or . - KP_DEL<br />
    //Numpad ENTER - KP_ENTER<br />
    //Numpad + - KP_PLUS<br />
    //Numpad - - KP_MINUS<br />
    //Numpad * - KP_MULTIPLY<br />
    //Numpad / - KP_SLASH<br />
    //Numpad next to Slash - KP_NUMLOCK<br />
<br />
    //windows key left - LWIN<br />
    //windows key right - RWIN<br />
<br />
    //SHIFT, CTRL, ALT Left - SHIFT, CTRL, ALT<br />
    //SHIFT, CTRL, ALT Right - RSHIFT, RCTRL, RALT<br />
<br />
    //Print Screen - Can not be bound<br />
    //Scroll Lock - SCROLLLOCK<br />
    //Pause - NUMLOCK<br />
    //Insert - INS<br />
    //Home - HOME<br />
    //Page Up - PGUP<br />
    //Page Down - PGDOWN<br />
    //Delete - DEL<br />
    //End - END<br />
<br />
    //Arrow Key Up - UPARROW<br />
    //Arrow Key Down - DOWNARROW<br />
    //Arrow Key Left - LEFTARROW<br />
    //Arrow Key Right - RIGHTARROW<br />
    <br />
    //You can not bind this key ;<br />
<br />
//Slots - what they are<br />
    //slot1 - malee weapons<br />
    //slot2 - magnum<br />
    //slot3 - smg<br />
    //slot4 - shutgun<br />
<br />
//ULX Mod Commands please bind the menu command for the love of god... Looking at you fryman...<br />
    //full list of ulx commands can be found here https://pingperfect.com/phpbb/viewtopic.php?t=659<br />
    //!menu (typing this in chat will open up the ulx menu (but just bind the one of the folling to a key))<br />
    //xgui - opens menu<br />
    //ulx menu - opens menu<br />
    //ulx gag * - the emergency gag all command (makes it so no one can use their mic(mutes you too)<br />
    //ulx gimp * - ADMIN ONLY... the emergency gimp all command (makes it so no one can type in chat<br />
<br />
exec "/scripts/dances.cfg" //excutes this file so then we can bind alias from that file.<br />
exec "/scripts/tickrate.cfg"<br />
<br />
//remove // (comments) from the binds below if you want to use it.<br />
//binds (change these to whatever keys you want) example: bind "&lt;key&gt;" "&lt;command&gt;"<br />
    //alias's<br />
    bind "alt" "+cjump"<br />
    bind "c" "msgdeath"<br />
    bind "/" "tgag"<br />
    bind "." "tgimp"<br />
    <br />
    //weapon binds<br />
    bind "r" "slot3"<br />
    bind "q" "slot4"<br />
    bind "z" "slot1"<br />
    <br />
    //acts<br />
    bind "1" "robot"<br />
    bind "2" "muscle"<br />
    bind "3" "dance"<br />
    bind "4" "laugh"<br />
    bind "5" "disagree"<br />
    bind "6" "wave"<br />
    <br />
    //utility binds<br />
    bind "0" "say !3p"<br />
    bind "x" "xgui"<br />
    bind "[" "stopsound"<br />
    bind "]" "stopsoundscape"<br />
<br />
<br />
//Alias's<br />
    //crouch jump<br />
        alias +cjump "+jump; +duck"<br />
        alias -cjump "-duck; -jump"<br />
    //msg + death (types a message in chat and kills yourself instantly<br />
        alias msgdeath "say I tripped!; kill"<br />
    //toggle gag all<br />
        alias tgag "tgag1"<br />
        alias tgag1 "ulx gag *; alias tgag tgag2"<br />
        alias tgag2 "ulx ungag *; alias tgag tgag1"<br />
    //toggle mute all (again Admin only)<br />
        alias tgimp "tgimp1"<br />
        alias tgimp1 "ulx gimp *; alias tgimp tgimp2"<br />
        alias tgimp2 "ulx ungimp *; alias tgimp tgimp1"<br />
<br />
echo "Keyboard_Binds loaded"</code></div></div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://gmodgaming.com/forums/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=4" target="_blank" title="">cfg.zip</a> (Size: 3.51 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Updated 10/4/2019</span><br />
<span style="font-weight: bold;" class="mycode_b">Here are my configs for you to use, they have been edited so you can pick what you want to use or just use them as a template.</span><br />
<span style="font-weight: bold;" class="mycode_b">Here is what the main file looks like.</span><br />
<span style="font-style: italic;" class="mycode_i">The zip file will be attached for you to download.</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//First a list of keyboard key names<br />
//Hope it helps<br />
<br />
//Key Names - names for binding<br />
    //Numpad 0 - KP_INS<br />
    //Numpad 1 - KP_END<br />
    //Numpad 2 - KP_DOWNARROW<br />
    //Numpad 3 - KP_PGDN<br />
    //Numpad 4 - KP_LEFTARROW<br />
    //Numpad 5 - KP_5<br />
    //Numpad 6 - KP_RIGHTARROW<br />
    //Numpad 7 - KP_HOME<br />
    //Numpad 8 - KP_UPARROW<br />
    //Numpad 9 - KP_PGUP<br />
    //Numpad Dot or . - KP_DEL<br />
    //Numpad ENTER - KP_ENTER<br />
    //Numpad + - KP_PLUS<br />
    //Numpad - - KP_MINUS<br />
    //Numpad * - KP_MULTIPLY<br />
    //Numpad / - KP_SLASH<br />
    //Numpad next to Slash - KP_NUMLOCK<br />
<br />
    //windows key left - LWIN<br />
    //windows key right - RWIN<br />
<br />
    //SHIFT, CTRL, ALT Left - SHIFT, CTRL, ALT<br />
    //SHIFT, CTRL, ALT Right - RSHIFT, RCTRL, RALT<br />
<br />
    //Print Screen - Can not be bound<br />
    //Scroll Lock - SCROLLLOCK<br />
    //Pause - NUMLOCK<br />
    //Insert - INS<br />
    //Home - HOME<br />
    //Page Up - PGUP<br />
    //Page Down - PGDOWN<br />
    //Delete - DEL<br />
    //End - END<br />
<br />
    //Arrow Key Up - UPARROW<br />
    //Arrow Key Down - DOWNARROW<br />
    //Arrow Key Left - LEFTARROW<br />
    //Arrow Key Right - RIGHTARROW<br />
    <br />
    //You can not bind this key ;<br />
<br />
//Slots - what they are<br />
    //slot1 - malee weapons<br />
    //slot2 - magnum<br />
    //slot3 - smg<br />
    //slot4 - shutgun<br />
<br />
//ULX Mod Commands please bind the menu command for the love of god... Looking at you fryman...<br />
    //full list of ulx commands can be found here https://pingperfect.com/phpbb/viewtopic.php?t=659<br />
    //!menu (typing this in chat will open up the ulx menu (but just bind the one of the folling to a key))<br />
    //xgui - opens menu<br />
    //ulx menu - opens menu<br />
    //ulx gag * - the emergency gag all command (makes it so no one can use their mic(mutes you too)<br />
    //ulx gimp * - ADMIN ONLY... the emergency gimp all command (makes it so no one can type in chat<br />
<br />
exec "/scripts/dances.cfg" //excutes this file so then we can bind alias from that file.<br />
exec "/scripts/tickrate.cfg"<br />
<br />
//remove // (comments) from the binds below if you want to use it.<br />
//binds (change these to whatever keys you want) example: bind "&lt;key&gt;" "&lt;command&gt;"<br />
    //alias's<br />
    bind "alt" "+cjump"<br />
    bind "c" "msgdeath"<br />
    bind "/" "tgag"<br />
    bind "." "tgimp"<br />
    <br />
    //weapon binds<br />
    bind "r" "slot3"<br />
    bind "q" "slot4"<br />
    bind "z" "slot1"<br />
    <br />
    //acts<br />
    bind "1" "robot"<br />
    bind "2" "muscle"<br />
    bind "3" "dance"<br />
    bind "4" "laugh"<br />
    bind "5" "disagree"<br />
    bind "6" "wave"<br />
    <br />
    //utility binds<br />
    bind "0" "say !3p"<br />
    bind "x" "xgui"<br />
    bind "[" "stopsound"<br />
    bind "]" "stopsoundscape"<br />
<br />
<br />
//Alias's<br />
    //crouch jump<br />
        alias +cjump "+jump; +duck"<br />
        alias -cjump "-duck; -jump"<br />
    //msg + death (types a message in chat and kills yourself instantly<br />
        alias msgdeath "say I tripped!; kill"<br />
    //toggle gag all<br />
        alias tgag "tgag1"<br />
        alias tgag1 "ulx gag *; alias tgag tgag2"<br />
        alias tgag2 "ulx ungag *; alias tgag tgag1"<br />
    //toggle mute all (again Admin only)<br />
        alias tgimp "tgimp1"<br />
        alias tgimp1 "ulx gimp *; alias tgimp tgimp2"<br />
        alias tgimp2 "ulx ungimp *; alias tgimp tgimp1"<br />
<br />
echo "Keyboard_Binds loaded"</code></div></div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://gmodgaming.com/forums/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=4" target="_blank" title="">cfg.zip</a> (Size: 3.51 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PURPLE & BLACK SQUARES EVERYWHERE!]]></title>
			<link>https://gmodgaming.com/forums/thread-2.html</link>
			<pubDate>Wed, 17 Jan 2018 06:32:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gmodgaming.com/forums/member.php?action=profile&uid=4">Mr. Chillington</a>]]></dc:creator>
			<guid isPermaLink="false">https://gmodgaming.com/forums/thread-2.html</guid>
			<description><![CDATA[<img src="https://pre00.deviantart.net/932c/th/pre/f/2013/080/d/7/missing_texture__the_videogame_by_ozpakko-d5yrjaw.jpg" loading="lazy"  width="600" height="300" alt="[Image: missing_texture__the_videogame_by_ozpakko-d5yrjaw.jpg]" class="mycode_img" /><br />
<br />
<span style="font-size: medium;" class="mycode_size">If you are seeing this it means you are missing <a href="http://store.steampowered.com/app/240/CounterStrike_Source/" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">Counter-Strike: Source</span></a> textures.</span><br />
<span style="font-size: medium;" class="mycode_size">But how to fix?</span><br />
<br />
<br />
<span style="font-size: medium;" class="mycode_size">Well there are two ways to fix this issue.</span><br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-size: medium;" class="mycode_size">Buying and installing the game by clicking <a href="http://store.steampowered.com/app/240/CounterStrike_Source/" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">here.</span></span></a></span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Downloading the textures from the internet and putting them in your gmod folder (Instructions for which are down below).</span><br />
</li>
</ol>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">~WARNING~</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">This is not legal and if you play Gmod often I strongly recommend that you buy Counter-Strike: Source.</span></span></div>
<br />
<span style="font-size: medium;" class="mycode_size">Moving on... click <span style="font-weight: bold;" class="mycode_b"><a href="https://mega.nz/#!aIYHRYgS!z7ASATWZaxfkiMXzTjgiyEbxvE7ikR9CiVYvOwZqqTM" target="_blank" rel="noopener" class="mycode_url">here</a></span> to download the textures (Instructions how to install below).</span><br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-size: medium;" class="mycode_size">You will need to either use the built in unzipper that comes with Windows, WinRAR, or my favorite 7-zip to unzip the folder.</span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Extract downloaded files and place in the folder located at C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod\addons</span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Enjoy</span><br />
</li>
</ol>
]]></description>
			<content:encoded><![CDATA[<img src="https://pre00.deviantart.net/932c/th/pre/f/2013/080/d/7/missing_texture__the_videogame_by_ozpakko-d5yrjaw.jpg" loading="lazy"  width="600" height="300" alt="[Image: missing_texture__the_videogame_by_ozpakko-d5yrjaw.jpg]" class="mycode_img" /><br />
<br />
<span style="font-size: medium;" class="mycode_size">If you are seeing this it means you are missing <a href="http://store.steampowered.com/app/240/CounterStrike_Source/" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">Counter-Strike: Source</span></a> textures.</span><br />
<span style="font-size: medium;" class="mycode_size">But how to fix?</span><br />
<br />
<br />
<span style="font-size: medium;" class="mycode_size">Well there are two ways to fix this issue.</span><br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-size: medium;" class="mycode_size">Buying and installing the game by clicking <a href="http://store.steampowered.com/app/240/CounterStrike_Source/" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">here.</span></span></a></span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Downloading the textures from the internet and putting them in your gmod folder (Instructions for which are down below).</span><br />
</li>
</ol>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">~WARNING~</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">This is not legal and if you play Gmod often I strongly recommend that you buy Counter-Strike: Source.</span></span></div>
<br />
<span style="font-size: medium;" class="mycode_size">Moving on... click <span style="font-weight: bold;" class="mycode_b"><a href="https://mega.nz/#!aIYHRYgS!z7ASATWZaxfkiMXzTjgiyEbxvE7ikR9CiVYvOwZqqTM" target="_blank" rel="noopener" class="mycode_url">here</a></span> to download the textures (Instructions how to install below).</span><br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-size: medium;" class="mycode_size">You will need to either use the built in unzipper that comes with Windows, WinRAR, or my favorite 7-zip to unzip the folder.</span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Extract downloaded files and place in the folder located at C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod\addons</span><br />
</li>
<li><span style="font-size: medium;" class="mycode_size">Enjoy</span><br />
</li>
</ol>
]]></content:encoded>
		</item>
	</channel>
</rss>