<?xml version="1.0"?>
<rss version="2.0"><channel><title>Tutorials: Script &amp; Data File Modification Tutorials</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/?d=5</link><description>Tutorials: Script &amp; Data File Modification Tutorials</description><language>en</language><item><title>GTA IV C# Modding</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/gta-iv-c-modding-r150/</link><description><![CDATA[


<p>
	<strong><em>Important Resources:</em></strong>
</p>

<p>
	<strong><em><a href="http://hazardx.com/files/gta4_net_scripthook-83" rel="external nofollow">Scripthookdotnet</a></em></strong>
</p>

<p>
	<strong><em><a href="https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx" rel="external nofollow">Visual Studio 13 or up</a></em></strong>
</p>

<p>
	<strong><em><a href="https://www.microsoft.com/en-us/download/details.aspx?id=42642" rel="external nofollow">.Net Framework 4.5.2</a></em></strong>
</p>

<p>
	<strong><u>Tutorial Start:</u></strong>
</p>

<p>
	<em><span style="font-size:18px;">1)</span> We will begin with this base script:</em>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span class="kwd">using</span><span class="pln"> </span><span>System</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> </span><span>System</span><span class="pun">.</span><span>Collections</span><span class="pun">.</span><span>Generic</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> </span><span>System</span><span class="pun">.</span><span>Linq</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> </span><span>System</span><span class="pun">.</span><span>Text</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> </span><span>System</span><span class="pun">.</span><span>Windows</span><span class="pun">.</span><span>Forms</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> GTA</span><span class="pun">;</span><span class="pln">
</span><span class="kwd">using</span><span class="pln"> GTA</span><span class="pun">.</span><span>Native</span><span class="pun">;</span><span class="pln">

</span><span class="kwd">namespace</span><span class="pln"> </span><span>Mod</span><span class="pln">
</span><span class="pun">{</span><span class="pln">
    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">class</span><span class="pln"> </span><span>Mod</span><span class="pln"> </span><span class="pun">:</span><span class="pln"> </span><span>Script</span><span class="pln">
    </span><span class="pun">{</span><span class="pln">

        </span><span class="kwd">public</span><span class="pln"> </span><span>Mod</span><span class="pun">()</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span class="com">//set interval</span><span class="pln">
            </span><span>Interval</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span>Settings</span><span class="pun">.</span><span>GetValueInteger</span><span class="pun">(</span><span class="str">"INTERVAL"</span><span class="pun">,</span><span class="pln"> </span><span class="str">"SETTINGS"</span><span class="pun">,</span><span class="pln"> </span><span class="lit">10000</span><span class="pun">);</span><span class="pln">

            </span><span class="com">//bind tick event</span><span class="pln">
            </span><span class="kwd">this</span><span class="pun">.</span><span>Tick</span><span class="pln"> </span><span class="pun">+=</span><span class="pln"> </span><span class="kwd">new</span><span class="pln"> </span><span>EventHandler</span><span class="pun">(</span><span>ModTick</span><span class="pun">);</span><span class="pln">

            </span><span class="com">//bind keydown event.</span><span class="pln">
            </span><span class="kwd">this</span><span class="pun">.</span><span>KeyDown</span><span class="pln"> </span><span class="pun">+=</span><span class="pln"> </span><span class="kwd">new</span><span class="pln"> GTA</span><span class="pun">.</span><span>KeyEventHandler</span><span class="pun">(</span><span>ModKeyDown</span><span class="pun">);</span><span class="pln">


        </span><span class="pun">}</span><span class="pln">

        </span><span class="com">//tick method, ran every 20 secs</span><span class="pln">
        </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">void</span><span class="pln"> </span><span>ModTick</span><span class="pun">(</span><span class="pln">object sender</span><span class="pun">,</span><span class="pln"> </span><span>EventArgs</span><span class="pln"> e</span><span class="pun">)</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span class="pln">isInjured</span><span class="pun">)</span><span class="pln">
            </span><span class="pun">{</span><span class="pln">
                </span><span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Health</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="lit">1000</span><span class="pun">;</span><span class="pln">
            </span><span class="pun">}</span><span class="pln">
        </span><span class="pun">}</span><span class="pln">

        </span><span class="com">//key down handler</span><span class="pln">
        </span><span class="com">//A lot of your script will go here</span><span class="pln">
        </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">void</span><span class="pln"> </span><span>ModKeyDown</span><span class="pun">(</span><span class="pln">object sender</span><span class="pun">,</span><span class="pln"> GTA</span><span class="pun">.</span><span>KeyEventArgs</span><span class="pln"> e</span><span class="pun">)</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">

            </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span>Keys</span><span class="pun">.</span><span class="pln">F6 </span><span class="pun">==</span><span class="pln"> e</span><span class="pun">.</span><span>Key</span><span class="pun">)</span><span class="pln">
            </span><span class="pun">{</span><span class="pln">
                </span><span class="com">//Add some kind of code to happen on key press</span><span class="pln">
            </span><span class="pun">}</span><span class="pln">
        </span><span class="pun">}</span><span class="pln">
    </span><span class="pun">}</span><span class="pln">
</span><span class="pun">}</span></pre>

<p>
	<strong>Be sure you go to references, and import all listed at the top.</strong>
</p>

<p>
	<em><span style="font-size:18px;">2)</span> I will now provide some code sources below:</em>
</p>

<p>
	<strong>Car Spawning</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Vector3</span><span class="pln"> vehPos </span><span class="pun">=</span><span class="pln"> </span><span>World</span><span class="pun">.</span><span>GetNextPositionOnStreet</span><span class="pun">(</span><span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Position</span><span class="pun">.</span><span>Around</span><span class="pun">(</span><span class="lit">10.0f</span><span class="pun">));</span><span class="pln">
</span><span>World</span><span class="pun">.</span><span>CreateVehicle</span><span class="pun">(</span><span class="kwd">new</span><span class="pln"> </span><span>Model</span><span class="pun">(</span><span class="str">"POLICE"</span><span class="pun">),</span><span class="pln"> vehPos</span><span class="pun">);</span></pre>

<p>
	<strong>Vehicle Repair</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>CurrentVehicle</span><span class="pun">.</span><span>Repair</span><span class="pun">();</span></pre>

