<?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[Cs-Hackers - .Net (VB et C#)]]></title>
		<link>https://forum.cs-hackers.com/</link>
		<description><![CDATA[Cs-Hackers - https://forum.cs-hackers.com]]></description>
		<pubDate>Tue, 28 Apr 2026 14:29:20 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Rech team dev]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=6140</link>
			<pubDate>Tue, 09 Nov 2021 18:47:06 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=53276">gotcha26</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=6140</guid>
			<description><![CDATA[Recherche qq personnes pour dev specifique hack cs go.. dites moi si interréssés]]></description>
			<content:encoded><![CDATA[Recherche qq personnes pour dev specifique hack cs go.. dites moi si interréssés]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bouger WPF avec un Without Border]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=3129</link>
			<pubDate>Tue, 15 Aug 2017 09:27:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=55012">Tangohan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=3129</guid>
			<description><![CDATA[Bonswar, petit tuto pour pouvoir déplacer une WPF avec le without border styles:<br />
<br />
Tout d'abord sélectionner votre MainWindows puis allez dans la fenêtre des propriétés, le petit éclair  <img src="https://forum.cs-hackers.com/images/smilies/newGen/smile.png" alt="Smile" title="Smile" class="smilie smilie_280" /> <br />
<br />
<span style="color: #ff3333;" class="mycode_color">Faites attention à ne pas sélectionner la Grid !</span><br />
<br />
Ensuite, vous descendez jusqu’à trouver Mouse_Down, double cliquez dessus puis rentrez le code suivant:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Private Sub Window_MouseDown(sender As Object, e As MouseButtonEventArgs)<br />
        If (e.ChangedButton = MouseButton.Left) Then<br />
           DragMove()<br />
       End If<br />
   End Sub</code></div></div><br />
Sauvegardez, maintenant vous pouvez déplacer la WPF sans bordures  <img src="https://forum.cs-hackers.com/images/smilies/newGen/wink.png" alt="Wink" title="Wink" class="smilie smilie_267" />]]></description>
			<content:encoded><![CDATA[Bonswar, petit tuto pour pouvoir déplacer une WPF avec le without border styles:<br />
<br />
Tout d'abord sélectionner votre MainWindows puis allez dans la fenêtre des propriétés, le petit éclair  <img src="https://forum.cs-hackers.com/images/smilies/newGen/smile.png" alt="Smile" title="Smile" class="smilie smilie_280" /> <br />
<br />
<span style="color: #ff3333;" class="mycode_color">Faites attention à ne pas sélectionner la Grid !</span><br />
<br />
Ensuite, vous descendez jusqu’à trouver Mouse_Down, double cliquez dessus puis rentrez le code suivant:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Private Sub Window_MouseDown(sender As Object, e As MouseButtonEventArgs)<br />
        If (e.ChangedButton = MouseButton.Left) Then<br />
           DragMove()<br />
       End If<br />
   End Sub</code></div></div><br />
Sauvegardez, maintenant vous pouvez déplacer la WPF sans bordures  <img src="https://forum.cs-hackers.com/images/smilies/newGen/wink.png" alt="Wink" title="Wink" class="smilie smilie_267" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Timer VB sous WPF]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=3128</link>
			<pubDate>Tue, 15 Aug 2017 09:23:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=55012">Tangohan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=3128</guid>
			<description><![CDATA[Bonswar, l'outil Timer nétant pas disponible sur VB avec la <span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size">Windows Presentation Foundation (WPF), il y a quand même moyen de l'avoir avec un:</span></span><br />
<br />
<span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Public Sub dispatcherTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)</code></div></div></span></span><br />
<br />
<span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size">Donc tout d'abords on fait un Load qui charge en même temps que la WPF, sous une Form VB normal le code existe déjà, c'est celui-ci</span></span><br />
<br />
<br />
<div class="spoiler tborder">	<div class="tcat">		<strong>Form_Load:</strong><input type="button" value="Voir" class="button" onclick="return OUGC_Plugins.LoadSpoiler(event); return false;" />			</div>	<div style="display: none;" class="spoiler_content">
<br />
<br />
<br />
  Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
<br />
    End Sub<br />
<br />
<br />
<br />
	</div></div>
Pour nous, vue que nous sommes sous une form WPF, on va d'abord rajouter une balise dans le XML, à la ligne:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Title="MainWindows" Height="300" Width="300" &gt;</code></div></div><br />
Qui devient:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> Title="MainWindows" Height="300" Width="300"  Loaded="Window_Loaded" &gt;</code></div></div><br />
Maintenant que cela est fait, on peut faire notre sub Main_Loaded avec le timer:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Private Sub Window_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) _<br />
       Handles MyBase.Loaded<br />
       Dim dt As DispatcherTimer = New DispatcherTimer()<br />
       AddHandler dt.Tick, AddressOf dispatcherTimer_Tick<br />
       dt.Interval = New TimeSpan(0, 0, 1)<br />
       dt.Start()<br />
<br />
   End Sub</code></div></div><br />
Puis on fait le sub du dispatchertimer où vous pouvez mettre ce que vous voulez:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> Public Sub dispatcherTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)<br />
      <br />
   End Sub</code></div></div><br />
Voila, le timer est bon, ce lancera au lancement de la WPF et executera la tâche affecté dans le Dispatcher Timer]]></description>
			<content:encoded><![CDATA[Bonswar, l'outil Timer nétant pas disponible sur VB avec la <span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size">Windows Presentation Foundation (WPF), il y a quand même moyen de l'avoir avec un:</span></span><br />
<br />
<span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Public Sub dispatcherTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)</code></div></div></span></span><br />
<br />
<span style="color: #2a2a2a;" class="mycode_color"><span style="font-size: small;" class="mycode_size">Donc tout d'abords on fait un Load qui charge en même temps que la WPF, sous une Form VB normal le code existe déjà, c'est celui-ci</span></span><br />
<br />
<br />
<div class="spoiler tborder">	<div class="tcat">		<strong>Form_Load:</strong><input type="button" value="Voir" class="button" onclick="return OUGC_Plugins.LoadSpoiler(event); return false;" />			</div>	<div style="display: none;" class="spoiler_content">
<br />
<br />
<br />
  Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
<br />
    End Sub<br />
<br />
<br />
<br />
	</div></div>
Pour nous, vue que nous sommes sous une form WPF, on va d'abord rajouter une balise dans le XML, à la ligne:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Title="MainWindows" Height="300" Width="300" &gt;</code></div></div><br />
Qui devient:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> Title="MainWindows" Height="300" Width="300"  Loaded="Window_Loaded" &gt;</code></div></div><br />
Maintenant que cela est fait, on peut faire notre sub Main_Loaded avec le timer:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Private Sub Window_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) _<br />
       Handles MyBase.Loaded<br />
       Dim dt As DispatcherTimer = New DispatcherTimer()<br />
       AddHandler dt.Tick, AddressOf dispatcherTimer_Tick<br />
       dt.Interval = New TimeSpan(0, 0, 1)<br />
       dt.Start()<br />
<br />
   End Sub</code></div></div><br />
Puis on fait le sub du dispatchertimer où vous pouvez mettre ce que vous voulez:<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> Public Sub dispatcherTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)<br />
      <br />
   End Sub</code></div></div><br />
