<?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[Las Venturas Playground - Technology]]></title>
		<link>https://forum.sa-mp.nl/</link>
		<description><![CDATA[Las Venturas Playground - https://forum.sa-mp.nl]]></description>
		<pubDate>Mon, 06 Apr 2026 17:07:42 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Can you help me?]]></title>
			<link>https://forum.sa-mp.nl/thread-35411.html</link>
			<pubDate>Mon, 05 Oct 2020 11:57:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19531">Hellboy</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-35411.html</guid>
			<description><![CDATA[Hello!<br />
I am looking for a tool called In-Box which is used to unlock Iphones but I can't find the original app online,if any of you knows how to get it or even knows any way to unlock icloud it would help me a lot.]]></description>
			<content:encoded><![CDATA[Hello!<br />
I am looking for a tool called In-Box which is used to unlock Iphones but I can't find the original app online,if any of you knows how to get it or even knows any way to unlock icloud it would help me a lot.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Selfmade mousefix.asi]]></title>
			<link>https://forum.sa-mp.nl/thread-35384.html</link>
			<pubDate>Sat, 29 Aug 2020 11:39:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=18926">[Ds]PwN3R_B0T</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-35384.html</guid>
			<description><![CDATA[Hey <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /><br />
<br />
Long time ago when I started learning C++, I created a sensitivity-fix for SA-MP.<br />
Even longer ago I checked out many sensitivity-fixes and came across the sens-fix which most people use here - the one where you also have an .ini file to edit the global, sniper and aiming sensitivity). I tested it myself cause so many people claimed that it works - but in fact <span style="color: #e82a1f;" class="mycode_color">IT DOES NOT WORK! </span><span style="color: #000000;" class="mycode_color">The x and y axis will NEVER be the same with all those fixes I found - all you can do with this is change the sensitivity so much until it feels better, but in reality it never is equal. Although it is great to change the sensitivity precisely.</span><span style="color: #c10300;" class="mycode_color"> </span><br />
<br />
<span style="color: #000000;" class="mycode_color">There is only one fix around which is working, but it only works with Cleo and since with SAMPCAC people can get kicked for using Cleo, it is better to use the variation I created.</span><br />
<br />
<br />
<span style="color: #000000;" class="mycode_color">Since so many people kept asking me about it, here it is! <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /></span><br />
<span style="color: #000000;" class="mycode_color">You can use this and the x and y axis will always be equal - no matter if you change your sensitivity ingame or with another mod or plugin!</span><br />
<br />
<span style="color: #000000;" class="mycode_color">I called it 'mousefix.asi' so that this fix can be combined with the 'sensfix.asi' to change the sensitivity very accurately (since using 1 bar ingame might be too less and 2 bars are too high already).</span><br />
<br />
<span style="color: #000000;" class="mycode_color">Sourcecode (in case someone wants to compile it himself):</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include &lt;Windows.h&gt;<br />
<br />
DWORD WINAPI ThreadProc(<br />
  _In_ LPVOID lpParameter<br />
)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(10000);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;float&amp; fMouseAccelVertical = *(float *)0xB6EC18;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float&amp; fMouseAccelHorzntl = *(float *)0xB6EC1C;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;for(;;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fMouseAccelVertical = fMouseAccelHorzntl;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sleep(5);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return 0;<br />
}<br />
<br />
BOOL WINAPI DllMain(<br />
  _In_ HINSTANCE hinstDLL,<br />
  _In_ DWORD     fdwReason,<br />
  _In_ LPVOID    lpvReserved<br />
)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(fdwReason == DLL_PROCESS_ATTACH)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)ThreadProc, NULL, NULL, NULL);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return 1;<br />
}</code></div></div><br />
<br />
Link to download the compiled asi: <a href="https://files.fm/u/tqs27992" target="_blank" rel="noopener" class="mycode_url">Click me</a>]]></description>
			<content:encoded><![CDATA[Hey <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /><br />
<br />
Long time ago when I started learning C++, I created a sensitivity-fix for SA-MP.<br />
Even longer ago I checked out many sensitivity-fixes and came across the sens-fix which most people use here - the one where you also have an .ini file to edit the global, sniper and aiming sensitivity). I tested it myself cause so many people claimed that it works - but in fact <span style="color: #e82a1f;" class="mycode_color">IT DOES NOT WORK! </span><span style="color: #000000;" class="mycode_color">The x and y axis will NEVER be the same with all those fixes I found - all you can do with this is change the sensitivity so much until it feels better, but in reality it never is equal. Although it is great to change the sensitivity precisely.</span><span style="color: #c10300;" class="mycode_color"> </span><br />
<br />
<span style="color: #000000;" class="mycode_color">There is only one fix around which is working, but it only works with Cleo and since with SAMPCAC people can get kicked for using Cleo, it is better to use the variation I created.</span><br />
<br />
<br />
<span style="color: #000000;" class="mycode_color">Since so many people kept asking me about it, here it is! <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /></span><br />
<span style="color: #000000;" class="mycode_color">You can use this and the x and y axis will always be equal - no matter if you change your sensitivity ingame or with another mod or plugin!</span><br />
<br />
<span style="color: #000000;" class="mycode_color">I called it 'mousefix.asi' so that this fix can be combined with the 'sensfix.asi' to change the sensitivity very accurately (since using 1 bar ingame might be too less and 2 bars are too high already).</span><br />
<br />
<span style="color: #000000;" class="mycode_color">Sourcecode (in case someone wants to compile it himself):</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include &lt;Windows.h&gt;<br />
<br />
DWORD WINAPI ThreadProc(<br />
  _In_ LPVOID lpParameter<br />
)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(10000);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;float&amp; fMouseAccelVertical = *(float *)0xB6EC18;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float&amp; fMouseAccelHorzntl = *(float *)0xB6EC1C;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;for(;;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fMouseAccelVertical = fMouseAccelHorzntl;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sleep(5);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return 0;<br />
}<br />
<br />
BOOL WINAPI DllMain(<br />
  _In_ HINSTANCE hinstDLL,<br />
  _In_ DWORD     fdwReason,<br />
  _In_ LPVOID    lpvReserved<br />
)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(fdwReason == DLL_PROCESS_ATTACH)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)ThreadProc, NULL, NULL, NULL);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return 1;<br />
}</code></div></div><br />
<br />
Link to download the compiled asi: <a href="https://files.fm/u/tqs27992" target="_blank" rel="noopener" class="mycode_url">Click me</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[COM surrogate has stopped working]]></title>
			<link>https://forum.sa-mp.nl/thread-35040.html</link>
			<pubDate>Thu, 25 Jul 2019 15:35:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19838">brittany</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-35040.html</guid>
			<description><![CDATA[<span style="font-family: roboto;" class="mycode_font">I experience on my new laptop getting the message in the headline in a very short time when I have pictures open in the Windows Viewer. It often happens after 2-3 jumps between pictures. </span><br />
<br />
<br />
<span style="font-family: roboto;" class="mycode_font">I've been looking for a solution, but can't find anything ... </span><br />
<br />
<span style="font-family: roboto;" class="mycode_font">Are there any clever heads in here who can and will help to fix this rather annoying mistake?</span>]]></description>
			<content:encoded><![CDATA[<span style="font-family: roboto;" class="mycode_font">I experience on my new laptop getting the message in the headline in a very short time when I have pictures open in the Windows Viewer. It often happens after 2-3 jumps between pictures. </span><br />
<br />
<br />
<span style="font-family: roboto;" class="mycode_font">I've been looking for a solution, but can't find anything ... </span><br />
<br />
<span style="font-family: roboto;" class="mycode_font">Are there any clever heads in here who can and will help to fix this rather annoying mistake?</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Laptop CPU temps]]></title>
			<link>https://forum.sa-mp.nl/thread-34752.html</link>
			<pubDate>Sun, 05 Aug 2018 19:08:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=7573">Beaner</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-34752.html</guid>
			<description><![CDATA[Do any of you own gaming laptops with 6th or 7th gen i7 processors? If so, what kind of games do you play and what are your average idle &amp; gaming temperatures? I realized my laptop runs quite hot (90-95 degrees celsius) while gaming, and was wondering if I require an additional cooling pad.]]></description>
			<content:encoded><![CDATA[Do any of you own gaming laptops with 6th or 7th gen i7 processors? If so, what kind of games do you play and what are your average idle &amp; gaming temperatures? I realized my laptop runs quite hot (90-95 degrees celsius) while gaming, and was wondering if I require an additional cooling pad.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[help]]></title>
			<link>https://forum.sa-mp.nl/thread-34664.html</link>
			<pubDate>Sun, 27 May 2018 17:23:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19020">Sand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-34664.html</guid>
			<description><![CDATA[hey I used to get 100+ fps on max settings before a while then I installed a Russian mod for SA-MP and now my pc is full of Viruses and I barely get 70 fps on lowest settings :<img src="https://forum.sa-mp.nl/images/smilies/got/nosmile.gif" alt=":/" title=":/" class="smilie smilie_55" />  so what should I do to fix it? ( OTHER THAN RESETING MY PC)]]></description>
			<content:encoded><![CDATA[hey I used to get 100+ fps on max settings before a while then I installed a Russian mod for SA-MP and now my pc is full of Viruses and I barely get 70 fps on lowest settings :<img src="https://forum.sa-mp.nl/images/smilies/got/nosmile.gif" alt=":/" title=":/" class="smilie smilie_55" />  so what should I do to fix it? ( OTHER THAN RESETING MY PC)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[MEDIA] REVIEW - My lazy ass laptop]]></title>
			<link>https://forum.sa-mp.nl/thread-34439.html</link>
			<pubDate>Fri, 12 Jan 2018 11:26:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19628">Nazuna</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-34439.html</guid>
			<description><![CDATA[OK. I decided to share my laptop...<br />
<br />
<br />
<br />
Before connecting to TV...<br />
<img src="https://i.imgur.com/07ok3tI.jpg" alt="[Image: 07ok3tI.jpg]" class="mycode_img" /><br />
<br />
Connected to TV...<br />
<img src="https://i.imgur.com/qFzjeeY.jpg" alt="[Image: qFzjeeY.jpg]" class="mycode_img" /><br />
<br />
<img src="https://i.imgur.com/bByLOlH.jpg" alt="[Image: bByLOlH.jpg]" class="mycode_img" /><br />
<br />
<br />
<br />
Specs info...<br />
1.<br />
<img src="https://i.imgur.com/SZKuM3U.png" alt="[Image: SZKuM3U.png]" class="mycode_img" /><br />
<br />
2.<br />
<img src="https://i.imgur.com/kxIeLez.png" alt="[Image: kxIeLez.png]" class="mycode_img" /><br />
<br />
3.<br />
<img src="https://i.imgur.com/CT2ZSEm.png" alt="[Image: CT2ZSEm.png]" class="mycode_img" /><br />
<br />
4.<br />
<img src="https://i.imgur.com/bN4BdGE.png" alt="[Image: bN4BdGE.png]" class="mycode_img" /><br />
<br />
5.<br />
<img src="https://i.imgur.com/MXacLKc.png" alt="[Image: MXacLKc.png]" class="mycode_img" /><br />
<br />
5.2.<br />
<img src="https://i.imgur.com/Xcv00ng.png" alt="[Image: Xcv00ng.png]" class="mycode_img" /><br />
This view is disabled for this laptop's hardware.<br />
<br />
6.<br />
<img src="https://i.imgur.com/9J8KpjH.png" alt="[Image: 9J8KpjH.png]" class="mycode_img" /><br />
This spec's memory has 128 MB.<br />
<br />
6.2.<br />
<img src="https://i.imgur.com/oNJMbjY.png" alt="[Image: oNJMbjY.png]" class="mycode_img" /><br />
This spec's memory has 2048 MB.<br />
<br />
7.<br />
<img src="https://i.imgur.com/IPfEo7w.png" alt="[Image: IPfEo7w.png]" class="mycode_img" /><br />
CPU test (Normal).<br />
2: Unfortunately I currently don't have the GPU ones. Sorry.<br />
<br />
7.2.<br />
<img src="https://i.imgur.com/XX9AxLt.png" alt="[Image: XX9AxLt.png]" class="mycode_img" /><br />
CPU test (4 threads).<br />
<br />
7.3.<br />
<img src="https://i.imgur.com/Fvxpo0i.png" alt="[Image: Fvxpo0i.png]" class="mycode_img" /><br />
CPU test (2 threads).<br />
<br />
8.<br />
<img src="https://i.imgur.com/GgbwK1H.png" alt="[Image: GgbwK1H.png]" class="mycode_img" /><br />
NO comment.<br />
<br />
<br />
<br />
In game screenshots (with 1080p).<br />
<br />
1. ENB Off.<br />
<img src="https://i.imgur.com/L36Zv48.png" alt="[Image: L36Zv48.png]" class="mycode_img" /><br />
<br />
1. ENB On.<br />
<img src="https://i.imgur.com/RP2HvIK.png" alt="[Image: RP2HvIK.png]" class="mycode_img" /><br />
<br />
2. ENB Off (time changed)<br />
<img src="https://i.imgur.com/VRzd9B2.png" alt="[Image: VRzd9B2.png]" class="mycode_img" /><br />
<br />
2. ENB On (time changed)<br />
<img src="https://i.imgur.com/rMVdZJe.png" alt="[Image: rMVdZJe.png]" class="mycode_img" /><br />
<br />
2.2. ENB On (time passed + large view)<br />
<img src="https://i.imgur.com/ZgwSUi6.png" alt="[Image: ZgwSUi6.png]" class="mycode_img" /><br />
<br />
3. ENB On (time passed + another large view)<br />
<img src="https://i.imgur.com/OXicfdD.png" alt="[Image: OXicfdD.png]" class="mycode_img" /><br />
<br />
<br />
<br />
Re: I no longer use additional graphic mods or other environmental mods such as for example: SA Lod Lights, Sky GFX, Sweet FX... I unfortunately don't have Color Mod due to Night Vision graphics gets fully green...<br />
<br />
<br />
<br />
Old one<br />
<img src="https://i.imgur.com/emNDUQK.png" alt="[Image: emNDUQK.png]" class="mycode_img" /><br />
<br />
It took some time to play GTA<img src="https://forum.sa-mp.nl/images/smilies/got/huh.gif" alt=":S" title=":S" class="smilie smilie_69" />A and SA-MP again thanks to my friends' requests...<br />
<br />
I hope you love how she's working... :3<br />
<br />
<br />
<br />
Recent Screenshots<br />
<br />
1. (with ENB Off)<br />
<img src="https://i.imgur.com/utMSpcA.png" alt="[Image: utMSpcA.png]" class="mycode_img" /><br />
<br />
<br />
2. (also with Frame Limiter Off + ENB Off)<br />
<img src="https://i.imgur.com/63nImqv.png" alt="[Image: 63nImqv.png]" class="mycode_img" /><br />
<br />
<br />
<br />
She's working hard as you can see...<br />
<br />
If you like it then give me an answer... hope you like it... :3]]></description>
			<content:encoded><![CDATA[OK. I decided to share my laptop...<br />
<br />
<br />
<br />
Before connecting to TV...<br />
<img src="https://i.imgur.com/07ok3tI.jpg" alt="[Image: 07ok3tI.jpg]" class="mycode_img" /><br />
<br />
Connected to TV...<br />
<img src="https://i.imgur.com/qFzjeeY.jpg" alt="[Image: qFzjeeY.jpg]" class="mycode_img" /><br />
<br />
<img src="https://i.imgur.com/bByLOlH.jpg" alt="[Image: bByLOlH.jpg]" class="mycode_img" /><br />
<br />
<br />
<br />
Specs info...<br />
1.<br />
<img src="https://i.imgur.com/SZKuM3U.png" alt="[Image: SZKuM3U.png]" class="mycode_img" /><br />
<br />
2.<br />
<img src="https://i.imgur.com/kxIeLez.png" alt="[Image: kxIeLez.png]" class="mycode_img" /><br />
<br />
3.<br />
<img src="https://i.imgur.com/CT2ZSEm.png" alt="[Image: CT2ZSEm.png]" class="mycode_img" /><br />
<br />
4.<br />
<img src="https://i.imgur.com/bN4BdGE.png" alt="[Image: bN4BdGE.png]" class="mycode_img" /><br />
<br />
5.<br />
<img src="https://i.imgur.com/MXacLKc.png" alt="[Image: MXacLKc.png]" class="mycode_img" /><br />
<br />
5.2.<br />
<img src="https://i.imgur.com/Xcv00ng.png" alt="[Image: Xcv00ng.png]" class="mycode_img" /><br />
This view is disabled for this laptop's hardware.<br />
<br />
6.<br />
<img src="https://i.imgur.com/9J8KpjH.png" alt="[Image: 9J8KpjH.png]" class="mycode_img" /><br />
This spec's memory has 128 MB.<br />
<br />
6.2.<br />
<img src="https://i.imgur.com/oNJMbjY.png" alt="[Image: oNJMbjY.png]" class="mycode_img" /><br />
This spec's memory has 2048 MB.<br />
<br />
7.<br />
<img src="https://i.imgur.com/IPfEo7w.png" alt="[Image: IPfEo7w.png]" class="mycode_img" /><br />
CPU test (Normal).<br />
2: Unfortunately I currently don't have the GPU ones. Sorry.<br />
<br />
7.2.<br />
<img src="https://i.imgur.com/XX9AxLt.png" alt="[Image: XX9AxLt.png]" class="mycode_img" /><br />
CPU test (4 threads).<br />
<br />
7.3.<br />
<img src="https://i.imgur.com/Fvxpo0i.png" alt="[Image: Fvxpo0i.png]" class="mycode_img" /><br />
CPU test (2 threads).<br />
<br />
8.<br />
<img src="https://i.imgur.com/GgbwK1H.png" alt="[Image: GgbwK1H.png]" class="mycode_img" /><br />
NO comment.<br />
<br />
<br />
<br />
In game screenshots (with 1080p).<br />
<br />
1. ENB Off.<br />
<img src="https://i.imgur.com/L36Zv48.png" alt="[Image: L36Zv48.png]" class="mycode_img" /><br />
<br />
1. ENB On.<br />
<img src="https://i.imgur.com/RP2HvIK.png" alt="[Image: RP2HvIK.png]" class="mycode_img" /><br />
<br />
2. ENB Off (time changed)<br />
<img src="https://i.imgur.com/VRzd9B2.png" alt="[Image: VRzd9B2.png]" class="mycode_img" /><br />
<br />
2. ENB On (time changed)<br />
<img src="https://i.imgur.com/rMVdZJe.png" alt="[Image: rMVdZJe.png]" class="mycode_img" /><br />
<br />
2.2. ENB On (time passed + large view)<br />
<img src="https://i.imgur.com/ZgwSUi6.png" alt="[Image: ZgwSUi6.png]" class="mycode_img" /><br />
<br />
3. ENB On (time passed + another large view)<br />
<img src="https://i.imgur.com/OXicfdD.png" alt="[Image: OXicfdD.png]" class="mycode_img" /><br />
<br />
<br />
<br />
Re: I no longer use additional graphic mods or other environmental mods such as for example: SA Lod Lights, Sky GFX, Sweet FX... I unfortunately don't have Color Mod due to Night Vision graphics gets fully green...<br />
<br />
<br />
<br />
Old one<br />
<img src="https://i.imgur.com/emNDUQK.png" alt="[Image: emNDUQK.png]" class="mycode_img" /><br />
<br />
It took some time to play GTA<img src="https://forum.sa-mp.nl/images/smilies/got/huh.gif" alt=":S" title=":S" class="smilie smilie_69" />A and SA-MP again thanks to my friends' requests...<br />
<br />
I hope you love how she's working... :3<br />
<br />
<br />
<br />
Recent Screenshots<br />
<br />
1. (with ENB Off)<br />
<img src="https://i.imgur.com/utMSpcA.png" alt="[Image: utMSpcA.png]" class="mycode_img" /><br />
<br />
<br />
2. (also with Frame Limiter Off + ENB Off)<br />
<img src="https://i.imgur.com/63nImqv.png" alt="[Image: 63nImqv.png]" class="mycode_img" /><br />
<br />
<br />
<br />
She's working hard as you can see...<br />
<br />
If you like it then give me an answer... hope you like it... :3]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Twitch Uploader Open Beta]]></title>
			<link>https://forum.sa-mp.nl/thread-34249.html</link>
			<pubDate>Wed, 27 Sep 2017 19:00:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19543">Dan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-34249.html</guid>
			<description><![CDATA[We all know <span style="color: #663366;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Twitch</span></span> because of its  Livestreaming Popularity.. Now Twitch has decided to open a platform for pre made Videos, Standing as a competition for YT &amp; similar sites..I uploaded this <a href="https://www.twitch.tv/videos/177904298" target="_blank" rel="noopener" class="mycode_url">Video</a><span style="font-weight: bold;" class="mycode_b"> </span>using <span style="color: #6633cc;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Twitch Uploader Open Beta</span></span>.. as now Twitch allows to Upload pre made videos.. As far as i know it works on Amazon Clouds thus giving smooth upload.. Looks like uploading speed is locked &amp; is less in comparison to YT. Regarding its Beta stage it works fine and stable..Probably worth a try....<br />
<hr class="mycode_hr" />
link - <a href="https://www.twitch.tv/videos/177904298" target="_blank" rel="noopener" class="mycode_url">https://www.twitch.tv/videos/177904298</a><br />
<span style="color: #ff3333;" class="mycode_color">*</span>PS- There is some issue with Video embedders except YT one..   <br />
<br />
<div style="text-align: center;" class="mycode_align"><img src="https://image.ibb.co/gau8B5/saveastwitch.png" alt="[Image: saveastwitch.png]" class="mycode_img" /></div>]]></description>
			<content:encoded><![CDATA[We all know <span style="color: #663366;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Twitch</span></span> because of its  Livestreaming Popularity.. Now Twitch has decided to open a platform for pre made Videos, Standing as a competition for YT &amp; similar sites..I uploaded this <a href="https://www.twitch.tv/videos/177904298" target="_blank" rel="noopener" class="mycode_url">Video</a><span style="font-weight: bold;" class="mycode_b"> </span>using <span style="color: #6633cc;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Twitch Uploader Open Beta</span></span>.. as now Twitch allows to Upload pre made videos.. As far as i know it works on Amazon Clouds thus giving smooth upload.. Looks like uploading speed is locked &amp; is less in comparison to YT. Regarding its Beta stage it works fine and stable..Probably worth a try....<br />
<hr class="mycode_hr" />
link - <a href="https://www.twitch.tv/videos/177904298" target="_blank" rel="noopener" class="mycode_url">https://www.twitch.tv/videos/177904298</a><br />
<span style="color: #ff3333;" class="mycode_color">*</span>PS- There is some issue with Video embedders except YT one..   <br />
<br />
<div style="text-align: center;" class="mycode_align"><img src="https://image.ibb.co/gau8B5/saveastwitch.png" alt="[Image: saveastwitch.png]" class="mycode_img" /></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Android Authority]]></title>
			<link>https://forum.sa-mp.nl/thread-34205.html</link>
			<pubDate>Sun, 10 Sep 2017 12:53:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19543">Dan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-34205.html</guid>
			<description><![CDATA[I don't use any antivirus for androids and i believe there is no necessity for it, do u guys prefer using 1? tell me in comments if u have any experience using optimization tools for Android devices or any issue related with them <img src="https://forum.sa-mp.nl/images/smilies/got/kwijl.gif" alt=":9~" title=":9~" class="smilie smilie_38" />]]></description>
			<content:encoded><![CDATA[I don't use any antivirus for androids and i believe there is no necessity for it, do u guys prefer using 1? tell me in comments if u have any experience using optimization tools for Android devices or any issue related with them <img src="https://forum.sa-mp.nl/images/smilies/got/kwijl.gif" alt=":9~" title=":9~" class="smilie smilie_38" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to Put Signature on your profile?]]></title>
			<link>https://forum.sa-mp.nl/thread-33941.html</link>
			<pubDate>Sat, 20 May 2017 13:06:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19427">Babaji</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33941.html</guid>
			<description><![CDATA[How to Put Signature on your profile?<br />
Guys If Any Know to put Please Reply me As Soon As possible....]]></description>
			<content:encoded><![CDATA[How to Put Signature on your profile?<br />
Guys If Any Know to put Please Reply me As Soon As possible....]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Recovery]]></title>
			<link>https://forum.sa-mp.nl/thread-33555.html</link>
			<pubDate>Sun, 23 Oct 2016 13:38:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19026">Yassine</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33555.html</guid>
			<description><![CDATA[Hello Guys !! <img src="https://forum.sa-mp.nl/images/smilies/got/bye.gif" alt=":w" title=":w" class="smilie smilie_47" /> <br />
<br />
Please there a way for recovery the files from a HDD ?? <img src="https://forum.sa-mp.nl/images/smilies/got/confused.gif" alt=":?" title=":?" class="smilie smilie_42" /> <br />
<br />
Because by Mistake i deleted all my files from THE System HDD and those files are very important <img src="https://forum.sa-mp.nl/images/smilies/got/sadley.gif" alt=";(" title=";(" class="smilie smilie_33" /> <br />
<br />
there a way ?? <img src="https://forum.sa-mp.nl/images/smilies/got/shutup.gif" alt=":X" title=":X" class="smilie smilie_41" /> <br />
<br />
Please i need help <img src="https://forum.sa-mp.nl/images/smilies/got/nosmile.gif" alt=":/" title=":/" class="smilie smilie_55" /><br />
<br />
Have a nice day <img src="https://forum.sa-mp.nl/images/smilies/got/biggrin.gif" alt=":D" title=":D" class="smilie smilie_27" /> <br />
<br />
Yassine <img src="https://forum.sa-mp.nl/images/smilies/got/hypocrite.gif" alt="O-)" title="O-)" class="smilie smilie_44" />]]></description>
			<content:encoded><![CDATA[Hello Guys !! <img src="https://forum.sa-mp.nl/images/smilies/got/bye.gif" alt=":w" title=":w" class="smilie smilie_47" /> <br />
<br />
Please there a way for recovery the files from a HDD ?? <img src="https://forum.sa-mp.nl/images/smilies/got/confused.gif" alt=":?" title=":?" class="smilie smilie_42" /> <br />
<br />
Because by Mistake i deleted all my files from THE System HDD and those files are very important <img src="https://forum.sa-mp.nl/images/smilies/got/sadley.gif" alt=";(" title=";(" class="smilie smilie_33" /> <br />
<br />
there a way ?? <img src="https://forum.sa-mp.nl/images/smilies/got/shutup.gif" alt=":X" title=":X" class="smilie smilie_41" /> <br />
<br />
Please i need help <img src="https://forum.sa-mp.nl/images/smilies/got/nosmile.gif" alt=":/" title=":/" class="smilie smilie_55" /><br />
<br />
Have a nice day <img src="https://forum.sa-mp.nl/images/smilies/got/biggrin.gif" alt=":D" title=":D" class="smilie smilie_27" /> <br />
<br />
Yassine <img src="https://forum.sa-mp.nl/images/smilies/got/hypocrite.gif" alt="O-)" title="O-)" class="smilie smilie_44" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Fix or Buy?]]></title>
			<link>https://forum.sa-mp.nl/thread-33342.html</link>
			<pubDate>Thu, 25 Aug 2016 18:58:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19173">Insanity</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33342.html</guid>
			<description><![CDATA[<span style="color: #707070;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Arial, Helvetica, sans-serif;" class="mycode_font">The right speaker of my Logitech S220 sound system is not working anymore.The repair might cost 10 euros,but for 30-40 euros i would buy new sound system.Should I get it fixed or buying new ones?</span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #707070;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Arial, Helvetica, sans-serif;" class="mycode_font">The right speaker of my Logitech S220 sound system is not working anymore.The repair might cost 10 euros,but for 30-40 euros i would buy new sound system.Should I get it fixed or buying new ones?</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Windows 10 Anniversary Update]]></title>
			<link>https://forum.sa-mp.nl/thread-33275.html</link>
			<pubDate>Wed, 03 Aug 2016 07:35:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=15202">George</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33275.html</guid>
			<description><![CDATA[Dubbed as the most significant update to Windows 10 since its initial release just over a year ago - the update released yesterday - 03/08/2016 - known as the "Anniversary Update" is here. Figured it'd be interesting to see what others make of the update, and any experiences thus far.<br />
<br />
Couple things I noticed after updating yesterday evening:<br />
<ul class="mycode_list"><li>A notice appeared upon boot informing me that my DisplayLink software had been removed/disabled due to compatibility issues. I did, however, find this article: <a href="http://support.displaylink.com/knowledgebase/articles/525125-displaylink-and-windows-10" target="_blank" rel="noopener" class="mycode_url">http://support.displaylink.com/knowledge...windows-10</a><br />
<br />
</li>
<li>Several stock applications that I had previously removed from my task bar have now re-appeared. These include Microsoft Edge, and Windows Store. Personally I have no interest in either - I've unpinned them once more.<br />
<br />
</li>
<li>My default web browser was changed from Chrome to Microsoft Edge, and attempting to change it back via the Windows Settings interface yields no joy. Edge seems to be stuck as my default browser. No error messages or anything - it just doesn't change. <br />
</li>
</ul>
<ul class="mycode_list"><li>gta:sa now fails to launch - it worked just fine before the update - screenshot: <a href="http://i.imgur.com/Ql07f5a.png" target="_blank" rel="noopener" class="mycode_url">http://i.imgur.com/Ql07f5a.png</a><br />
</li>
</ul>
<ul class="mycode_list"><li>Windows Defender has re-enabled itself after I had previously disabled it in favour of Avast &amp; MBAM. I see this as a trivial problem, the intentions with MS are probably good - they want to prevent compromised PCs. <br />
</li>
</ul>
Other than those things, everything seems stable <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /><br />
<br />
Has anyone else updated; what do you make of the update? <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Changelogs: </span><br />
<a href="https://support.microsoft.com/en-us/help/12387/windows-10-update-history" target="_blank" rel="noopener" class="mycode_url">https://support.microsoft.com/en-us/help...te-history</a><br />
<a href="http://go.microsoft.com/fwlink/p/?LinkId=822545" target="_blank" rel="noopener" class="mycode_url">http://go.microsoft.com/fwlink/p/?LinkId=822545</a>]]></description>
			<content:encoded><![CDATA[Dubbed as the most significant update to Windows 10 since its initial release just over a year ago - the update released yesterday - 03/08/2016 - known as the "Anniversary Update" is here. Figured it'd be interesting to see what others make of the update, and any experiences thus far.<br />
<br />
Couple things I noticed after updating yesterday evening:<br />
<ul class="mycode_list"><li>A notice appeared upon boot informing me that my DisplayLink software had been removed/disabled due to compatibility issues. I did, however, find this article: <a href="http://support.displaylink.com/knowledgebase/articles/525125-displaylink-and-windows-10" target="_blank" rel="noopener" class="mycode_url">http://support.displaylink.com/knowledge...windows-10</a><br />
<br />
</li>
<li>Several stock applications that I had previously removed from my task bar have now re-appeared. These include Microsoft Edge, and Windows Store. Personally I have no interest in either - I've unpinned them once more.<br />
<br />
</li>
<li>My default web browser was changed from Chrome to Microsoft Edge, and attempting to change it back via the Windows Settings interface yields no joy. Edge seems to be stuck as my default browser. No error messages or anything - it just doesn't change. <br />
</li>
</ul>
<ul class="mycode_list"><li>gta:sa now fails to launch - it worked just fine before the update - screenshot: <a href="http://i.imgur.com/Ql07f5a.png" target="_blank" rel="noopener" class="mycode_url">http://i.imgur.com/Ql07f5a.png</a><br />
</li>
</ul>
<ul class="mycode_list"><li>Windows Defender has re-enabled itself after I had previously disabled it in favour of Avast &amp; MBAM. I see this as a trivial problem, the intentions with MS are probably good - they want to prevent compromised PCs. <br />
</li>
</ul>
Other than those things, everything seems stable <img src="https://forum.sa-mp.nl/images/smilies/got/smile.gif" alt=":)" title=":)" class="smilie smilie_25" /><br />
<br />
Has anyone else updated; what do you make of the update? <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Changelogs: </span><br />
<a href="https://support.microsoft.com/en-us/help/12387/windows-10-update-history" target="_blank" rel="noopener" class="mycode_url">https://support.microsoft.com/en-us/help...te-history</a><br />
<a href="http://go.microsoft.com/fwlink/p/?LinkId=822545" target="_blank" rel="noopener" class="mycode_url">http://go.microsoft.com/fwlink/p/?LinkId=822545</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Anti-Virus]]></title>
			<link>https://forum.sa-mp.nl/thread-33205.html</link>
			<pubDate>Wed, 13 Jul 2016 12:50:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19127">_ANONYMOUS_</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33205.html</guid>
			<description><![CDATA[<span style="font-size: large;" class="mycode_size"><span style="color: #ff3333;" class="mycode_color">so now that my wifi is working and my pc is working pretty good , i am searching for a good Anti-Virus , if you know any good one , please share ;with me .<br />
i prefer free Anti-Virusses</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: large;" class="mycode_size"><span style="color: #ff3333;" class="mycode_color">so now that my wifi is working and my pc is working pretty good , i am searching for a good Anti-Virus , if you know any good one , please share ;with me .<br />
i prefer free Anti-Virusses</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PC/LAPTOP RESET]]></title>
			<link>https://forum.sa-mp.nl/thread-33197.html</link>
			<pubDate>Mon, 11 Jul 2016 01:01:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19127">_ANONYMOUS_</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33197.html</guid>
			<description><![CDATA[so , i need help with reseting my laptop , because it has alot viruses , mallware and addware etc.|<br />
but , the problem is i don't know how to do that...i know some ways how you can reset your pc/laptop , but i don't dare to try them out , because i am not so sure about them , so that's why i need help from someone experienced in this stuff and etc. please reply...any solution is appriciated.<br />
<br />
<br />
also another thing : i don't know what happened to my laptop , i can't connect to wirreles internet connection's , it doesn't even show me any wireles internet connection's in my region , i can only get internet with LAN (unwireles) (internet-cable) , i cannot use my wifi , please give me any solution's.<br />
<br />
thanks.]]></description>
			<content:encoded><![CDATA[so , i need help with reseting my laptop , because it has alot viruses , mallware and addware etc.|<br />
but , the problem is i don't know how to do that...i know some ways how you can reset your pc/laptop , but i don't dare to try them out , because i am not so sure about them , so that's why i need help from someone experienced in this stuff and etc. please reply...any solution is appriciated.<br />
<br />
<br />
also another thing : i don't know what happened to my laptop , i can't connect to wirreles internet connection's , it doesn't even show me any wireles internet connection's in my region , i can only get internet with LAN (unwireles) (internet-cable) , i cannot use my wifi , please give me any solution's.<br />
<br />
thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Who Better ?? And Search]]></title>
			<link>https://forum.sa-mp.nl/thread-33181.html</link>
			<pubDate>Fri, 01 Jul 2016 13:48:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.sa-mp.nl/member.php?action=profile&uid=19026">Yassine</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.sa-mp.nl/thread-33181.html</guid>
			<description><![CDATA[Hello Guys  <img src="https://forum.sa-mp.nl/images/smilies/got/bye.gif" alt=":w" title=":w" class="smilie smilie_47" />  <br />
<br />
I want Ask Who Better i have choice<br />
<br />
Samsung Galaxy S4 LTE (GT-I9505) or Samsung Galaxy A3<br />
<br />
And i search a Stock Rom (Android 6.0) For My Samsung Galaxy S4<br />
<br />
Thanks,<br />
<br />
Yassine]]></description>
			<content:encoded><![CDATA[Hello Guys  <img src="https://forum.sa-mp.nl/images/smilies/got/bye.gif" alt=":w" title=":w" class="smilie smilie_47" />  <br />
<br />
I want Ask Who Better i have choice<br />
<br />
Samsung Galaxy S4 LTE (GT-I9505) or Samsung Galaxy A3<br />
<br />
And i search a Stock Rom (Android 6.0) For My Samsung Galaxy S4<br />
<br />
Thanks,<br />
<br />
Yassine]]></content:encoded>
		</item>
	</channel>
</rss>