<p>
	<strong>Wash Vehicle</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>CurrentVehicle</span><span class="pun">.</span><span>Wash</span><span class="pun">();</span></pre>

<p>
	<strong>Max Player Health</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Health</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="lit">1000</span><span class="pun">;</span></pre>

<p>
	<strong>Max Player Armour</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Armor</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="lit">1000</span><span class="pun">;</span></pre>

<p>
	<strong>Change Player Model</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Model</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="pun">(</span><span class="str">"M_Y_SWAT"</span><span class="pun">);</span></pre>

<p>
	<u><em>Player models can be found <strong><a href="http://www.gtamodding.com/wiki/List_of_models_hashes" rel="external nofollow">here</a></strong></em></u>
</p>

<p>
	<strong>Change Player Voice</strong>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Voice</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="pun">(</span><span class="str">"VOICE NAME HERE"</span><span class="pun">);</span></pre>

<p>
	<em><u>Example of player voice</u></em>
</p>

<pre class="ipsCode prettyprint prettyprinted">
<span>Player</span><span class="pun">.</span><span>Character</span><span class="pun">.</span><span>Voice</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="pun">(</span><span class="str">"M_Y_COP_WHITE"</span><span class="pun">);</span></pre>

<p>
	<span style="font-size:18px;"><em>3) </em></span><span style="font-size:14px;">Before exporting your script, go to properties and make sure you are using Framework 4.5.2 or above. On your build and assembly name, add ".net" to the end of it!</span>
</p>

<p>
	<span style="font-size:14px;">Now build the file, and add it to your scripts file!</span>
</p>

<p style="text-align:center;">
	<strong><em><span style="font-size:20px;"><a href="https://www.youtube.com/watch?v=ryA8rvUMvY4" rel="external nofollow">Video Tutorial Here</a></span></em></strong>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	 