Voila, le timer est bon, ce lancera au lancement de la WPF et executera la tâche affecté dans le Dispatcher Timer]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[VB] Auth avec .dll]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=3110</link>
			<pubDate>Thu, 10 Aug 2017 04:50:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=55012">Tangohan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=3110</guid>
			<description><![CDATA[Bonjour, je vous propose un petit code source pour faire un login pour tout type de programme, relié a une bdd.<br />
Attention, faut un hébergeur payant pour avoir un bdd avec accès distance<br />
000webhost est non fonctionnel (version gratuite)<br />
<br />
Je suis chez Always Data (Service gratuit et bonne bdd avec accès distance)<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Dim ConnectionSQL As New MySqlConnection("server= serveur;port=3306; userid= userbdd; password= mdp; database= bdd;")<br />
       Dim COMMAND As New MySqlCommand<br />
       Dim reader As MySqlDataReader<br />
       Dim myAdapter As New MySqlDataAdapter<br />
       Dim SQL As String<br />
       ConnectionSQL.Open()<br />
       COMMAND.Connection = ConnectionSQL<br />
       <br />
       'Connexion a la BDD<br />
       '<br />
       COMMAND.CommandText = "SELECT aaaaa, bbbbb FROM nomdelatable WHERE aaaaa='" &amp; NOMDELABOX.Text &amp; "' and bbbbb='" &amp; NOMDELABOX.Text &amp; "'"<br />
       reader = COMMAND.ExecuteReader<br />
       If reader.HasRows Then<br />
          'Lancement de programme/ form<br />
           End If<br />
       Else<br />
Message d'erreur si aaaa ou bbbb faux<br />
               MsgBox("    ")<br />
       End If</code></div></div><br />
Possibilité de rajouter un système qui check si la personnes est banned<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> <br />
<br />
         myAdapter.SelectCommand = COMMAND<br />
          reader.Read()<br />
          reader.GetValue(2)<br />
          If reader.GetValue(2) = "True" Then<br />
              MsgBox("Banned key, program will close")<br />
              LABEL_ID_BANNED.IsEnabled = True<br />
              ConnectionSQL.Close()<br />
              End<br />
          Else<br />
              MsgBox("Lancement du launcher")<br />
              Dim frm As New Dashboard()<br />
              frm.Show()<br />
              Me.Close()</code></div></div><br />
Ce n'est pas parfait, un peu de bidouillage pour le bannissement mais fonctionnel<br />
<br />
Il faut pour cela un .dll<br />
MySQL.Data.dll<br />
<br />
Bon, je vous donne le setup, beaucoup plus simple <img src="https://forum.cs-hackers.com/images/smilies/newGen/smile.png" alt="Smile" title="Smile" class="smilie smilie_280" /><br />
Le liens du setup sur leurs sites:<br />
<a href="https://dev.mysql.com/downloads/connector/net/" target="_blank" rel="noopener" class="mycode_url">https://dev.mysql.com/downloads/connector/net/</a><br />
Le dl est long à la fin, aucune idée du pourquoi du comment mais le dl se bloque à 100 chez moi ^^ et se débloque au bout de 5 minutes je l'ai donc upload sur mon site si vous le souhaitez:<br />
<a href="https://www.nightwalker.fr/mysql-connector-net-6.9.9.msi" target="_blank" rel="noopener" class="mycode_url">https://www.nightwalker.fr/mysql-connect...-6.9.9.msi</a><br />
<br />
<br />
Suffit juste de mettre deux textbox + un bouton, après le design c'est à vous ^^<br />
Il est possible de rajouter d'autres textbox ou vérifications.<br />
<br />
Exemple de mon launcher:<br />
<a href="https://image.noelshack.com/fichiers/2017/32/4/1502339650-nightwalker.png" target="_blank" rel="noopener" class="mycode_url">https://image.noelshack.com/fichiers/201...walker.png</a><br />
<br />
Virus total au cas où y a des doutes sur le setup:<br />
<a href="https://www.virustotal.com/fr/url/18feb29a8ee5aca11be2472ca358627a8866edaf2d6ea7e68870d2affa1d2acc/analysis/1502339455/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/fr/url/18feb2...502339455/</a>]]></description>
			<content:encoded><![CDATA[Bonjour, je vous propose un petit code source pour faire un login pour tout type de programme, relié a une bdd.<br />
Attention, faut un hébergeur payant pour avoir un bdd avec accès distance<br />
000webhost est non fonctionnel (version gratuite)<br />
<br />
Je suis chez Always Data (Service gratuit et bonne bdd avec accès distance)<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code>Dim ConnectionSQL As New MySqlConnection("server= serveur;port=3306; userid= userbdd; password= mdp; database= bdd;")<br />
       Dim COMMAND As New MySqlCommand<br />
       Dim reader As MySqlDataReader<br />
       Dim myAdapter As New MySqlDataAdapter<br />
       Dim SQL As String<br />
       ConnectionSQL.Open()<br />
       COMMAND.Connection = ConnectionSQL<br />
       <br />
       'Connexion a la BDD<br />
       '<br />
       COMMAND.CommandText = "SELECT aaaaa, bbbbb FROM nomdelatable WHERE aaaaa='" &amp; NOMDELABOX.Text &amp; "' and bbbbb='" &amp; NOMDELABOX.Text &amp; "'"<br />
       reader = COMMAND.ExecuteReader<br />
       If reader.HasRows Then<br />
          'Lancement de programme/ form<br />
           End If<br />
       Else<br />
Message d'erreur si aaaa ou bbbb faux<br />
               MsgBox("    ")<br />
       End If</code></div></div><br />
Possibilité de rajouter un système qui check si la personnes est banned<br />
<br />
<div class="codeblock"><div class="title">Code :</div><div class="body" dir="ltr"><code> <br />
<br />
         myAdapter.SelectCommand = COMMAND<br />
          reader.Read()<br />
          reader.GetValue(2)<br />
          If reader.GetValue(2) = "True" Then<br />
              MsgBox("Banned key, program will close")<br />
              LABEL_ID_BANNED.IsEnabled = True<br />
              ConnectionSQL.Close()<br />
              End<br />
          Else<br />
              MsgBox("Lancement du launcher")<br />
              Dim frm As New Dashboard()<br />
              frm.Show()<br />
              Me.Close()</code></div></div><br />
Ce n'est pas parfait, un peu de bidouillage pour le bannissement mais fonctionnel<br />
<br />
Il faut pour cela un .dll<br />
MySQL.Data.dll<br />
<br />
Bon, je vous donne le setup, beaucoup plus simple <img src="https://forum.cs-hackers.com/images/smilies/newGen/smile.png" alt="Smile" title="Smile" class="smilie smilie_280" /><br />
Le liens du setup sur leurs sites:<br />
<a href="https://dev.mysql.com/downloads/connector/net/" target="_blank" rel="noopener" class="mycode_url">https://dev.mysql.com/downloads/connector/net/</a><br />
Le dl est long à la fin, aucune idée du pourquoi du comment mais le dl se bloque à 100 chez moi ^^ et se débloque au bout de 5 minutes je l'ai donc upload sur mon site si vous le souhaitez:<br />
<a href="https://www.nightwalker.fr/mysql-connector-net-6.9.9.msi" target="_blank" rel="noopener" class="mycode_url">https://www.nightwalker.fr/mysql-connect...-6.9.9.msi</a><br />
<br />
<br />
Suffit juste de mettre deux textbox + un bouton, après le design c'est à vous ^^<br />
Il est possible de rajouter d'autres textbox ou vérifications.<br />
<br />
Exemple de mon launcher:<br />
<a href="https://image.noelshack.com/fichiers/2017/32/4/1502339650-nightwalker.png" target="_blank" rel="noopener" class="mycode_url">https://image.noelshack.com/fichiers/201...walker.png</a><br />
<br />
Virus total au cas où y a des doutes sur le setup:<br />
<a href="https://www.virustotal.com/fr/url/18feb29a8ee5aca11be2472ca358627a8866edaf2d6ea7e68870d2affa1d2acc/analysis/1502339455/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/fr/url/18feb2...502339455/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GodnestCSGOTool |Remplir lobby de bot]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=2254</link>
			<pubDate>Sat, 18 Feb 2017 13:26:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=1">UzGzChange</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=2254</guid>
			<description><![CDATA[Permet de remplir un lobby avec des bots et de faire planter le lancement de la game.<br />
<br />
Code source<br />
<a href="https://github.com/User344/GodnestCSGOTool" target="_blank" rel="noopener" class="mycode_url">https://github.com/User344/GodnestCSGOTool</a>]]></description>
			<content:encoded><![CDATA[Permet de remplir un lobby avec des bots et de faire planter le lancement de la game.<br />
<br />
Code source<br />
<a href="https://github.com/User344/GodnestCSGOTool" target="_blank" rel="noopener" class="mycode_url">https://github.com/User344/GodnestCSGOTool</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[C#] CSGO External by Teddi]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=2069</link>
			<pubDate>Sun, 01 Jan 2017 00:21:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=1">UzGzChange</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=2069</guid>
			<description><![CDATA[[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=293" target="_blank" title="">CSGO External by Teddi.zip</a><br><i> (Taille : 108.86 Ko / Téléchargements : 38)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]]]></description>
			<content:encoded><![CDATA[[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=293" target="_blank" title="">CSGO External by Teddi.zip</a><br><i> (Taille : 108.86 Ko / Téléchargements : 38)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[VB.NET] Si0n Recode | Aimbot / ESP / SkinChanger / TriggerBot / Misc]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=2068</link>
			<pubDate>Sun, 01 Jan 2017 00:16:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=1">UzGzChange</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=2068</guid>
			<description><![CDATA[<img src="https://i.gyazo.com/9913bc6c15e6cb6ab49bb28a30540516.png" loading="lazy"  alt="[Image: 9913bc6c15e6cb6ab49bb28a30540516.png]" class="mycode_img" /><br />
<span style="color: #cccccc;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font"><!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=797" target="_blank" title="">85c213e93a25968c497e39f68e199130.png</a><br><i> (Taille : 37.75 Ko / Téléchargements : 7)</i> </div>
<!-- end: postbit_attachments_attachment --></span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=292" target="_blank" title="">si0n-Source-master.zip</a><br><i> (Taille : 72.16 Ko / Téléchargements : 57)</i> </div>
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<img src="https://i.gyazo.com/9913bc6c15e6cb6ab49bb28a30540516.png" loading="lazy"  alt="[Image: 9913bc6c15e6cb6ab49bb28a30540516.png]" class="mycode_img" /><br />
<span style="color: #cccccc;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font"><!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=797" target="_blank" title="">85c213e93a25968c497e39f68e199130.png</a><br><i> (Taille : 37.75 Ko / Téléchargements : 7)</i> </div>
<!-- end: postbit_attachments_attachment --></span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=292" target="_blank" title="">si0n-Source-master.zip</a><br><i> (Taille : 72.16 Ko / Téléchargements : 57)</i> </div>
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Code Source] xBhop]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=1218</link>
			<pubDate>Thu, 05 Dec 2013 12:55:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=0"></a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=1218</guid>
			<description><![CDATA[Salut je vous partage le Code Source de xBhop codé en vb.net<br />
<br />
<br />
Fonctionne pour :<br />
<br />
Counter-Strike: Source<br />
<br />
Counter-Strike: Global Offensive<br />
<br />
Left 4 Dead 2<br />
<br />
Team Fortress 2<br />
<br />
Day of Defeat: Source<br />
<br />
<br />
Image :<br />
<a href="http://img86.xooimage.com/views/3/e/c/main-37897c0.png/" target="_blank" rel="noopener" class="mycode_url">http://img86.xooimage.com/views/3/e/c/main-37897c0.png/</a><br />
<a href="http://img89.xooimage.com/views/a/4/4/sans-titre-378fb5e.png/" target="_blank" rel="noopener" class="mycode_url">http://img89.xooimage.com/views/a/4/4/sa...8fb5e.png/</a><br />
<br />
<br />
Download :<br />
<br />
[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=83" target="_blank" title="">Source xBhop By SnooP.zip</a><br><i> (Taille : 438.12 Ko / Téléchargements : 85)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]<br />
<br />
<br />
Virus Scan :<br />
<a href="https://www.virustotal.com/fr/file/af7d01fd67180a5ee473a794bad4e1ff47b2829b2f5a859ccd5a52980df29bfd/analysis/1386248023/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/fr/file/af7d0...386248023/</a><br />
<br />
<br />
Un Merci prend 2sec <img src="https://forum.cs-hackers.com/images/smilies/newGen/happywide.png" alt="Happywide" title="Happywide" class="smilie smilie_271" /><br />
<br />
]]></description>
			<content:encoded><![CDATA[Salut je vous partage le Code Source de xBhop codé en vb.net<br />
<br />
<br />
Fonctionne pour :<br />
<br />
Counter-Strike: Source<br />
<br />
Counter-Strike: Global Offensive<br />
<br />
Left 4 Dead 2<br />
<br />
Team Fortress 2<br />
<br />
Day of Defeat: Source<br />
<br />
<br />
Image :<br />
<a href="http://img86.xooimage.com/views/3/e/c/main-37897c0.png/" target="_blank" rel="noopener" class="mycode_url">http://img86.xooimage.com/views/3/e/c/main-37897c0.png/</a><br />
<a href="http://img89.xooimage.com/views/a/4/4/sans-titre-378fb5e.png/" target="_blank" rel="noopener" class="mycode_url">http://img89.xooimage.com/views/a/4/4/sa...8fb5e.png/</a><br />
<br />
<br />
Download :<br />
<br />
[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=83" target="_blank" title="">Source xBhop By SnooP.zip</a><br><i> (Taille : 438.12 Ko / Téléchargements : 85)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]<br />
<br />
<br />
Virus Scan :<br />
<a href="https://www.virustotal.com/fr/file/af7d01fd67180a5ee473a794bad4e1ff47b2829b2f5a859ccd5a52980df29bfd/analysis/1386248023/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/fr/file/af7d0...386248023/</a><br />
<br />
<br />
Un Merci prend 2sec <img src="https://forum.cs-hackers.com/images/smilies/newGen/happywide.png" alt="Happywide" title="Happywide" class="smilie smilie_271" /><br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Regroupement de thème VB.NET]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=1365</link>
			<pubDate>Sat, 05 Jan 2013 21:41:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=0"></a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=1365</guid>
			<description><![CDATA[Voila je vous mets à disposition quelques thème visual basic qui rendront vos projet plus soigné (pro)<br />
<br />
 <br />
<br />
[center]Au lieu de mettre plusieurs liens de plusieurs thèmes différents, voici un outil qu'il les regroupent avec leur source ;[/center]<br />
<br />
<br />
<br />
[center]<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Screenshoot :</span></span>[/center]<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=20" target="_blank" title="">1340218322-themearchive_design.png</a><br><i> (Taille : 18.75 Ko / Téléchargements : 51)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Une fois le thème choisit, vous cliquez sur </span></span><span style="font-weight: bold;" class="mycode_b">"View Code"</span><span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font"> en bas à droite. Une fenêtre contenant le code va s'afficher à la place de l'aperçu du design.</span></span><br />
<br />
 <br />
<br />
[center]<span style="color: #ff0000;" class="mycode_color">Tuto</span>[/center]<br />
<br />
<br />
<br />
Maintenant que vous avez copier le code, il va falloir l'installer sur votre projet !<br />
<br />
<br />
<br />
Ouvrir <span style="font-weight: bold;" class="mycode_b">Visual Basic</span><br />
<br />
Nommez votre projet à votre guise<br />
<br />
Une fois que votre application est ouverte<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=21" target="_blank" title="">1340218869-boutonprojet.png</a><br><i> (Taille : 27.43 Ko / Téléchargements : 38)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
Cliquez sur <span style="font-weight: bold;" class="mycode_b">Ajouter une classe </span><br />
<br />
Nommer là (ou pas),puis ajouter la à votre projet<br />
<br />
Dans l'explorateur de solution, clic droit puis <span style="font-weight: bold;" class="mycode_b">Afficher le code</span> de la classe<br />
<br />
Comme ceci :<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=22" target="_blank" title="">1340218868-codedebase.png</a><br><i> (Taille : 7.67 Ko / Téléchargements : 15)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Effacer les deux lignes de code déjà présentes et remplacez les par le code du thème copié auparavant.</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Une fois le code copier d</span></span><span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">éboguez le projet en cliquant (droit) dans l'explorateur de solution sur le nom de votre projet; Générer-Régénérer ou F5 de votre clavier.</span></span><br />
<br />
<span style="font-family: helvetica, arial, sans-serif;" class="mycode_font"><span style="color: #282828;" class="mycode_color">La programme vierge vas se lancer, fermez le après qu'il soit totalement  chargé.</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Ouvrir votre <span style="font-weight: bold;" class="mycode_b">boîte à outils "1"</span>.Vous aurez normalement ceci:</span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=23" target="_blank" title="">Capturer.JPG</a><br><i> (Taille : 89.9 Ko / Téléchargements : 11)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">(les noms des boutons, labels, etc, changent selon les thèmes)</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Double-clic ou glisser les outils "2" que vous voulez sur votre projet.</span></span><br />
<br />
<br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Et voila c'est tout beau maintenant &lt;img src='http://cs-hackers.com/forum/public/style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.png' class='bbc_emoticon' alt='<img src="https://forum.cs-hackers.com/images/smilies/newGen/happywide.png" alt="Happywide" title="Happywide" class="smilie smilie_271" />' /&gt;</span></span><br />
<br />
 <br />
<br />
[right]<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Have Fun Bounk3R</span></span>[/right]<br /><!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="Rar" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=19" target="_blank" title="">Special Project.rar</a><br><i> (Taille : 1.18 Mo / Téléchargements : 53)</i> </div>
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Voila je vous mets à disposition quelques thème visual basic qui rendront vos projet plus soigné (pro)<br />
<br />
 <br />
<br />
[center]Au lieu de mettre plusieurs liens de plusieurs thèmes différents, voici un outil qu'il les regroupent avec leur source ;[/center]<br />
<br />
<br />
<br />
[center]<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Screenshoot :</span></span>[/center]<br />
<br />
<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=20" target="_blank" title="">1340218322-themearchive_design.png</a><br><i> (Taille : 18.75 Ko / Téléchargements : 51)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Une fois le thème choisit, vous cliquez sur </span></span><span style="font-weight: bold;" class="mycode_b">"View Code"</span><span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font"> en bas à droite. Une fenêtre contenant le code va s'afficher à la place de l'aperçu du design.</span></span><br />
<br />
 <br />
<br />
[center]<span style="color: #ff0000;" class="mycode_color">Tuto</span>[/center]<br />
<br />
<br />
<br />
Maintenant que vous avez copier le code, il va falloir l'installer sur votre projet !<br />
<br />
<br />
<br />
Ouvrir <span style="font-weight: bold;" class="mycode_b">Visual Basic</span><br />
<br />
Nommez votre projet à votre guise<br />
<br />
Une fois que votre application est ouverte<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=21" target="_blank" title="">1340218869-boutonprojet.png</a><br><i> (Taille : 27.43 Ko / Téléchargements : 38)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
Cliquez sur <span style="font-weight: bold;" class="mycode_b">Ajouter une classe </span><br />
<br />
Nommer là (ou pas),puis ajouter la à votre projet<br />
<br />
Dans l'explorateur de solution, clic droit puis <span style="font-weight: bold;" class="mycode_b">Afficher le code</span> de la classe<br />
<br />
Comme ceci :<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=22" target="_blank" title="">1340218868-codedebase.png</a><br><i> (Taille : 7.67 Ko / Téléchargements : 15)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Effacer les deux lignes de code déjà présentes et remplacez les par le code du thème copié auparavant.</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Une fois le code copier d</span></span><span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">éboguez le projet en cliquant (droit) dans l'explorateur de solution sur le nom de votre projet; Générer-Régénérer ou F5 de votre clavier.</span></span><br />
<br />
<span style="font-family: helvetica, arial, sans-serif;" class="mycode_font"><span style="color: #282828;" class="mycode_color">La programme vierge vas se lancer, fermez le après qu'il soit totalement  chargé.</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Ouvrir votre <span style="font-weight: bold;" class="mycode_b">boîte à outils "1"</span>.Vous aurez normalement ceci:</span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=23" target="_blank" title="">Capturer.JPG</a><br><i> (Taille : 89.9 Ko / Téléchargements : 11)</i> </div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">(les noms des boutons, labels, etc, changent selon les thèmes)</span></span><br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Double-clic ou glisser les outils "2" que vous voulez sur votre projet.</span></span><br />
<br />
<br />
<br />
<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Et voila c'est tout beau maintenant &lt;img src='http://cs-hackers.com/forum/public/style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.png' class='bbc_emoticon' alt='<img src="https://forum.cs-hackers.com/images/smilies/newGen/happywide.png" alt="Happywide" title="Happywide" class="smilie smilie_271" />' /&gt;</span></span><br />
<br />
 <br />
<br />
[right]<span style="color: #282828;" class="mycode_color"><span style="font-family: helvetica, arial, sans-serif;" class="mycode_font">Have Fun Bounk3R</span></span>[/right]<br /><!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="Rar" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=19" target="_blank" title="">Special Project.rar</a><br><i> (Taille : 1.18 Mo / Téléchargements : 53)</i> </div>
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Over-Games [New]]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=1460</link>
			<pubDate>Wed, 27 Jun 2012 20:40:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=0"></a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=1460</guid>
			<description><![CDATA[[center]Voila la nouvelle du programme que j'ai créer avec VB.NET pour avoir des jeux gratuit.[/center]<br />
<br />
<br />
<br />
[center]<span style="font-weight: bold;" class="mycode_b">Logiciel pour extraire le jeux et i jouer :</span><br />
<br />
BitTorrent<br />
<br />
Daemon Tools Lite<br />
<br />
<br />
<br />
																	  <span style="font-weight: bold;" class="mycode_b">Liste de jeux que vous pouvez avoir  :																		 </span><br />
<br />
Battlefield 3<br />
<br />
Batman arkam asylum<br />
<br />
Dead island<br />
<br />
F.E.A.R 3<br />
<br />
Flatout 3<br />
<br />
Football manager 2011<br />
<br />
MW3<br />
<br />
Killing Floor<br />
<br />
Star Wars: Battlefront 2<br />
<br />
NBA 2k12<br />
<br />
Left 4 dead 2<br />
<br />
Grand Thef Auto : San Andreas<br />
<br />
Need for speed : the run<br />
<br />
Virtua tennis 4<br />
<br />
WRC 2[/center]<br />
<br />
[center]Black Ops 2[/center]<br />
<br />
[center]Fifa 13<br />
<br />
et d'autre ancore......<br />
<br />
Avec inclus Patch FR pour certain jeux.<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshots :</span><br />
<br />
[url="http://jeux-universe.xooit.org/image/93/d/a/a/2012-12-27_175141-3aaad2a.png.htm"]<a href="http://img93.xooimage.com/files/d/a/a/2012-12-27_175141-3aaad2a.png" target="_blank" rel="noopener" class="mycode_url">[Image: 2012-12-27_175141-3aaad2a.png]</a>[/url][/center]<br />
<br />
<br />
<br />
[center]<span style="font-weight: bold;" class="mycode_b">Virus Scan :</span>[/center]<br />
<br />
[center][url="https://www.virustotal.com/file/4203ebb222a08793b417598f8fb856bc042b7e3bf4189eca95e79d158bb6951d/analysis/1356626780/"]https://www.virustot...sis/1356626780/[/url][/center]<br />
<br />
[center]<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Téléchargements :</span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=8" target="_blank" title="">Over-Games.zip</a><br><i> (Taille : 771.38 Ko / Téléchargements : 28)</i> </div>
<!-- end: postbit_attachments_attachment -->[/center]]]></description>
			<content:encoded><![CDATA[[center]Voila la nouvelle du programme que j'ai créer avec VB.NET pour avoir des jeux gratuit.[/center]<br />
<br />
<br />
<br />
[center]<span style="font-weight: bold;" class="mycode_b">Logiciel pour extraire le jeux et i jouer :</span><br />
<br />
BitTorrent<br />
<br />
Daemon Tools Lite<br />
<br />
<br />
<br />
																	  <span style="font-weight: bold;" class="mycode_b">Liste de jeux que vous pouvez avoir  :																		 </span><br />
<br />
Battlefield 3<br />
<br />
Batman arkam asylum<br />
<br />
Dead island<br />
<br />
F.E.A.R 3<br />
<br />
Flatout 3<br />
<br />
Football manager 2011<br />
<br />
MW3<br />
<br />
Killing Floor<br />
<br />
Star Wars: Battlefront 2<br />
<br />
NBA 2k12<br />
<br />
Left 4 dead 2<br />
<br />
Grand Thef Auto : San Andreas<br />
<br />
Need for speed : the run<br />
<br />
Virtua tennis 4<br />
<br />
WRC 2[/center]<br />
<br />
[center]Black Ops 2[/center]<br />
<br />
[center]Fifa 13<br />
<br />
et d'autre ancore......<br />
<br />
Avec inclus Patch FR pour certain jeux.<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshots :</span><br />
<br />
[url="http://jeux-universe.xooit.org/image/93/d/a/a/2012-12-27_175141-3aaad2a.png.htm"]<a href="http://img93.xooimage.com/files/d/a/a/2012-12-27_175141-3aaad2a.png" target="_blank" rel="noopener" class="mycode_url">[Image: 2012-12-27_175141-3aaad2a.png]</a>[/url][/center]<br />
<br />
<br />
<br />
[center]<span style="font-weight: bold;" class="mycode_b">Virus Scan :</span>[/center]<br />
<br />
[center][url="https://www.virustotal.com/file/4203ebb222a08793b417598f8fb856bc042b7e3bf4189eca95e79d158bb6951d/analysis/1356626780/"]https://www.virustot...sis/1356626780/[/url][/center]<br />
<br />
[center]<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Téléchargements :</span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=8" target="_blank" title="">Over-Games.zip</a><br><i> (Taille : 771.38 Ko / Téléchargements : 28)</i> </div>
<!-- end: postbit_attachments_attachment -->[/center]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[FULL SOURCE CODE] Mw3 External Wall &#38; Aim]]></title>
			<link>https://forum.cs-hackers.com/showthread.php?tid=1489</link>
			<pubDate>Wed, 16 May 2012 14:05:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.cs-hackers.com/member.php?action=profile&uid=3">yugo</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.cs-hackers.com/showthread.php?tid=1489</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Author:</span> Stefsot<br />
<br />
<span style="color: #696969;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Features:</span> </span><br />
<span style="color: #696969;" class="mycode_color">-ESP (Friendly and Enemy)</span><br />
<span style="color: #696969;" class="mycode_color">-Warning</span><br />
-Aimbot<br />
-Aim Prediction<br />
*noter que vous devez exécuter le jeu en mode fenêtre.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshot - Preview </span>:<br />
<img src="https://i482.photobucket.com/albums/rr189/aporyto/stefsot-projects/mw3_wall/screenshot4.png" loading="lazy"  alt="[Image: screenshot4.png]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download</span><br />
[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="Rar" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=102" target="_blank" title="">mw3 by stefsot - Full release.rar</a><br><i> (Taille : 1.25 Mo / Téléchargements : 35)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Author:</span> Stefsot<br />
<br />
<span style="color: #696969;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Features:</span> </span><br />
<span style="color: #696969;" class="mycode_color">-ESP (Friendly and Enemy)</span><br />
<span style="color: #696969;" class="mycode_color">-Warning</span><br />
-Aimbot<br />
-Aim Prediction<br />
*noter que vous devez exécuter le jeu en mode fenêtre.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshot - Preview </span>:<br />
<img src="https://i482.photobucket.com/albums/rr189/aporyto/stefsot-projects/mw3_wall/screenshot4.png" loading="lazy"  alt="[Image: screenshot4.png]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download</span><br />
[hide]<!-- start: postbit_attachments_attachment -->
<div style="background-color: #161616;padding: 5px 10px;">
	
<br /><!-- start: attachment_icon -->
<img src="https://forum.cs-hackers.com/images/attachtypes/zip.png" title="Rar" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a class="attachembed" href="attachment.php?aid=102" target="_blank" title="">mw3 by stefsot - Full release.rar</a><br><i> (Taille : 1.25 Mo / Téléchargements : 35)</i> </div>
<!-- end: postbit_attachments_attachment -->[/hide]]]></content:encoded>
		</item>
	</channel>
</rss>