</p>


]]></description><guid isPermaLink="false">150</guid><pubDate>Fri, 25 Mar 2016 02:05:37 +0000</pubDate></item><item><title>Integrating natives in ScriptHookDotNet</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/integrating-natives-in-scripthookdotnet-r135/</link><description><![CDATA[
<p>As well as the hundreds if not thousands of constructors, functions, etc. the LCPDFR API &amp; ScriptHookDotNet resource provide; there are still some functions not integrated available through the use of natives, the same thing basically applies to LSPDFR though this is not directly targeted towards that game.</p>
<p><b>Calling a native through ScriptHookDotNet is as simple as using a function however the parameters are not checked since the natives aren't defined and are a string(it's a void constructor).</b></p>
<p><em>GTA.Native</em></p>
<p>This allows us to work with native functions and drops to the following sub-functions:</p>
<p><img src="http://i.imgur.com/xBn7XZP.png" alt="xBn7XZP.png" class="ipsImage" style="line-height:1.6;" loading="lazy"></p>
<p>Which then divides to the following:</p>
<p><img src="http://i.imgur.com/IunwyKM.png" alt="IunwyKM.png" class="ipsImage" loading="lazy"></p>
<p>Obviously the function one is the only one we care about for this tutorial which divides into those four functions. The top two are the next ones of concern. The top one, namely "Call", simply calls the function with the given parameters while the other one handles the returns of the type provided. The first "call" one would look like this in C#:</p>
<p><b>You can also for some natives get a return and therefore there is another syntax that handles returns of all types.</b>
As seen above there is a call&lt;&gt; function which works very similarily and calls the function however this one handles returns. If we want to check if the player's anim group is already cuffed we can do:
</p>
<pre class="ipsCode">
GTA.Native.Function.Call("SET_ANIM_GROUP_FOR_CHAR", LPlayer.LocalPlayer.Ped.GPed, "move_m@h_cuffed");
</pre>
<pre>
As you can probably guess this sets the walking style of the player to the cuffed one(assuming it's loaded into memory) using the function SET_ANIM_GROUP_FOR_CHAR with the parameters of the player's character and the string of the library. Again, the parameters are a void-type and aren't checked by the compiler obviously, so be careful you provide the correct parameters.
 
</pre>
<pre class="ipsCode">
string result = GTA.Native.Function.Call&lt;string&gt;("GET_ANIM_GROUP_FROM_CHAR", Player.Character);
                    if(result.Contains("move_m@h_cuffed"))
                    {
                        GTA.Native.Function.Call("SET_ANIM_GROUP_FOR_CHAR", Player.Character, "move_player");
                        Game.DisplayText("Walkstyle reverted.");
                    }
                    else
                    {
                        GTA.Native.Function.Call("SET_ANIM_GROUP_FOR_CHAR", Player.Character, "move_m@h_cuffed");
                        Game.DisplayText("Walkstyle changed.");
                    }
</pre>
<p>This will toggle the cuffed walkstyle with a walkstyle message at the left-top of the screen.</p>
]]></description><guid isPermaLink="false">135</guid><pubDate>Sun, 11 Oct 2015 21:56:56 +0000</pubDate></item><item><title>Manual Install of LCPDFR 1.1, ELS 8.0, and Cry3ENB, Install ELS cars, and install new uniforms!</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/manual-install-of-lcpdfr-11-els-80-and-cry3enb-install-els-cars-and-install-new-uniforms-r121/</link><description><![CDATA[
<p>Hey guys - I just did a quick video because a good bit of you guys are asking me how I get my game setup the way it is.  This ins't everything in terms of setting up... that video would be hours long.  This is just a start for those confused on the most basic level of where to put stuff.  Just google the file names if you need them ("<abbr title="LCPD First Response">LCPDFR</abbr> 1.1 download", "<abbr title="LCPD First Response">LCPDFR</abbr> <abbr title="Emergency Lighting System">ELS</abbr> 8.0 download" and "Cry3ENB GTA IV download" - you should be able to find them rather easy.)</p>
<p> </p>
<p>Heres a link to the video none-the-less.</p>
<p> </p>
<div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="https://www.youtube.com/embed/Bqnb3bro3u0?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
<p>After getting all that setup - lets move on to install ELS 8,0 cars, and even new uniforms!  </p>
<p> </p>
<p> </p>
<div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="https://www.youtube.com/embed/eF9ipMvBDMA?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
<p>Have Cry3ENB but not sure what else you can do with it?  Lets adjust lighting in real time, in game!</p>
<p> </p>
<div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="https://www.youtube.com/embed/qgdzMbU-7iE?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
<p> </p>
]]></description><guid isPermaLink="false">121</guid><pubDate>Sat, 18 Apr 2015 19:57:08 +0000</pubDate></item><item><title>How to Install ELS 8.5</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-install-els-85-r116/</link><description><![CDATA[
<p></p>
<p></p>
<div style="text-align:center;"><p><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:24px;"> 8.5 Tutorial</span></p></div>
<p></p>
<p>
</p>
<p></p>
<div style="text-align:center;"><p><span style="font-size:14px;"><em>By: CheezyThenerd</em></span></p></div>
<p></p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;">
<p><span style="font-size:14px;"><strong>This Is a simple tutorial on how to Install </strong></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:14px;"><strong> 8.5.</strong></span></p>
<p><span style="font-size:14px;"><strong>
If you have question comment below!</strong></span></p>
</div>
<p></p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;"><p><span style="font-size:14px;"><strong>Download </strong></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:14px;"><strong>: </strong></span></p></div>
<p></p>
<p>
</p>
<p></p>
<div style="text-align:center;"><iframe src="http://www.lcpdfr.com/files/file/2985-emergency-lighting-system-iv/?do=embed" frameborder="0" data-embedcontent="" loading="lazy"></iframe></div>
<p></p>
<p>
</p>
<p></p>
<div style="text-align:center;">
<p>
</p>
<p>
https://www.youtube.com/watch?v=JJfBE69F9JE</p>
</div>
<p></p>
]]></description><guid isPermaLink="false">116</guid><pubDate>Fri, 10 Apr 2015 07:43:44 +0000</pubDate></item><item><title>How to Install LCPDFR 1.0d Manual Install</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-install-lcpdfr-10d-manual-install-r113/</link><description><![CDATA[
<p></p>
<p></p>
<div style="text-align:center;"><img src="http://i.imgur.com/vKRkpnJ.png" alt="vKRkpnJ.png" loading="lazy"></div>
<p></p>
<p>
</p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;"><p>https://www.youtube.com/watch?v=yQvDFxq3eu4</p></div>
<p></p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;">
<p>Today I made a simple Tutorial on how to Install <abbr title="LCPD First Response">LCPDFR</abbr> 1.0d Now this does not fix alot of Issues but It helps fix a major Issue with dsound.dll</p>
<p>
</p>
<p>
Watch the full Tutorial to understand the walk through. Also PLEASE MAKE BACK UP FILES, If you have any questions I will do the best of my ability to answer them.</p>
<p>
</p>
<p>
</p>
<p>
*UPDATE FOR HOTFIX* If you are confused about the ASI Loaders file not being there DO NOT Panic. You did not do anything wrong, the developers didn't Include It in the newest hot fix, What you will need Is the updated Dsound.dll file (2013) which you can get from <abbr title="Emergency Lighting System">ELS</abbr> 8.</p>
<p>
</p>
<p>
Anymore question message me or comment here! I get notified by email at each comment! I do plan on making at Hotfix video sometime later this week 22/02/2015.</p>
<p>
 </p>
</div>
<p></p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;"><img src="http://i.imgur.com/FUJru7i.png" alt="FUJru7i.png" loading="lazy"></div>
<p></p>
]]></description><guid isPermaLink="false">113</guid><pubDate>Fri, 20 Feb 2015 15:15:43 +0000</pubDate></item><item><title>Troubleshooting Crashes</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/troubleshooting-crashes-r112/</link><description><![CDATA[<p><strong><span style="font-size:24px;"><span style="text-decoration:underline;">UPDATE</span></span></strong></p><p>
<span style="font-size:12px;"><span style="font-size:24px;"><strong>Both the developers of LCPD:FR and </strong></span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-size:24px;"><strong> have fixed most of the problems outlined here in </strong></span></span><abbr title="LCPD First Response">LCPDFR</abbr><span style="font-size:12px;"><span style="font-size:24px;"><strong> v1.1 and </strong></span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-size:24px;"><strong> v8.5 respectively.  </strong></span></span></p><p>
<span style="font-size:12px;"><span style="font-size:24px;">This guide still applies to 1.0d and earlier, as well as </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-size:24px;"> v8.0 and earlier.</span></span></p><p>
</p><p>
<span style="font-size:12px;"><strong><span style="text-decoration:underline;"><span style="font-family:arial;">Guide Summery</span></span></strong></span></p><p>
<span style="font-size:12px;">This guide is designed to provide information on GTA IV crashing just before getting in game, or GTA IV crashing during gameplay, caused by </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;">.</span></p><p><span style="font-size:12px;">
Before performing the actions this guide, make sure you have done the following:</span></p><ul><li><span style="font-size:12px;"><span style="font-family:arial;">Make sure you aren't using a crack</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Update GTA IV to 1.0.7.0 (the latest version of the game, or 1.1.2.0 for EFLC) - This sometimes fixes a wide variety of issues</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Make sure that you run the game as an administrator.</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Make sure that you are using the Advancedhooks and Scripthooks provided with LCPD:FR</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Delete AdvancedHookInit.asi (If present in main directory)</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Make sure that your GTA IV root folder (and every subdirectory) is not set to "read-only"</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Ensure that ScriptHook.dll, ScriptHookDotNet.asi and Dsound.dll OR Xlive.dll are in the GTA IV ROOT folder</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Ensure that there is a folder titled '</span></span><abbr title="LCPD First Response">LCPDFR</abbr><span style="font-size:12px;"><span style="font-family:arial;">' in the ROOT GTA IV folder.</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Check that all the above files exist. If they do not, reinstall </span></span><abbr title="LCPD First Response">LCPDFR</abbr><span style="font-size:12px;"><span style="font-family:arial;"> with the MANUAL installation.</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Ensure that you are using up to date versions of every </span></span><abbr title="LCPD First Response">LCPDFR</abbr><span style="font-size:12px;"><span style="font-family:arial;"> dependency and </span></span><abbr title="LCPD First Response">LCPDFR</abbr><span style="font-size:12px;"><span style="font-family:arial;"> itself.</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Install Net Framework 4.5 and Microsoft Visual C++ Redist 2012</span></span><br></li></ul><p></p><p>
<abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><strong><span style="text-decoration:underline;"><span style="font-family:arial;"> Crashing</span></span></strong></span></p><p>
<span style="font-size:12px;">This crash is typically caused by </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"> Ai. This is </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"> providing the same lighting to other vehicles. To confirm this is the problem, you can disable </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"> Ai in the </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;">.ini configuration file:</span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">...</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">[ MISC SETTINGS ]</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">FlashSoundFx = on</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">FlashDelay_Sp = 2 // (0-5) Lower value for faster </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:10px;"><span style="font-family:arial;"> lights in SP</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">FlashDelay_Mp = 2 // (0-5) Lower value for faster </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:10px;"><span style="font-family:arial;"> lights in MP</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">Els_Range_Pl = 800</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">Els_Range_Ai = 500</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">Ai_Els_Sp = on</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">Ai_Els_Mp = on</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">MaxElsCarsAtOnce = 20</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">ClearRandAiExtrasSp = on</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">ClearRandAiExtrasMp = on</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">ClearAiExtrasDist = 500</span></span></p><p>
<span style="font-size:10px;"><span style="font-family:arial;">Lstg3LightsMoveTraf = off</span></span></p><p>
<span style="font-size:12px;"><span style="font-family:arial;">To disable </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;"> Ai, change Ai_Els_Sp and Ai_Els_Mp from on to off.</span></span></p><p><span style="font-size:12px;"><span style="font-family:arial;">
This crash can also be caused by incompatibility between LCPD:FR and </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;">. Simply reinstall LCPD:FR after you install </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;">, or try changing AdvancedHook.dll between what is included with LCPD:FR and </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;">.</span></span></p><p><span style="font-size:12px;"><span style="font-family:arial;">
</span></span></p><p><span style="font-size:12px;"><span style="font-family:arial;">
</span></span><em><span style="text-decoration:underline;"><span style="font-size:12px;"><span style="font-family:arial;">Further Troubleshooting</span></span></span></em></p><p>
If this solution gets you in game, but you want to re-enable <abbr title="Emergency Lighting System">ELS</abbr> Ai, there are a number of solutions you can try in the following order:</p><ul><li><span style="font-size:12px;"><span style="font-family:arial;">Disable </span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;"> on NON-</span></span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"><span style="font-family:arial;"> vehicles in slotcontrol.ini</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Disable Cruise Lights in the vehicle configuration file</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Disable ClearRandAIExtras</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">(If Above Works) Re-enable and reduce ClearRandAiExtras distance</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Reduce Els_Range_Ai</span></span><br></li><li><span style="font-size:12px;"><span style="font-family:arial;">Change ASI Loader</span></span><br></li></ul><p></p><p>
<span style="font-size:12px;"><strong><span style="text-decoration:underline;"><span style="font-family:arial;">AdvancedHook Crashing</span></span></strong></span></p><p>
<span style="font-size:12px;">This problem is commonly seen the error "System.MissingMethodException: Method not found: Boolean AdvancedHookManaged..." Both </span><abbr title="Emergency Lighting System">ELS</abbr><span style="font-size:12px;"> and LCPD:FR can crash without the correct Advancedhook. To correct the problem, just use the Advancedhook provided with LCPD:FR. You can obtain this through LCPD:FR's manual installation package, or just by reinstalling LCPD:FR.</span></p><p>
</p><p>
</p><p>
</p><p></p><div style="text-align:center;"><p><span style="font-size:12px;"><strong><span style="font-family:arial;">**GUDE </span></strong></span><em><span style="font-size:12px;"><strong><span style="font-family:arial;">STIll </span></strong></span></em><span style="font-size:12px;"><strong><span style="font-family:arial;">UNDER CONSTRUCTON**</span></strong></span></p></div><p></p>
]]></description><guid isPermaLink="false">112</guid><pubDate>Tue, 27 Jan 2015 02:15:43 +0000</pubDate></item><item><title>How to stop the city bug/other performance issues</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-stop-the-city-bugother-performance-issues-r109/</link><description><![CDATA[
<div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="https://www.youtube.com/embed/f3TTboBytiM?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
]]></description><guid isPermaLink="false">109</guid><pubDate>Tue, 02 Dec 2014 20:44:34 +0000</pubDate></item><item><title>How to install the Crown Vic Sound [Video/Voice]</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-install-the-crown-vic-sound-videovoice-r108/</link><description><![CDATA[
<div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="https://www.youtube.com/embed/Qb6h9i2a_BQ?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
]]></description><guid isPermaLink="false">108</guid><pubDate>Tue, 02 Dec 2014 20:31:24 +0000</pubDate></item><item><title>How to get ELS to work for non-ELS car slots</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-get-els-to-work-for-non-els-car-slots-r101/</link><description><![CDATA[<p>Hello everyone, today i am going to show you how to get non-<abbr title="Emergency Lighting System">els</abbr> car slots like the comet. I've seen a post about this and no one was really any help at all. They were keeping saying use the default_config file or that you can't do it at all. I am here to tell you all you can do it and it's very simple.</p><p>
</p><p>
Steps:</p><p>
1. Add the config file to the _Slotcontrol file</p><p>
2. create the new config file.</p><p>
3. Go in game and have fun.</p><p>
</p><p>
Notes:</p><p>
If you do not want to go through the process of creating the Config file by hand. Download the pre-made config file below and just change the name to the car. Example Name_config to comet_config. Click Spoiler under the video to show the Config script if you wish not to download the file.</p><p>
</p><p>
http://youtu.be/Ij9A8b5Q8hs</p><p>
</p><p>
</p><p></p><blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><p>[ MISC ]</p><p>
Slicktop = off</p><p>
LstgActivationType = default</p><p>
EnableArrowBoard = off</p><p>
AllowTakedowns = on</p><p>
UseCoronaTakedowns = on</p><p>
</p><p>
[ CRUISE ]</p><p>
DisableAtLstg3 = off</p><p>
UseExtra1 = on</p><p>
UseExtra2 = off</p><p>
UseExtra3 = off</p><p>
UseExtra4 = on</p><p>
</p><p>
[ SOUNDS ]</p><p>
HRN_Type = ahrn</p><p>
HRN_SrnToneForMan2 = yelp</p><p>
SRN_DefaultMode = stby</p><p>
SRN_ResetSrnTone = on</p><p>
SRN_AllowToneYelp = on</p><p>
SRN_AllowToneAlt1 = on</p><p>
SRN_AllowToneAlt2 = on</p><p>
</p><p>
[ CORONAS ]</p><p>
Headlights = on, 4</p><p>
Taillights = on, 2</p><p>
IndicatorsF = on, 4</p><p>
IndicatorsB = on, 1</p><p>
Reverselights = on, 5</p><p>
</p><p>
[ WRNL ]</p><p>
Type = leds</p><p>
UseScnNotTkd = off</p><p>
ForcePatForLstg = on</p><p>
PatId_Lstg3 = 2</p><p>
</p><p>
[ PRML ]</p><p>
Type = leds</p><p>
ForcePatForLstg = on</p><p>
PatId_Lstg2 = 54</p><p>
PatId_Lstg3 = 55</p><p>
Lstg2ActiveExtras = 2and3</p><p>
ExpressModeRandPat = off</p><p>
ForcePatForSrnTones = off</p><p>
PatId_Yelp = 0</p><p>
PatId_Alt1 = 0</p><p>
PatId_Alt2 = 0</p><p>
</p><p>
[ SECL ]</p><p>
Type = drct</p><p>
DisableAtLstg3 = on</p><p>
ForcePatForLstg = on</p><p>
PatId_Lstg1 = 17</p><p>
PatId_Lstg2 = 16</p><p>
PatId_Lstg3 = 04</p><p>
</p><p>
[ ENV_LIGHT_COLORS ]</p><p>
Extra_1 = red</p><p>
Extra_2 = blue</p><p>
Extra_3 = red</p><p>
Extra_4 = blue</p><p>
Extra_5 = white</p><p>
Extra_6 = white</p><p>
Extra_7 = blue</p><p>
Extra_8 = red</p><p>
Extra_9 = blue</p><p>
</p><p>
[ ENV_LIGHT_ACTIVE ]</p><p>
Extra_1 = on</p><p>
Extra_2 = on</p><p>
Extra_3 = on</p><p>
Extra_4 = on</p><p>
Extra_5 = off</p><p>
Extra_6 = off</p><p>
Extra_7 = on</p><p>
Extra_8 = on</p><p>
Extra_9 = on</p></blockquote><p></p>
]]></description><guid isPermaLink="false">101</guid><pubDate>Sat, 16 Aug 2014 01:34:11 +0000</pubDate></item><item><title>The Hepster Project (Unlimited Car slots in Game) [UPDATED 8/18/2014]</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/the-hepster-project-unlimited-car-slots-in-game-updated-8182014-r100/</link><description><![CDATA[<p>The Hepster Project is a project I started because I wanted to add my own cars in game without replacing and current cars. Having unlimited car slots instead of having the limited number of cars GTA Lets you. In The Hepster Project rar file their is a few files letting you bypass the game. Letting you add your own cars with custom names and spawning names.</p><p>
</p><p>
<strong><span style="color:#ff0000;">*UPDATE* </span></strong><span style="color:#ff0000;">The Hepster Project does work for </span><abbr title="LCPD First Response">LCPDFR</abbr><span style="color:#ff0000;"> (1.0C Only) </span></p><p>
<span style="color:#ff0000;">- Add car name to AdditionalCopCarModels</span></p><p>
<span style="color:#ff0000;">- Also include the car name to SuspectTransporterModels</span></p><p>
<span style="color:#0000ff;">(Thank you Nick T. for suggesting to try out </span><abbr title="LCPD First Response">LCPDFR</abbr><span style="color:#0000ff;"> 1.0 instead of 0.95)</span></p><p>
</p><p>
What does it let me do:</p><p>
- Add any number of cars to the game</p><p>
- Add custom car names</p><p>
- Custom spawn names</p><p>
</p><p>
Known Bugs:</p><p>
- Doesn't work for <abbr title="Emergency Lighting System">ELS</abbr>.</p><p>
</p><p>
The Hepster Project 1.5 (Coming Soon)</p><p>
- Custom Sound File for the new cars</p><p>
</p><p>
</p><p>
<strong><span style="font-size:14px;">The Hepster Project tutorial</span></strong></p><p>
https://www.youtube.com/watch?v=rXLilr0wUuk&amp;list=UUbwG_RXh7fIyvx8xyPX4SGg</p><p>
</p><p>
<strong><span style="font-size:14px;">How to make the Cars randomly spawn in game and driven by AI's tutorial</span></strong></p><p>
http://youtu.be/QmEyicryELU</p>
]]></description><guid isPermaLink="false">100</guid><pubDate>Thu, 14 Aug 2014 18:43:16 +0000</pubDate></item><item><title>How to turn ANY GTA IV vehicle into a POLICE vehicle! (2 easy simple steps!)</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-turn-any-gta-iv-vehicle-into-a-police-vehicle33-2-easy-simple-steps33-r98/</link><description><![CDATA[

<p>Just watch this video I uploaded about it, it explains the two steps you need to know easily:</p><p>
</p><p>
<a href="https://www.youtube.com/watch?v=oEf0oabEdho" rel="external nofollow">https://www.youtube.com/watch?v=oEf0oabEdho</a></p><p>
</p><p>
Hope this helped all who needed it! And yup, it is just that simple to turn ANY GTA IV Vehicle into a POLICE vehicle, no matter what kind! I tested it and it works, that is why I made the video about it. Enjoy and have fun making some vehicles into police vehicles in-game! Peace! :smile:</p>


]]></description><guid isPermaLink="false">98</guid><pubDate>Wed, 25 Jun 2014 19:19:48 +0000</pubDate></item><item><title>Voice Activated Commands with LCPDFR Tutorial</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/voice-activated-commands-with-lcpdfr-tutorial-r84/</link><description><![CDATA[


<p>VAC stands for Voice activated Commands, in which you can set to respond to voice, so you can actively roleplay your radio calls in game. For example: "10-4 control, en-route" could activate the "yes" option to accept a callout.</p>
<p>
</p>
<p>
Here's the video</p>
<p>
Video:</p>
<p>
</p>
<div class="ipsEmbeddedVideo"><iframe width="459" height="344" src="https://www.youtube.com/embed/6e8r47flVrA?feature=oembed" frameborder="0" loading="lazy"></iframe></div>
<p>
</p>
<p>
Download from: <a href="http://www.dwvac.com/" rel="external nofollow">http://www.dwvac.com/</a></p>
<p>
</p>
<p>
Features:</p>
<ul>
<li>Multiple Activation Phrases to trigger an action.<br>
</li>
<li>You can assign sounds or speech to each action, a sound or phrase will play for success when the command was recognized.<br>
</li>
<li>Built in sound recorder to record your own responses when a command is recognized.<br>
</li>
<li>Each action can have any number of keyboard commands and each keyboard command can send any extended key, characters, key combinations, or mouse button click.<br>
</li>
<li>You can select actions from one profile and export them to an existing profile.<br>
</li>
</ul>
<p></p>
<p>
In game demo by Brandon Moore:</p>
<p>
<a href="https://www.youtube.com/watch?v=wNy2Fz_-XZU" rel="external nofollow">https://www.youtube.com/watch?v=SSObDwtGfII</a></p>


]]></description><guid isPermaLink="false">84</guid><pubDate>Tue, 29 Apr 2014 07:02:48 +0000</pubDate></item><item><title>How to make ELS faster</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-make-els-faster-r83/</link><description><![CDATA[<p>Just follow the pictures_:</p>
]]></description><guid isPermaLink="false">83</guid><pubDate>Mon, 28 Apr 2014 13:27:42 +0000</pubDate></item><item><title>How To Make A Better Traffic Advisor Using ELS V8</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-make-a-better-traffic-advisor-using-els-v8-r81/</link><description><![CDATA[<p>Ok so as you know <abbr title="Emergency Lighting System">ELS</abbr> V8 dosn't have very good patterns to use for a traffic advisor. This tutorial will teach you how to change that.</p><p>
</p><p>
1) Navigate to your GTA IV directory</p><p>
</p><p>
2) Open the "<abbr title="Emergency Lighting System">ELS</abbr>" folder</p><p>
</p><p>
3) Now open the file name "default_config"</p><p>
</p><p>
4) Scroll down until you see "[ SECL ]"</p><p>
</p><p></p><blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><p>[ SECL ]</p><p>
Type = leds</p><p>
DisableAtLstg3 = off</p><p>
ForcePatForLstg = off</p><p>
PatId_Lstg1 = 0</p><p>
PatId_Lstg2 = 2</p><p>
PatId_Lstg3 = 3</p><p>
</p></blockquote><p></p><p>
</p><p>
5) Change "Type" from "leds" to "drct"</p><p>
</p><p></p><blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><p>[ SECL ]</p><p>
Type = drct</p><p>
DisableAtLstg3 = off</p><p>
ForcePatForLstg = off</p><p>
PatId_Lstg1 = 0</p><p>
PatId_Lstg2 = 2</p><p>
PatId_Lstg3 = 3</p><p>
</p></blockquote><p></p><p>
</p><p>
6) Now save the file and start the game!</p><p>
</p><p>
You have now just improved your <abbr title="Emergency Lighting System">ELS</abbr> traffic advisor.</p>
]]></description><guid isPermaLink="false">81</guid><pubDate>Wed, 09 Apr 2014 20:02:21 +0000</pubDate></item><item><title>Fixing Crashes on ELS v7 (R02)</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/fixing-crashes-on-els-v7-r02-r79/</link><description><![CDATA[<p>Hello and welcome to this short tutorial on how to fix <abbr title="Emergency Lighting System">ELS</abbr> v7 (R02) with the standard copy of GTA IV(No EFLS)</p><p>
</p><p>
</p><p>
Step 1: Go into your GTA IV directory and find <abbr title="Emergency Lighting System">ELS</abbr>.ini</p><p>
</p><p>
Step 2: Scroll down until you find Config Settings for Police 3-Police B</p><p>
</p><p>
Step 3: Replace this;</p><p>
 </p><p></p><pre class="ipsCode">
Status = on </pre><p></p><p>
with;</p><p></p><pre class="ipsCode">
Status = off </pre><p></p><p>
Step 4: Save it and exit out</p><p>
</p><p>
Step 5: Launch the game and enjoy.</p>
]]></description><guid isPermaLink="false">79</guid><pubDate>Mon, 24 Feb 2014 05:35:56 +0000</pubDate></item><item><title>[Video] How to install LCPDFR 1.0 with 1.0a Hotfix (auto installer)</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/video-how-to-install-lcpdfr-10-with-10a-hotfix-auto-installer-r74/</link><description><![CDATA[

<p>Just a quick video showing how to download <abbr title="LCPD First Response">LCPDFR</abbr> 1.0 with the 1.0a Hotfix!</p><p>
</p><p>
<a href="http://www.youtube.com/watch?v=qArYSbB-fhY&amp;feature=youtu.be" rel="external nofollow">http://www.youtube.com/watch?v=qArYSbB-fhY&amp;feature=youtu.be</a></p>


]]></description><guid isPermaLink="false">74</guid><pubDate>Mon, 06 Jan 2014 01:17:11 +0000</pubDate></item><item><title>[VID]How to install LCPDFR 1.0 + Hotfix + ELS Config!</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/vidhow-to-install-lcpdfr-10-hotfix-els-config33-r73/</link><description><![CDATA[

<p>Hope you guys found this informative and (kind of) entertaining. I decided to make this video since there wasn't a video on <abbr title="LCPD First Response">LCPDFR</abbr> 1.0 and a custom <abbr title="Emergency Lighting System">ELS</abbr> config or a video on how to install the hotfix, which not many people know how to install. "Eat up, young ones" -hlsavior:</p><p>
</p><p>
</p><p></p><blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><p>
<a href="http://www.youtube.com/watch?v=BaQd473cVn4&amp;feature=youtu.be" rel="external nofollow">http://www.youtube.com/watch?v=BaQd473cVn4&amp;feature=youtu.be</a></p><p>
</p></blockquote><p></p>


]]></description><guid isPermaLink="false">73</guid><pubDate>Sun, 05 Jan 2014 20:20:54 +0000</pubDate></item><item><title>detailed LCPDFR custom computer background</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/detailed-lcpdfr-custom-computer-background-r68/</link><description><![CDATA[
<p>Hey everyone. everyone is asking about how to do it I had crazy problems trying to understand how to do it and I caught it in another area on how to in the comments section so I will break it down in full detail. I especially want  to give thanks and his original credit Jay for being the first to put a tutorial on how to do this but It confused me and I want to thank him and not bashing or putting anyone down thanks.</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
Step 1: pick an image that you want and save it to your desktop or pics where ever you prefer</p>
<p>
Step 2: after you save it rename it from (example: image.jpg or image.png) to <span style="text-decoration:underline;"><strong>PoliceBG</strong></span>  you need to make sure it specifically says this</p>
<p>
Step 3: go to your GTA IV scripts folder open the <abbr title="LCPD First Response">LCPDFR</abbr> folder and paste into there. BTW it will show up as PoliceBG.jpg or .png rename it and take the .jpg or .png out of it. on my computer it will say are you sure click yes close all of it and enjoy. Hope it was as thorough and easy to understand you can PM me if you need further help. thanks</p>
<p>
</p>
<p>
</p>
<p><iframe src="http://www.lcpdfr.com/gallery/image/24284-/?do=embed" frameborder="0" data-embedcontent="" loading="lazy"></iframe></p>
<p>
</p>
<p>
this is my <abbr title="LCPD First Response">LCPDFR</abbr> computer background of the PBSO banner I got off of google images I do not claim original rights or credits to the image</p>
]]></description><guid isPermaLink="false">68</guid><pubDate>Tue, 26 Nov 2013 23:20:57 +0000</pubDate></item><item><title>How to Enable multiple siren tones at once</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-enable-multiple-siren-tones-at-once-r65/</link><description><![CDATA[<p>Hello!! Since this is a new feature in <abbr title="Emergency Lighting System">ELS</abbr> V7 and some people may not know about it, i'm going to show you how to enable multiple siren tones in <abbr title="Emergency Lighting System">ELS</abbr> version 7</p><p>
</p><p>
1) Make sure you have the latest version of GTA and <abbr title="Emergency Lighting System">ELS</abbr> V7</p><p>
</p><p>
2) Go into GTA</p><p>
</p><p>
3) Press and hold "T", then press "H" </p><p>
</p><p>
You should then have multiple siren tones at once!! Hope this helps</p>
]]></description><guid isPermaLink="false">65</guid><pubDate>Sun, 01 Sep 2013 17:32:06 +0000</pubDate></item><item><title>How to make your ELS lights brighter!!</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-make-your-els-lights-brighter3333-r61/</link><description><![CDATA[
<p>Hello!! I'm here to show you how to make your <abbr title="Emergency Lighting System">ELS</abbr> lights brighter, if you are using a ENB that you really like but the <abbr title="Emergency Lighting System">ELS</abbr> lights are not bright, this is the tutorial for you!! (Pictures included if need :))</p>
<p>
</p>
<p>
1) Go to your GTA directory</p>
<p>
</p>
<p>
</p>
<p></p>
<blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><img src="http://i.imgur.com/7p4bpQf.jpg" alt="7p4bpQf.jpg" loading="lazy"></blockquote>
<p></p>
<p>
</p>
<p>
</p>
<p>
2) Go to Common/Data</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p></p>
<blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><img src="http://i.imgur.com/0HtV3cL.jpg" alt="0HtV3cL.jpg" loading="lazy"></blockquote>
<p></p>
<p>
</p>
<p>
</p>
<p>
3) Look for Visualsettings.dat</p>
<p>
</p>
<p>
</p>
<p>
4) once you find it, open it and look for "# other.emmisive.lights"</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p></p>
<blockquote class="ipsStyle_spoiler" data-ipsspoiler=""><img src="http://i.imgur.com/smgUc7s.jpg" alt="smgUc7s.jpg" loading="lazy"></blockquote>
<p></p>
<p>
</p>
<p>
5) Change "car.default.emissive.on" to 100,</p>
<p>
</p>
<p>
6) When you get in-game, if it's too bright, lower the number, if it's not bright enough, make it a higher number</p>
<p>
</p>
<p>
</p>
<p>
Any questions or comments? Post them below or PM me!!</p>
]]></description><guid isPermaLink="false">61</guid><pubDate>Mon, 29 Jul 2013 20:03:56 +0000</pubDate></item><item><title>How to make GTA IV run faster!!</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-make-gta-iv-run-faster3333-r60/</link><description><![CDATA[<p>Hello!! Ever wonder how you could get your game to run faster with ENB's? There are multiple ways of making GTA IV run faster,i'm going to list the the most common ways to make GTA IV run faster</p><p>
</p><p>
1) Use a program called Razor Game Booster, what Game Booster does is look for programs that you are not using that it could close to make your game run faster.</p><p>
</p><p>
2) (For AVG PC TuneUp users ONLY) Right click AVG PC TuneUP and you should see "Economy Mode", "Standard Mode", and "Turbo Mode" Click Turbo Mode and wait for Turbo Mode to finish switching to, your computer will go to a Windows Basic theme, and it should disable things that it feels your computer doesn't need, you should get a better framerate after that!!</p><p>
</p><p>
3) Disable your computer security system</p><p>
</p><p>
4)Close programs you are not using!</p><p>
</p><p>
Questions or comments, please post them below or PM me!</p>
]]></description><guid isPermaLink="false">60</guid><pubDate>Sun, 28 Jul 2013 21:01:27 +0000</pubDate></item><item><title>How to get people to pull over when you don't have your siren on</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-get-people-to-pull-over-when-you-don39t-have-your-siren-on-r59/</link><description><![CDATA[


<p>Hello! Ever wonder how you can do a realistic Code 2 response? Well this tutorial will let you do that!!!</p>
<p>
</p>
<p>
</p>
<p>
1) Make sure you have the latest patch of GTA IV (1.0.7.0) and the latest <abbr title="LCPD First Response">LCPDFR</abbr> version (.95 RC2 R2)</p>
<p>
</p>
<p>
2) Get in GTA IV</p>
<p>
</p>
<p>
3) Start <abbr title="LCPD First Response">LCPDFR</abbr> and wait for a call that would make you respond code 2</p>
<p>
</p>
<p>
4) Turn on <abbr title="Emergency Lighting System">ELS</abbr> and respond, but hit Numpad "/" instead of your siren</p>
<p>
</p>
<p>
5) Cars should pull over (Use airhorn or Manual Siren if needed!)</p>
<p>
</p>
<p>
6) Enjoy your Code 2 response!!</p>
<p>
</p>
<p>
Definitely works on <abbr title="Emergency Lighting System">ELS</abbr> V6, most likely works on <abbr title="Emergency Lighting System">ELS</abbr> V7</p>
<p>
</p>
<p>
</p>
<p>
LINKS:</p>
<p>
</p>
<p>
<abbr title="Emergency Lighting System">ELS</abbr> V7: <iframe src="http://www.lcpdfr.com/files/file/2985-emergency-lighting-system/?do=embed" frameborder="0" data-embedcontent="" loading="lazy"></iframe></p>
<p>
</p>
<p>
<abbr title="LCPD First Response">LCPDFR</abbr> .95 RC2 R2: <iframe src="http://www.lcpdfr.com/files/file/84-lcpd-first-response/?do=embed" frameborder="0" data-embedcontent="" loading="lazy"></iframe></p>
<p>
</p>
<p>
Latest GTA IV patch update: <a href="http://support.rockstargames.com/entries/484496-Grand-Theft-Auto-IV-Patch-7-Title-Update-v-1-0-7-0-English-1-0-6-1-Russian-1-0-5-2-Japanese-" rel="external nofollow">http://support.rockstargames.com/entries/484496-Grand-Theft-Auto-IV-Patch-7-Title-Update-v-1-0-7-0-English-1-0-6-1-Russian-1-0-5-2-Japanese-</a> (Choose language)</p>
<p>
</p>
<p>
</p>
<p>
Any questions? Comment on this thread, or PM me!</p>


]]></description><guid isPermaLink="false">59</guid><pubDate>Sun, 28 Jul 2013 20:38:34 +0000</pubDate></item><item><title>How to install LCPDFR - Error Help and Links</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-install-lcpdfr-error-help-and-links-r58/</link><description><![CDATA[

<p>Hope this helps!</p><p>
<a href="http://www.youtube.com/watch?v=nkm1u20fygI" rel="external nofollow">http://www.youtube.com/watch?v=nkm1u20fygI</a></p>


]]></description><guid isPermaLink="false">58</guid><pubDate>Thu, 25 Jul 2013 20:45:16 +0000</pubDate></item><item><title>Gtaiv ELS 7.0 R2 keys Tutural</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/gtaiv-els-70-r2-keys-tutural-r47/</link><description><![CDATA[

<p><span style="background-color:rgb(251,253,254);"><span style="font-size:12px;"><span style="font-family:tahoma;"><span style="color:rgb(90,90,90);">a quick video to help thos having problems with the keys in els7</span></span></span></span></p><p>
<a href="http://www.youtube.com/watch?v=sy1jUUCcPvs" rel="external nofollow">http://www.youtube.com/watch?v=sy1jUUCcPvs</a></p><p>
</p><p>
<span style="background-color:rgb(251,253,254);"><span style="font-size:12px;"><span style="font-family:tahoma;"><span style="color:rgb(90,90,90);">this is my youtube channle like my video comment and sub if you really like it and wanna see more tuturals for gtaiv</span></span></span></span></p>


]]></description><guid isPermaLink="false">47</guid><pubDate>Sun, 12 May 2013 02:37:29 +0000</pubDate></item><item><title>How To: Install ELS V7 [Video Tutorial]</title><link>https://www.lcpdfr.com/tutorials/index.action/grand-theft-auto-iv/script-data-file-modification-tutorials/how-to-install-els-v7-video-tutorial-r46/</link><description><![CDATA[
<p></p>
<p></p>
<div style="text-align:center;">
<p>Tutorial video on how to get <abbr title="Emergency Lighting System">ELS</abbr> V7 to work in your Grand Theft Auto IV.</p>
<p>
Remember to read the "<abbr title="Emergency Lighting System">ELS</abbr><strong> USER GUIDE.pdf</strong>" It will give you alot of information that you will need.</p>
<p>
</p>
<p>
If the light's don't show up,</p>
<p>
<em>1. Make sure you have your Trainer keys disabled (if you are using a Trainer, SNT for example). If you don't know how to disable Trainer keys go to Options - Enable/Disable Trainer Keys</em></p>
<p>
<em>2. Make sure you have a </em><abbr title="Emergency Lighting System">ELS</abbr><em> V6 or </em><abbr title="Emergency Lighting System">ELS</abbr><em> V7 enabled vehicle that you are using</em></p>
<p>
<em>3. Make sure that you have read the "</em><abbr title="Emergency Lighting System">ELS</abbr><strong><em> USER GUIDE.pdf</em></strong><em>"</em></p>
</div>
<p></p>
<p>
</p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;"><div class="ipsEmbeddedVideo"><iframe width="480" height="270" src="http://www.youtube.com/embed/n1DQZUAxKbI?feature=oembed" frameborder="0" loading="lazy"></iframe></div></div>
<p></p>
<p>
</p>
<p>
</p>
<p></p>
<div style="text-align:center;"><p><strong>IF YOU HAVE PROBLEMS WITH </strong><abbr title="Emergency Lighting System">ELS</abbr><strong> V7 PLEASE READ THIS TOPIC: </strong></p></div>
<p></p>
<p>
</p>
<p></p>
<div style="text-align:center;">
<p></p>
<iframe src="http://www.lcpdfr.com/topic/17105-els-v7-setup-guide/?do=embed" frameborder="0" data-embedcontent="" loading="lazy"></iframe>
</div>
<p></p>
]]></description><guid isPermaLink="false">46</guid><pubDate>Wed, 08 May 2013 23:39:05 +0000</pubDate></item></channel></rss>
