<?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/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>diverse</title>
		<link>http://dvsr.ucoz.com/</link>
		<description>Forum</description>
		<lastBuildDate>Sat, 01 Sep 2012 08:01:15 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://dvsr.ucoz.com/forum/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>Tutorial Despre Cum Sa Faci Un Plugin</title>
			<link>https://dvsr.ucoz.com/forum/21-339-1</link>
			<pubDate>Sat, 01 Sep 2012 08:01:15 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/21&quot;&gt;TuToRiAlE&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 1</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;Inceputul de baza in crearea unui Plugin &lt;p&gt; Ok , in acest Tutorial voi explica pas cu pas , tot ce trebuie facut pentru a crea un Plugin simplu (Inceputul) . Daca nu ai facut nici un Plugin pana acum si nu ai habar cum se face , casca bine ochii ; vei invata acum . &lt;p&gt; Plugin-urile , dupa cum cred ca ati vazut deja (Daca v-ati uitat in vreun .sma) , sunt alcatuite din public-uri si din stock-uri (Ceea ce veti invata mai tarziu , deocamdata invatam public-uri) . &lt;p&gt; Vom creea un fisier .txt , caruia ii modificam extensia in .sma . Sa spunem ca am creat fisierul plugin.sma . Il deschidem cu notepad (Puteti folosi si alte programe ajutatoare in scripting , dar nu recomand ; este bine sa invatati asa) . &lt;p&gt; Incepem prin niste include-uri . Ce sunt acestea ? Sunt niste linii de comanda care arata amxmodx-ului ce functii (utilitati) vor fi folosite in acest Plugin . Pentru inceput , ii aratam ca vom folosi amxmodx : &lt;p&gt; CODE &lt;br /&gt; #include &lt;amxmodx&gt; &lt;p&gt; Lista de include-uri poate continua , dar deocamdata lasam asa . Veti invata mai tarziu si despre alte include-uri . &lt;p&gt; Apoi , intregistram Plugin-ul , printr-un public specific , numit public plugin_init() . Deci , apasam un enter si adaugam : &lt;p&gt; CODE &lt;br /&gt; public plugin_init() &lt;p&gt; { &lt;p&gt; } &lt;p&gt; Intre cele 2 paranteze ( { si } ) , vom adauga codul public-ului respectiv . Aceste acolade reprezinta inceputul si sfarsitul unei anumite parti / a intregului public . Mai tarziu vom invata si partea cu mai multe parti ale unui public , dar deocamdata lasam asa . Intre paranteze , adaugam register_plugin(&quot;Numele Pluginului&quot;,&quot;versiunea&quot;,&quot;autorul&quot;) . Register_plugin este o functie a include-ului de mai sus (amxmodx) , iar celelalte sunt argumentele . Vom avea : &lt;p&gt; CODE &lt;br /&gt; #include &lt;amxmodx&gt; &lt;p&gt; public plugin_init() &lt;p&gt; { &lt;p&gt; register_plugin(&quot;nume&quot;, &quot;versiune&quot;, &quot;autor&quot;) &lt;p&gt; } &lt;p&gt; Atentie ! Acel spatiu lasat de mine inaintea register_plugin este absolut necesar pentru a functiona Plugin-ul corect ! Acel spatiu NU va trebui sa-l lasati cu space , ci cu tasta TAB . Deasemenea intr-un Plugin NU va trebui sa folositi DELOC tasta space (Decat intre argumente) ! Inlocuim nume cu numele Plugin-ului , versiune cu versiunea autor cu autorul Plugin-ului (Numele dvs) . Atentie ! Lasam ghilimelele asa cum sunt ! Modificam doar cuvintele . &lt;br /&gt; Tot in plugin_init , vom putea sa mai inregistram si niste comenzi . Vom inregistra una . Functia este urmatoarea : &lt;p&gt; CODE &lt;br /&gt; register_concmd(&quot;comanda&quot;,&quot;public&quot;,accesul de admin,&quot;Mesaj care apare cand dai amx_help&quot;) &lt;p&gt; La &quot;accesul de admin&quot; , putem pune : &lt;p&gt; CODE &lt;br /&gt; ADMIN_RESERVATION &lt;p&gt; ADMIN_IMMUNITY &lt;p&gt; ADMIN_KICK &lt;p&gt; ADMIN_BAN &lt;p&gt; ADMIN_SLAY &lt;p&gt; ADMIN_MAP &lt;p&gt; ADMIN_CVAR &lt;p&gt; ADMIN_CFG &lt;p&gt; ADMIN_CHAT &lt;p&gt; ADMIN_VOTE &lt;p&gt; ADMIN_PASSWORD &lt;p&gt; ADMIN_RCON &lt;p&gt; ADMIN_LEVEL_A &lt;p&gt; ADMIN_LEVEL_B &lt;p&gt; ADMIN_LEVEL_C &lt;p&gt; ADMIN_LEVEL_D &lt;p&gt; ADMIN_LEVEL_E &lt;p&gt; ADMIN_LEVEL_F &lt;p&gt; ADMIN_LEVEL_G &lt;p&gt; ADMIN_LEVEL_H &lt;p&gt; Deci , adaugam in .sma : &lt;p&gt; CODE &lt;br /&gt; register_concmd(&quot;amx_ss&quot;,&quot;admin_ss&quot;,ADMIN_LEVEL_C,&quot;Take a snapshot to selected player&quot;) &lt;p&gt; La comanda amx_ss , se va executa public-ul admin_ss , doar daca are adminul care executa comanda litera &quot;C&quot; in acces . &lt;p&gt; Ok , acum sa facem public-ul . &lt;br /&gt; Adaugam : &lt;p&gt; CODE &lt;br /&gt; public admin_ss(id) &lt;p&gt; { &lt;p&gt; } &lt;p&gt; Dupa cum vedeti , am adaugat un id in acest public . Acest id reprezinta index-ul pe care va fi executata comanda . &lt;br /&gt; Intre { si } , va trebui sa adaugam code-ul public-ului . Deobicei este o combinatie intre niste functii aici . De exemplu , daca vrem sa ii facem un snapshot unui Player , vom adauga intre { si } urmatoarea functie : &lt;p&gt; CODE &lt;br /&gt; client_cmd(id, &quot;snapshot&quot;) &lt;p&gt; Client_cmd reprezinta functia pentru executare a unei comenzi asupra unui client , iar id reprezinta cui sa executi comanda . Snapshot reprezinta comanda . &lt;br /&gt; Adaugam niste tab-uri ca sa fie ordonat bine code-ul . Ok , pana acum ar trebui sa avem urmatoarele : &lt;p&gt; CODE &lt;br /&gt; #include &lt;amxmodx&gt; &lt;p&gt; public plugin_init() &lt;p&gt; { &lt;p&gt; register_plugin(&quot;nume&quot;, &quot;versiune&quot;, &quot;autor&quot;) &lt;p&gt; register_concmd(&quot;amx_ss&quot;,&quot;admin_ss&quot;,ADMIN_LEVEL_C,&quot;It takes a snapshot to the specified Player .&quot;) &lt;p&gt; } &lt;p&gt; public admin_ss(id) &lt;p&gt; { &lt;p&gt; client_cmd(id, &quot;snapshot&quot;) &lt;p&gt; } &lt;p&gt; Salvam fisierul , apoi il compilam AICI , dupa care il punem pe Server . La executarea comenzii amx_ss &lt;Player&gt; , i se va face un snapshot Player-ului specificat . &lt;br /&gt; Ei , cam asta a fost . Daca ati urmat toti pasii de mai sus FELICITARI ! Tocmai ati facut primul dvs Plugin . La mai multe&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>TuToRiAlE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/21-339-1</guid>
		</item>
		<item>
			<title>Cum sa ne facem serverul cu nume (idle.ro)</title>
			<link>https://dvsr.ucoz.com/forum/21-338-1</link>
			<pubDate>Sat, 01 Sep 2012 07:58:04 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/21&quot;&gt;TuToRiAlE&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 1</description>
			<content:encoded>Tutorial By Jhonny : &lt;br /&gt; Este bun numai cei care au IP Dinamic &lt;br /&gt; 1.Ne Inregistram de pe pagina asta : www.freedns.ro &lt;br /&gt; 2.Dupa ce v-ati inregistrat asteptati sa primiti un e-mail cu codul de activare. &lt;br /&gt; 3.Va faceti un subdomeniu.Nu dati la domeniu ca acolo va face site cu .ro sau .com care va v-a costa plata. &lt;br /&gt; 5.Vedeti ca aveti mai multe variante sa va faceti.Alegeti care va place mai mult. &lt;br /&gt; 6.Dupa ce v-ati facut intrati in programul freedns si logativa cu contul vostru. &lt;br /&gt; 7.Bagativa numele subdomenului ales si dati update . &lt;p&gt; Ar trebui sa mearga daca vi se intampla ceva nu e vina mea ca nu ati respectat procedurile.</content:encoded>
			<category>TuToRiAlE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/21-338-1</guid>
		</item>
		<item>
			<title>Tutorial spray logo</title>
			<link>https://dvsr.ucoz.com/forum/21-446-1</link>
			<pubDate>Sat, 01 Sep 2012 07:56:23 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/21&quot;&gt;TuToRiAlE&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 1</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;HL Tag Converter &lt;br /&gt; Prima data descarca programul HL Tag Converter. Il dezarhivezi oriunde pe disc. Dublu click pe executabilul HlTagConverter si se va deschide o fereastra . Apoi faci urmatorii pasi : &lt;br /&gt; 1. Click pe Open Image, unde alegi de pe calculatorul tau o poza care vrei tu. &lt;br /&gt; 2. Click pe Adjust Image. Se va deschide alta fereastra unde trebuie sa dai click pe Auto Size, iar mai apoi pe &quot;Apply changes and convert to 256 colors&quot; &lt;br /&gt; 3. Click pe Save Tag. Se va deschide o fereastra mai mica unde alegi &quot;Export to WAD file&quot; si dai OK. &lt;p&gt; Acum trebuie sa salvezi fisierul de doua ori : odata cu numele tempdecal si odata cu numele pldecal. Cele doua fisiere rezultate le copiezi in jocul tau Counter Strike 1.6 , in folderul cstrike, dupa care stergi folderul logos de acolo . Cand vei intra in joc si vei apasa tasta &quot;T&quot; , tatuajul va fi poza pe care ai ales-o. &lt;p&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>TuToRiAlE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/21-446-1</guid>
		</item>
		<item>
			<title>Tutorial MOTD cu poza pentru server Counter Strike</title>
			<link>https://dvsr.ucoz.com/forum/21-448-1</link>
			<pubDate>Sat, 01 Sep 2012 07:55:15 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/21&quot;&gt;TuToRiAlE&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 1</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;&lt;p&gt; Realizarea unui motd se poate face in doua moduri : &lt;p&gt; 1.Prin creerea unei poze personalizate (scrii textul pe poza) si introducerea ei intr-un cod html. &lt;br /&gt; 1. Prima metoda &lt;br /&gt; Alegi o poza de aici sau orice alta poza . &lt;p&gt; Daca ai tu o poza a ta, atunci ea trebuie redimensionata . Descarci programul PaintNet, il instalezi si il pornesti. Deschizi poza (File -&gt; Open, si alegi pozade pe calculatorul tau). Dai click in meniul de sus la Image -&gt; Resize. &lt;p&gt; Trebuie sa ai selectat « By absolute size » si deselectat « Mantain aspect ratio » &lt;p&gt; Vei dimensiona poza la urmatoarele dimensiuni : &lt;p&gt; Width : 766 px &lt;br /&gt; Hight : 388 px &lt;br /&gt; Poza este acum dimensionata. Tot ce trebuie sa faci este sa scrii textul pe ea. &lt;p&gt; Va trebui sa ai deschise ferestrele Tools si Colors . Daca nu sunt deschise dai click la Windows si le selectezi de acolo. Dupa ce ai deschis cele doua ferestre alegi culoarea textului din fereastra Colors dupa care te duci la fereastra Tools si selectezi Text ( este reprezentata printr-un A ) . Apoi scrii textul pe poza. &lt;p&gt; Dupa ce ai scris textul salvezi poza undeva pe calculatorul tau ( File -&gt; Save as , ii alegi numele si formatul – poate fi format jpg sau gif, nu conteaza). &lt;p&gt; In acest moment ai poza care va fi folosita pentru motd. &lt;p&gt; Upload-area pozei pe un site de Gazduire fisiere &lt;br /&gt; Poza trebuie urcata pe un site de File Hosting ( hosting fisiere). Pentru aceasta fa-ti un cont aici . &lt;p&gt; Dupa ce ti-ai facut cont te loghezi in el si Dai click pe UPLOAD , alegi poza si o uploadezi. Astepti pana termina, dupa care dai click pe FILES - &gt; Mai Folder (vezi poza) . Va aparea o imagine a pozei tale . Dai click pe ea, se deschide si iti va arata si URL-ul ei pe care trebuie sa-l copiezi (vezi poza). &lt;p&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;html&gt; &lt;br /&gt; &lt;head&gt; &lt;br /&gt; &lt;title&gt;Motd server&lt;/title&gt; &lt;br /&gt; &lt;style type=&quot;text/css&quot;&gt; &lt;br /&gt; &lt;!-- &lt;br /&gt; body { &lt;br /&gt; margin-left: 0px; &lt;br /&gt; margin-top: 0px; &lt;br /&gt; margin-right: 0px; &lt;br /&gt; margin-bottom: 0px; &lt;br /&gt; background-color: #000000; &lt;br /&gt; } &lt;br /&gt; --&gt; &lt;br /&gt; &lt;/style&gt; &lt;br /&gt; &lt;/head&gt; &lt;br /&gt; &lt;body&gt; &lt;br /&gt; &lt;img src=&quot;http&amp;#58;//tutoriale.com/clienti/guns84.jpg&quot; width=&quot;100%&quot; height=&quot;100%&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; border=&quot;0&quot; align=&quot;center&quot;&gt; &lt;br /&gt; &lt;/body&gt; &lt;br /&gt; &lt;/html &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;p&gt; Ceea ce trebuie inlocuit in acest cod este : &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;http://tutoriale.com/clienti/guns84.jpg&quot;&gt;http://tutoriale.com/clienti/guns84.jpg&lt;/a&gt; &lt;p&gt; Acest cod html il copiezi in HLDS&amp;#92;cstrike&amp;#92;motd.txt – unde HLDS este directorul principal al serverului. Daca in motd.txt ai alt cod, il stergi si il copiezi pe cel de mai sus. &lt;p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/y1ce35anr7lc51cx&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download PaintNET&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/sud6ldazh7lp2po0&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download poze_motd&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>TuToRiAlE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/21-448-1</guid>
		</item>
		<item>
			<title>Fraps+full+free</title>
			<link>https://dvsr.ucoz.com/forum/27-510-1</link>
			<pubDate>Fri, 31 Aug 2012 10:10:26 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/27&quot;&gt;PrOgRaMe&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;&lt;b&gt;Cred ca stiti toiti pt ce este acest program,partea buna este ca poti filma nelimitat,Bafta la filmat &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; &lt;img src=&quot;http://dvsr.ucoz.com/pozemetin2/fraps.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt; &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Download &lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://dvsr.ucoz.com/pozemetin2/fraps.rar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download full fraps&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PrOgRaMe</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/27-510-1</guid>
		</item>
		<item>
			<title>Flydmg by Slayer</title>
			<link>https://dvsr.ucoz.com/forum/58-509-1</link>
			<pubDate>Tue, 28 Aug 2012 15:44:47 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:9pt;&quot;&gt;&lt;b&gt;Flydmg este un hack care dai dmg fara sa dai din arma &lt;br /&gt; Instalare: &lt;br /&gt; Copiati fisierele din arhiva in metin&amp;#92;pack si cam atat &lt;br /&gt; Pt a putea downloada trebuie sa te inregistrezi&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;[size=12]Download&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/i5M-Ag&quot; title=&quot;http://www.esnips.com/displayimage.php?pid=34198306&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download flydmg&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-509-1</guid>
		</item>
		<item>
			<title>Ce tine de hack-uri</title>
			<link>https://dvsr.ucoz.com/forum/58-508-1</link>
			<pubDate>Tue, 28 Aug 2012 15:29:31 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Nu vreau sa vad posturi de gen: frate are virus,pune si tu un virus total pentr ca fiecare foloseste un antivirus si ceea ce tine de virus total fiecare il poate descarca si verifica pe www.virustotal.com &lt;br /&gt; P.S.Majoritatea hack-urilor se bazeaza pe un virus,puteti face post in legatura cu virusu numai dak este keylogger&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-508-1</guid>
		</item>
		<item>
			<title>STARTER</title>
			<link>https://dvsr.ucoz.com/forum/56-507-1</link>
			<pubDate>Tue, 28 Aug 2012 08:57:12 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/56&quot;&gt;TuToRiAlE &amp; GhIdUrI&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;&lt;b&gt;Aici gasiti un Starter pt clientele metin2,copiati arhiva in directorul metin si extrage,dp care portniti metinul pe starter &lt;br /&gt; Download&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/ZVQ-Ag&quot; title=&quot;http://www.esnips.com/displayimage.php?pid=34197933&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download stater&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>TuToRiAlE &amp; GhIdUrI</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/56-507-1</guid>
		</item>
		<item>
			<title>M2Fish 4.1</title>
			<link>https://dvsr.ucoz.com/forum/58-506-1</link>
			<pubDate>Tue, 28 Aug 2012 08:53:41 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;img src=&quot;http://dvsr.ucoz.com/pozemetin2/M2Fish_41.png&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt; Pt a putea downloada trebuie sa te inregistrez &lt;br /&gt; &lt;span style=&quot;color:blue&quot;&gt;[size=12]&lt;b&gt;DOWNLOAD&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/CVQ-Ag&quot; title=&quot;http://www.esnips.com/displayimage.php?pid=34197932&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download m2fish&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-506-1</guid>
		</item>
		<item>
			<title>Multihack by Kramer</title>
			<link>https://dvsr.ucoz.com/forum/58-505-1</link>
			<pubDate>Tue, 28 Aug 2012 08:42:34 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;img src=&quot;http://dvsr.ucoz.com/pozemetin2/mh185.png&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt; Functii: &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;- Speed hack &lt;br /&gt; - fog/zoom hack &lt;br /&gt; - mobber hack/mob lock &lt;br /&gt; - book reader(pservers buy books and read, books are in polish was too lazy to translate&amp;#41; &lt;br /&gt; - auto pickup &lt;br /&gt; - auto potion &lt;br /&gt; - guild exp donator &lt;br /&gt; - ghost mode(stand up as ghost after dead&amp;#41; &lt;br /&gt; - skill bot &lt;br /&gt; - and more&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;DOWNLOAD &lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/61I-Ag&quot; title=&quot;http://www.esnips.com/displayimage.php?pid=34197931&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download multihack&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-505-1</guid>
		</item>
		<item>
			<title>Client pentru metine</title>
			<link>https://dvsr.ucoz.com/forum/58-504-1</link>
			<pubDate>Tue, 28 Aug 2012 08:25:25 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Stiu ca multi alearga ff mult dp metine asa ca mam gandit sa va ajut cu un client ce contine in el Global multihack by kramer &lt;br /&gt; Functioneaza taoate functiile &lt;br /&gt; atacspeed &lt;br /&gt; movespeed &lt;br /&gt; gm detect &lt;br /&gt; metin detect &lt;br /&gt; auto potins &lt;br /&gt; mantii &lt;br /&gt; etc &lt;br /&gt; Sper sa va fie de folos :P.Sa nui faceti niciodata update pt ca dp foarte multe funtii ale hackului nu o sa ma functioneze &lt;br /&gt; Pt a putea downloada trebuie sa te inregistrez &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; &lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;DOWNLOAD&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/aFE-Ag&quot; title=&quot;http://depositfiles.com/files/0wcs6d9uu&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download client&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-504-1</guid>
		</item>
		<item>
			<title>M2Fish 4.4</title>
			<link>https://dvsr.ucoz.com/forum/58-503-1</link>
			<pubDate>Tue, 28 Aug 2012 08:11:20 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;Stiti toti destul de bine ce face acest hack asa ca nu mai am ce sa adaug &lt;br /&gt; &lt;img src=&quot;http://dvsr.ucoz.com/pozemetin2/M2Fish_41.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt; &lt;br /&gt; &lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://u.to/RVA-Ag&quot; title=&quot;http://www.esnips.com/displayimage.php?pid=34197911&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-503-1</guid>
		</item>
		<item>
			<title>Instant pickup &amp; drop hack</title>
			<link>https://dvsr.ucoz.com/forum/58-502-1</link>
			<pubDate>Tue, 28 Aug 2012 07:54:56 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;Dupca cum spune si numele este un fast pickup&amp;drophack &lt;br /&gt; El nu este un simplu hack el este mai mult ca un parazit deci nu poate fi folosit singur el depinde de un alt hack &lt;br /&gt; Cum se foloseste: &lt;br /&gt; 1)Daca il folositi cu tutorialul facut de mine sa ruleze cu m2bob ( post M2Bob [release problem]) download hPickup.dll &lt;br /&gt; 2)Dak il folositi cu alt hack trebe decat copiat fisierul .mix in folderul metinului,deci download hPickup.mix&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;DOWNLOAD&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt; &lt;a class=&quot;link&quot; href=&quot;http://dvsr.ucoz.com/metin/hPick.rar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;hPickup.dll&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt; &lt;br /&gt; DOWNLOAD&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt; &lt;a class=&quot;link&quot; href=&quot;http://dvsr.ucoz.com/metin/hPick.mix.zip&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;hPickup.mix&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-502-1</guid>
		</item>
		<item>
			<title>Cum sa rulezi un hack fara injector</title>
			<link>https://dvsr.ucoz.com/forum/56-501-1</link>
			<pubDate>Tue, 28 Aug 2012 07:41:14 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/56&quot;&gt;TuToRiAlE &amp; GhIdUrI&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;font-size:14pt;&quot;&gt;Cateva vb despre cum sa folositi hack-urile fara a folosi un injector pt ca foarte multi au problema asta &lt;br /&gt;&lt;br /&gt; 1)Orice hack are un fisier .dll ceea ce trebe sa faceti e sai modificati extensia .dll in .mix (ii dati rename ) &lt;br /&gt; 2)Copiati fisierele in folderul metinului pe care jucati( fisierl modificat .mix si celelalte dak mai are) &lt;br /&gt; 3)Porniti clientu (Starter sau autopacher) &lt;br /&gt; Cand ati pornit clientu porneste automat si hack-ul la care lati copiat in folder,astfel nu mai aveti devoie de un injector:P &lt;br /&gt;&lt;br /&gt; Probleme ce pot apare &lt;br /&gt;&lt;br /&gt; 1) Nu incercati cu m2bob ca dp versiunea 1.5.1 nu mai mere cobinat cu alte hack ceva gen cum am spus mai sus &lt;br /&gt; 2)Dak hack-ul nu porneste odata cu clientul inseamna ca hack-ul nui compatibil cu versiunea respectiva a clientului sau acel hack e un parazit(adik el trebuie sa fie combinat cu alt hack ca sa functioneze gen &quot;hPickup&quot;) &lt;br /&gt;&lt;br /&gt; Sper sa fie de folos acest topic&lt;/span&gt;</content:encoded>
			<category>TuToRiAlE &amp; GhIdUrI</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/56-501-1</guid>
		</item>
		<item>
			<title>Injectoare</title>
			<link>https://dvsr.ucoz.com/forum/58-500-1</link>
			<pubDate>Tue, 28 Aug 2012 07:39:37 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Cateva vb despre cum sa folositi hack-urile fara a folosi un injector pt ca foarte multi au problema asta &lt;br /&gt;&lt;br /&gt; 1)Orice hack are un fisier .dll ceea ce trebe sa faceti e sai modificati extensia .dll in .mix (ii dati rename ) &lt;br /&gt; 2)Copiati fisierele in folderul metinului pe care jucati( fisierl modificat .mix si celelalte dak mai are) &lt;br /&gt; 3)Porniti clientu (Starter sau autopacher) &lt;br /&gt; Cand ati pornit clientu porneste automat si hack-ul la care lati copiat in folder,astfel nu mai aveti devoie de un injector:P &lt;br /&gt;&lt;br /&gt; Probleme ce pot apare &lt;br /&gt;&lt;br /&gt; 1) Nu incercati cu m2bob ca dp versiunea 1.5.1 nu mai mere cobinat cu alte hack ceva gen cum am spus mai sus &lt;br /&gt; 2)Dak hack-ul nu porneste odata cu clientul inseamna ca hack-ul nui compatibil cu versiunea respectiva a clientului sau acel hack e un parazit(adik el trebuie sa fie combinat cu alt hack ca sa functioneze gen &quot;hPickup&quot;) &lt;br /&gt;&lt;br /&gt; Sper sa fie de folos acest topic&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-500-1</guid>
		</item>
		<item>
			<title>M2Bob [Release Problem]</title>
			<link>https://dvsr.ucoz.com/forum/58-499-1</link>
			<pubDate>Tue, 28 Aug 2012 07:34:27 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/58&quot;&gt;HaCkS&lt;/a&gt;&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;Am vazut ca foarte multi au probleme dupa ultim update la m2bob 1.5.1,ca nu mai ruleaza cu alte hack, asa ca uite aici o rezolvare &lt;br /&gt; 1)Download fisier winmm.dll si il copiati in folderul unde rulati m2bob (unde e metin2client.bin care il rulati cu m2bob) &lt;br /&gt; 2)Creati un folder &quot;hacks&quot;in folderul cu metin &lt;br /&gt; Acum ce hack vreti sa ruleze cu m2bob copiati decat .dll in folderul creat &quot;hacks&quot; ( nu incercati cu hack.mix ca nu merg,accepta doar .dll) &lt;br /&gt; Si cam atat acum rulati bob normal :P&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; Pt a putea downloada trebuie sa te inregistrez &lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;DOWNLOAD &lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Available to users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://dvsr.ucoz.com/metin/winmm.rar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;WINMM.DLL&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/span&gt;&lt;/span&gt;</content:encoded>
			<category>HaCkS</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/58-499-1</guid>
		</item>
		<item>
			<title>comenzi amx</title>
			<link>https://dvsr.ucoz.com/forum/22-495-1</link>
			<pubDate>Mon, 25 Jan 2010 17:56:12 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/22&quot;&gt;ReSuRsE&lt;/a&gt;&lt;br /&gt;Thread starter: fast2furios15&lt;br /&gt;Last message posted by: fast2furios15&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>amx_ban (nume sau #userid) (timp&gt; [motiv] &lt;br /&gt; Da ban la un jucator &lt;p&gt; amx_addban (authid sau ip) (minute&gt; [motiv] &lt;br /&gt; Adauga un ban la lista cu ban-uri(banlist) a serverului &lt;p&gt; amx_unban (authid sau ip) &lt;br /&gt; Scoate ban-ul la un jucator &lt;p&gt; amx_ss (numele) &lt;br /&gt; Face poza la un jucator ca-sa savezi daca are coade . Dupaia i ceri poza !! &lt;p&gt; amx_slay (nume sau #userid) &lt;br /&gt; Da slay la un jucator &lt;p&gt; amx_slap (nume sau #userid) [damage] &lt;br /&gt; Da slap la un jucator &lt;p&gt; amx_leave (tag) [tag1] [tag2] [tag3] &lt;br /&gt; Da kick la toti jucatorii care nu au in nume unul din tag-urile alese &lt;p&gt; amx_pause &lt;br /&gt; Pune jocul in pauza sau invers &lt;p&gt; amx_who &lt;br /&gt; Arata cine este pe server &lt;p&gt; amx_cvar (cvar) [cantitate] &lt;br /&gt; Schimba sau arata o valoare cvar &lt;p&gt; amx_map (nume_harta) &lt;br /&gt; Schimba harta &lt;p&gt; amx_nick (nume original) (nume nou) &lt;br /&gt; Schimba numele unui jucator &lt;p&gt; amx_cfg (nume_fisier) &lt;br /&gt; Executa un fisier cfg &lt;p&gt; amx_rcon (rcon comanda) &lt;br /&gt; Executa o comanda in consola serverului &lt;p&gt; amx_plugins &lt;br /&gt; Arata o lista cu pluginurile incarcate &lt;p&gt; amx_modules &lt;br /&gt; Arata o lista cu toate modulele incarcate &lt;br /&gt; amx_say (mesaj) &lt;br /&gt; Trimite un mesaj tuturor jucatorilor &lt;p&gt; amx_chat (mesaj) &lt;br /&gt; Trimite un mesaj tuturor adminilor de pe server &lt;p&gt; amx_psay (nume sau #userid) (mesaj) &lt;br /&gt; Trimite un mesaj privat unui jucator &lt;p&gt; amx_tsay (culoare) (mesaj) &lt;br /&gt; Trimite un mesaj colorat in coltul din dreapta a ecranului tuturor jucatorilor &lt;p&gt; amx_csay (culoare) (mesaj) &lt;br /&gt; trkimite un mesaj colorat pe centrul ecranului tuturor jucatorilor &lt;br /&gt; amx_votemap (harta) [harta] [harta] [harta] &lt;br /&gt; Porneste un vot pentru o harta &lt;p&gt; amx_votekick (nume sau #userid) &lt;br /&gt; Porneste un vot pentru kick la un jucator &lt;p&gt; amx_voteban (nume sau #userid) &lt;br /&gt; Porneste un vot pentru ban la un jucator &lt;p&gt; amx_vote (intrebare) (raspuns1) (raspuns2) &lt;br /&gt; Porneste un sondaj &lt;p&gt; amx_cancelvote &lt;br /&gt; Anuleaza ultimul sondaj in progres &lt;br /&gt; amxmodmenu &lt;br /&gt; Arata meniul principal AMX Mod X &lt;p&gt; amx_cvarmenu &lt;br /&gt; Arata meniul cu cvar-uri &lt;p&gt; amx_mapmenu &lt;br /&gt; Arata meniul cu harti &lt;p&gt; amx_votemapmenu &lt;br /&gt; Arata meniul cu harti pentru vot &lt;p&gt; amx_kickmenu &lt;br /&gt; Arata meniul cu kick-uri &lt;p&gt; amx_banmenu &lt;br /&gt; Arata meniul cu ban-uri &lt;p&gt; amx_slapmenu &lt;br /&gt; Arata meniul cu slap-uri &lt;p&gt; amx_teammenu &lt;br /&gt; Arata meniul cu cei care s-au mutat de la T la CT sau invers &lt;p&gt; amx_clcmdmenu &lt;br /&gt; Arata meniul cu comenzile client-side &lt;p&gt; amx_restmenu &lt;br /&gt; Arata meniul cu armele restrictionate &lt;p&gt; amx_teleportmenu &lt;br /&gt; Arata meniul cu cei care s-au teleportat &lt;p&gt; amx_pausecfgmenu &lt;br /&gt; Pauza/Rulare plugin din meniu &lt;p&gt; amx_statscfgmenu &lt;br /&gt; Arata meniul cu configuratia stats-urilor</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>fast2furios15</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-495-1</guid>
		</item>
		<item>
			<title>Sean.Paul-So.Fine</title>
			<link>https://dvsr.ucoz.com/forum/29-490-1</link>
			<pubDate>Wed, 30 Dec 2009 19:01:49 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/5agKp9of7dw&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/5agKp9of7dw&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-490-1</guid>
		</item>
		<item>
			<title>JLS - Beat Again</title>
			<link>https://dvsr.ucoz.com/forum/29-489-1</link>
			<pubDate>Wed, 30 Dec 2009 18:59:52 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/ZVVmfDWPyyU&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/ZVVmfDWPyyU&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-489-1</guid>
		</item>
		<item>
			<title>Inna - Amazing</title>
			<link>https://dvsr.ucoz.com/forum/29-488-1</link>
			<pubDate>Wed, 30 Dec 2009 18:58:29 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/6EwNk6zqipg&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/6EwNk6zqipg&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-488-1</guid>
		</item>
		<item>
			<title>Dan Balan - Chica Bomb</title>
			<link>https://dvsr.ucoz.com/forum/29-487-1</link>
			<pubDate>Wed, 30 Dec 2009 18:57:22 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/CVtvdL9FsvQ&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/CVtvdL9FsvQ&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-487-1</guid>
		</item>
		<item>
			<title>Alex ft Puya - Secret Discret</title>
			<link>https://dvsr.ucoz.com/forum/29-486-1</link>
			<pubDate>Sun, 06 Sep 2009 14:06:53 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/Lb_BxryxkzM&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/Lb_BxryxkzM&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-486-1</guid>
		</item>
		<item>
			<title>CONNECT-R - Burning Lov</title>
			<link>https://dvsr.ucoz.com/forum/29-485-1</link>
			<pubDate>Sun, 06 Sep 2009 13:19:46 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;560&quot; height=&quot;340&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/68cV989mXk4&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/68cV989mXk4&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;560&quot; height=&quot;340&quot;&gt;&lt;/embed&gt;&lt;/object&gt; &lt;br /&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/nsdoc/899d1a4b-e5c7-4448-a805-e9a224541dc4/?action=forceDL&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-485-1</guid>
		</item>
		<item>
			<title>Host pentru Clan</title>
			<link>https://dvsr.ucoz.com/forum/54-484-1</link>
			<pubDate>Sun, 06 Sep 2009 10:53:16 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/54&quot;&gt;Host Clanuri&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;br /&gt; Daca vrei ca site/forum sa iti ofere o categorie pt clanul tau,sa iti dea moderator pe ea trebuie sa faci o cerere aici . &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;&lt;br /&gt; Tip cerere: &lt;br /&gt; Nmele capitanului de clan: &lt;br /&gt; Numele clanui: &lt;br /&gt; De cat timp exista clanul: &lt;br /&gt; Cati membri are clanul: &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>Host Clanuri</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/54-484-1</guid>
		</item>
		<item>
			<title>PTB autoteambalance</title>
			<link>https://dvsr.ucoz.com/forum/7-482-1</link>
			<pubDate>Wed, 02 Sep 2009 09:36:10 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;openLayerB(&apos;LF&apos;,0,&apos;/index/40&apos;,&apos;Login&apos;,250,130,1);return false;&quot;&gt;Available for users only&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt; &lt;br /&gt; la sfarsitul fiecarei runde echilibreaza echipele &lt;p&gt; Instal : &lt;br /&gt; Fisieru sma il puneti in addons/amxmodx/scripting &lt;br /&gt; Fisieru amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; Intri in addons/amxmodx/configs, plugins.ini si adaugi linia: &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;ptb.amxx&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; 4. Editati fisierul ptb.cfg cu Notepad dupa preferintele dvs. (setari bune pentru un server de 20 jucatori): &lt;p&gt; amx_ptb maxsize 11 - nr. maxim de jucatori intr-o echipa &lt;br /&gt; amx_ptb maxdiff 2 - nr. maxim de diferenta intre dimensiunea echipelor &lt;p&gt; SAU &lt;p&gt; amx_ptb maxsize 12 - nr. maxim de jucatori intr-o echipa &lt;br /&gt; amx_ptb maxdiff 4 - nr. maxim de diferenta intre dimensiunea echipelor &lt;p&gt; Module necesare (se sterge ; din fata modulului de mai jos; acestea le gasiti in fisierul amxmodx&amp;#92;configs&amp;#92;modules.ini): &lt;br /&gt; - CStrike &lt;p&gt; &lt;/span&gt;&lt;!--/BBhide--&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-482-1</guid>
		</item>
		<item>
			<title>Subiect: admin_spec_esp</title>
			<link>https://dvsr.ucoz.com/forum/7-481-1</link>
			<pubDate>Wed, 02 Sep 2009 09:31:41 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Cel mai bun mod de detectare a wall-isilor ! Cand adminul este pe spectator sau mort pluginul arata niste vectori (linii) albastre si rosii intre cei care joaca . Astfel isi da seama care il vede pe celalalt prin zid si care nu . Incercati-l si o sa vedeti ! &lt;p&gt; Instal : &lt;br /&gt; Fisieru sma il puneti in addons/amxmodx/scripting &lt;br /&gt; Fisieru .amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; Intri in addons/amxmodx/configs, plugins.ini si adaugi linia: &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;admin_spec_esp.amxx&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-481-1</guid>
		</item>
		<item>
			<title>Ghost Chat</title>
			<link>https://dvsr.ucoz.com/forum/7-480-1</link>
			<pubDate>Wed, 02 Sep 2009 09:27:09 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>// Ghost Chat &lt;br /&gt; // 0 - pluginul este dezactivat &lt;br /&gt; // 1 - mortii pot citi ce scriu cei vii &lt;br /&gt; // 2 - mortii si cei vii pot conversa intre ei &lt;br /&gt; // 3 - doar HLTV poate citi ce scriu cei vii &lt;br /&gt; amx_ghostchat 2 &lt;br /&gt; sma nu il am dar nu e nevoie!!!</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-480-1</guid>
		</item>
		<item>
			<title>admins_online</title>
			<link>https://dvsr.ucoz.com/forum/7-479-1</link>
			<pubDate>Wed, 02 Sep 2009 09:25:10 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Descriere : Un plugin foarte folositor format din: &lt;br /&gt; - Admin Check &lt;br /&gt; - Admins Online &lt;br /&gt; Nume : Admins online &lt;br /&gt; Autor : OneEyed,Alka &lt;br /&gt; Modificat : AdorcounTer &lt;p&gt; Instal : &lt;br /&gt; Fisieru admins_online.sma il puneti in addons/amxmodx/scripting &lt;br /&gt; Fisieru admins_online.amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; Intri in addons/amxmodx/configs, plugins.ini si adaugi linia: &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;admins_online.amxx&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;p&gt; Cvar (Se adauga in amxx.cfg) : &lt;br /&gt; amx_showadmins 1 activat ; 0 dezactivat &lt;p&gt; Comenzi (Se tasteaza in chat) : &lt;br /&gt; Y /admin &lt;br /&gt; Y /admins</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-479-1</guid>
		</item>
		<item>
			<title>amx_ghost</title>
			<link>https://dvsr.ucoz.com/forum/7-478-1</link>
			<pubDate>Wed, 02 Sep 2009 08:55:21 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Transforma adninul in stafie si nu stiu daca te pot vedea ca eu am incercat doar cu boti si ei ma vedeau dar cand trageau nu ma afecta nici cand cazi si tu poti sai omori pe ei. &lt;br /&gt; comenzi: &lt;br /&gt; amx_ghost (pornit) &lt;br /&gt; amx_unghost (oprit ) &lt;br /&gt; daca dai prima comanda numai admini vor fi stafii &lt;br /&gt; poti sa dai si: &lt;br /&gt; amx_ghost &lt;nume&gt; &lt;br /&gt; amx_unghost &lt;nume&gt; &lt;br /&gt; si jucatorul devine stafie &lt;p&gt; Instalare: &lt;br /&gt; Fisierul care se termina cu amxx il puneti in addons&amp;#92;amxmodx&amp;#92;plugins &lt;br /&gt; Fisierul care se termina cu sma il puneti in addons&amp;#92;amxmodx&amp;#92;scripting &lt;br /&gt; Apoi intrati in addons&amp;#92;amxmodx&amp;#92;config&amp;#92;plugins.ini scrieti la sfarsit &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;admin_ghost.amxx&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-478-1</guid>
		</item>
		<item>
			<title>Muzica pe server</title>
			<link>https://dvsr.ucoz.com/forum/7-477-1</link>
			<pubDate>Wed, 02 Sep 2009 08:47:09 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>INSTALARE: &lt;p&gt; 1. mai intai de toate vom copia fisierul amp.sma in &lt;br /&gt; addons/amxmodx/scripting &lt;br /&gt; 2.apoi Copiem fisierul amp.amxx in addons/amxmodx/plugins &lt;br /&gt; 3.Fisierele amp_medialist + amp_player se pun in &lt;br /&gt; hlds&amp;#92;cstrike&amp;#92;addons&amp;#92;amxmodx&amp;#92;configs &lt;br /&gt; 4.Adaugam, la sfarsit, in fisierul cstrike/addons/amxmodx/configs/plugins.ini urmatoarea linie: &lt;br /&gt; amp.amxx &lt;p&gt; NOTA :dupa ce ai fakut astea kand vei intra pe server vei apasa pe y apoi vei tasta /listen dupa kre iti va aparea o lista frumoasa de servere online radio...io am pus 15 servere radio...mai multe genuri...din kre u vei selekta apasand pe taste de la 1 la 8 ..apoi vei apasa pe 9 ...si apoi vei selekta iar de la 1 la 7....fiind 15 kanale..sau impartit in 2...deci 8 in prima parte ,iar 7 in a doua...iar pt a nu mai askulta...tasteaza /stop &lt;p&gt; - pentru a skimba/sterge/adauga alt server cautzi pe google si apoi le vei adauga in amp_medialist &lt;br /&gt; - prin stergere inseamna k vei sterge un intreg rand ...incepand de la radio ..pana unde se termina adresa online &lt;br /&gt; - prin adaugare vei face asa ...fie vei pune peste alt rand sau in kontinuarea acestor randuri &quot;[Radio] ....&quot; &quot;http://.../&quot; unde primele&quot;...&quot; reprezinta denumirea pe kre o pui u la radio si ultimele&quot;...&quot; reprezinta adresa radioului[url&apos;ul acestuia]</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-477-1</guid>
		</item>
		<item>
			<title>Plugin pt codati (Bindanticod )</title>
			<link>https://dvsr.ucoz.com/forum/7-476-1</link>
			<pubDate>Wed, 02 Sep 2009 08:39:27 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Atunci cand un Jucator tasteaza una din tastele (F9 , F12 , Insert , Deleted , End) , el va executa comanda de Disconnect (deconectandul de pe servarul Dvs) ! &lt;p&gt; Descriere : Acest plugin bindeaza tastele fiecarui Jucator care intra pe server ! &lt;br /&gt; Nume : Bindanticod &lt;br /&gt; Versiune : 1.0 &lt;p&gt; Taste Bind : Tastele pe care este pus Bind ! &lt;br /&gt; - F9 &lt;br /&gt; - F12 &lt;br /&gt; - Insert &lt;br /&gt; - Deleted &lt;br /&gt; - End &lt;p&gt; Instalare : &lt;br /&gt; 1. Fisierul Bindanticod.amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; 2. Intrati in fisierul addons/amxmodx/configs/plugins.ini si adaugati la urma : &lt;p&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;Bindanticod.amxx&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-476-1</guid>
		</item>
		<item>
			<title>Pitbull - I know you want me</title>
			<link>https://dvsr.ucoz.com/forum/29-475-1</link>
			<pubDate>Tue, 01 Sep 2009 07:17:42 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/29&quot;&gt;ViDeOcLiPuRi&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/knmoQOeLXWw&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/knmoQOeLXWw&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.netdrive.ws/219704.html &quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download videoclip&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ViDeOcLiPuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/29-475-1</guid>
		</item>
		<item>
			<title>Death aboard</title>
			<link>https://dvsr.ucoz.com/forum/52-474-1</link>
			<pubDate>Mon, 31 Aug 2009 11:18:24 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/52&quot;&gt;ReSuRsE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Aceasta mapa se poate juca si pe single player &lt;p&gt; &lt;img src=&quot;http://dvsr.ucoz.com/l4d/deathaboard.jpg&quot; border=&quot;0&quot;&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/an9h3c7pluxs4osu&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download mapa&lt;/a&gt; &lt;br /&gt; Instalare: &lt;br /&gt; Copiati fisierul care lati extras si copiatil in left 4 dead&amp;#92;addons &lt;p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ReSuRsE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/52-474-1</guid>
		</item>
		<item>
			<title>Undead_mine</title>
			<link>https://dvsr.ucoz.com/forum/52-473-1</link>
			<pubDate>Mon, 31 Aug 2009 11:10:20 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/52&quot;&gt;ReSuRsE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;br /&gt; Aceasta mapa se poate juca si pe single player &lt;br /&gt; &lt;img src=&quot;http://dvsr.ucoz.com/l4d/undeadmine.jpg&quot; border=&quot;0&quot;&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/xwn49zufcacfmkcj&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download Undead_Mine&lt;/a&gt; &lt;br /&gt; Instalare: &lt;br /&gt; Copiati fisierul care lati extras si copiatil in left 4 dead&amp;#92;addons &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ReSuRsE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/52-473-1</guid>
		</item>
		<item>
			<title>Escape from Toronto</title>
			<link>https://dvsr.ucoz.com/forum/52-472-1</link>
			<pubDate>Mon, 31 Aug 2009 11:03:32 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/52&quot;&gt;ReSuRsE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;br /&gt; Aceasta mapa se poate juca si pe single player &lt;br /&gt; &lt;img src=&quot;http://dvsr.ucoz.com/l4d/escapefromtoronto.jpg&quot; border=&quot;0&quot;&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/74917f5pm9n979q1&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download escape from toronto&lt;/a&gt; &lt;p&gt; Instalare: &lt;br /&gt; Copiati fisierul care lati extras si copiatil in left 4 dead&amp;#92;addons &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ReSuRsE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/52-472-1</guid>
		</item>
		<item>
			<title>Dawn_Wake</title>
			<link>https://dvsr.ucoz.com/forum/52-471-1</link>
			<pubDate>Mon, 31 Aug 2009 10:54:48 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/52&quot;&gt;ReSuRsE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;img src=&quot;http://dvsr.ucoz.com/l4d/dawnavake.jpg&quot; border=&quot;0&quot;&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/j1nzzr3qvxb39rhd&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download Dawn_wake&lt;/a&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Instalare: &lt;br /&gt; Copiati fisierul care extras di arhiva si il copiati in left 4 dead&amp;#92;addons &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ReSuRsE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/52-471-1</guid>
		</item>
		<item>
			<title>ResidenteviL</title>
			<link>https://dvsr.ucoz.com/forum/52-470-1</link>
			<pubDate>Mon, 31 Aug 2009 10:12:15 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/52&quot;&gt;ReSuRsE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://depositfiles.com/files/kixw24rwf&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download mapa&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>ReSuRsE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/52-470-1</guid>
		</item>
		<item>
			<title>Admin</title>
			<link>https://dvsr.ucoz.com/forum/50-469-1</link>
			<pubDate>Thu, 27 Aug 2009 08:48:09 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/50&quot;&gt;TuToRiAlE Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Sfatul nostru este sa pui adminul pe nume cu parola. Celelalte (cel pe ip sau pe id steam) s-ar putea sa nu mearga. &lt;br /&gt; Pentru a pune admin intri in SERVER&amp;#92;l4d&amp;#92;left4dead&amp;#92;addons&amp;#92;sourcemod&amp;#92;configs si deschizi admins_simple.ini cu Notepad sau Wordpad. Sub tot ce e acolo adaugi o linie ca aceasta: &lt;p&gt; Quote: &lt;br /&gt; &quot;Nume&quot; &quot;99:z&quot; &quot;parola&quot; &lt;p&gt; salvezi fisierul si iesi. &lt;p&gt; Apoi intri in core.cfg din acelasi folder si cauti linia 55 : &lt;p&gt; Quote: &lt;br /&gt; &quot;PassInfoVar&quot; &quot;_password&quot; &lt;p&gt; Acolo in loc de _password pui o valoare care vrei tu (sa fie totusi ceva simplu). De exemplu: &lt;p&gt; Quote: &lt;br /&gt; &quot;PassInfoVar&quot; &quot;_gigi&quot; &lt;p&gt; Atentie! Nu stergi _ din fata valorii ! &lt;br /&gt; Salvezi fisierul si iesi. &lt;p&gt; Intri in joc si inainte de a te conecta pe server dai in consola: &lt;p&gt; Quote: &lt;br /&gt; setinfo _gigi parola &lt;p&gt; Cu un spatiu dupa setinfo! &lt;p&gt; Comanda care deschide meniul admin in joc este sm_admin in consola. &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>TuToRiAlE Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/50-469-1</guid>
		</item>
		<item>
			<title>Switch - Swap players</title>
			<link>https://dvsr.ucoz.com/forum/53-468-1</link>
			<pubDate>Thu, 27 Aug 2009 08:43:18 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;Acest plugin permite schimbarea unui jucator de la o echipa la alta, precum si schimbarea locurilor a doi jucatori adversi intre ei. &lt;p&gt; Instalare: &lt;br /&gt; 1. Se copiaza L4DSwitchPlayers.smx in sourcemod&amp;#92;plugins &lt;br /&gt; 2. Se copiaza l4dswitchplayers.txt in sourcemod&amp;#92;gamedata &lt;br /&gt; 3. Optional se copiaza L4Dswitchplayers.sp in sourcemod&amp;#92;scripting &lt;p&gt; Pluginul ataseaza 2 noi comenzi in meniul sm_admin: &lt;br /&gt; Switch player - schimbarea unui jucator &lt;br /&gt; Swap players - inversarea locurilor a doi jucatori adversi&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Heavy_Smoker&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-468-1</guid>
		</item>
		<item>
			<title>Unscrambler - pastreaza componenta echipelor</title>
			<link>https://dvsr.ucoz.com/forum/53-467-1</link>
			<pubDate>Thu, 27 Aug 2009 08:39:39 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Poate ati patit-o ca pe serverele versus, atunci cand se schimba nivelul intr-o campanie sa te trezesti in echipa adversa. Acest lucru se intampla din cauza deconectarii unor jucatori chiar in timpul schimbarii hartii. Este destul de enervant. &lt;p&gt; Acest plugin rezolva problema...pastreaza componenta echipelor, salveaza aceasta componenta inainte de schimbarea nivelului, iar daca dupa schimbare s-a modificat ceva, muta jucatorii in echipele cu care au pornit. &lt;p&gt; Instalare &lt;p&gt; 1. Copiati l4dunscrambler.smx in sourcemod&amp;#92;plugins &lt;br /&gt; 2. Copiati l4dunscrambler.txt in sourcemod&amp;#92;gamedata &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Baross&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-467-1</guid>
		</item>
		<item>
			<title>Connect announcer</title>
			<link>https://dvsr.ucoz.com/forum/53-466-1</link>
			<pubDate>Thu, 27 Aug 2009 08:36:08 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acest plugin arata un mesaj hud in momentul conectarii/deconectarii jucatorului. &lt;p&gt; Mesajul contine Nume -&gt; Id Steam -&gt; Tara &lt;p&gt; Instalare &lt;p&gt; 1. Copiati cd_announcer.smx in sourcemod&amp;#92;plugins &lt;br /&gt; 2. Copiati cdannouncer.phrases.txt in sourcemod&amp;#92;translations &lt;br /&gt; 3. Copiati geoip.inc in sourcemod&amp;#92;scripting&amp;#92;include&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Baross&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-466-1</guid>
		</item>
		<item>
			<title>L4D Gore - efecte sangeroase</title>
			<link>https://dvsr.ucoz.com/forum/53-465-1</link>
			<pubDate>Thu, 27 Aug 2009 08:33:26 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acest plugin este unul fun, nu este necesar functionarii corecte a serverului. Pluginul, cum probabil stii deja de la cs 1.6 sau source, introduce efecte sangeroase majore in joc..de parca ar mai fi fost nevoie de ele in L4D care oricum e o baie de sange &lt;p&gt; Instalare &lt;p&gt; 1. Copiezi L4DGore.smx in addons&amp;#92;sourcemod&amp;#92;plugins . &lt;br /&gt; 2. Copiezi gore_config.txt in addons&amp;#92;sourcemod&amp;#92;data . &lt;p&gt; Plugin-ul s-ar putea sa faca ceva lag...deci nu-l folosi decat daca ai un calculator performant si o conexiune buna la internet. &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugin creat de Heavy_Smoker&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-465-1</guid>
		</item>
		<item>
			<title>l4dvsinfectedbots - boti infectati</title>
			<link>https://dvsr.ucoz.com/forum/53-464-1</link>
			<pubDate>Thu, 27 Aug 2009 08:29:16 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acest plugin spawn-eaza boti infectati pe serverele versus in cazul in care echipa Infected nu are destui jucatori. &lt;p&gt; Pluginul este bun pentru cazul in care serverul se umple mai greu cu jucatori umani. Pentru ca jocul sa decurga cat de cat normal, pluginul va da spawn unor infectati (boomer, smoker, hunter) care sa tina locul umanilor. &lt;p&gt; Instalare: &lt;br /&gt; Se copiaza l4dvsinfectedbots.smx in sourcemod&amp;#92;plugins &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Heavy_Smoker&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-464-1</guid>
		</item>
		<item>
			<title>Force Mission Changer</title>
			<link>https://dvsr.ucoz.com/forum/53-463-1</link>
			<pubDate>Thu, 27 Aug 2009 08:26:22 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acesta este un plugin foarte folositor avand in vedere ca serverele L4D nu sunt setate sa schimbe campania atunci cand aceasta se termina. Dupa terminarea campaniei, serverul se intoarce automat la Lobby, fapt care face ca toti jucatorii sa fie dati afara de pe server. Pluginul Mapchanger forteaza schimbarea campaniei catre o alta pe care o setezi tu. &lt;p&gt; Cerinte: &lt;p&gt; Sourcemod 1.2.1 instalat (daca ai facut serverul dupa tutorialul nostru, cu L4D Server Creator, acesta este deja instalat). &lt;p&gt; Instalare &lt;p&gt; 1. Se copiaza sm_l4dvs_mapchanger.smx in addons&amp;#92;sourcemod&amp;#92;plugins . &lt;br /&gt; 2. Se copiaza sm_l4dvs_mapchanger.txt in addons&amp;#92;sourcemod&amp;#92;data . &lt;br /&gt; 3. Se copiaza sm_l4dvs_mapchanger.cfg in cfg&amp;#92;sourcemod . &lt;br /&gt; 4. Optional se copiaza sm_l4dvs_mapchanger.sp in addons&amp;#92;sourcemod&amp;#92;scripting . &lt;p&gt; Editare Campanie urmatoare &lt;p&gt; Aceasta se face in fisierul sm_l4dvs_mapchanger.txt. In arhiva pe care am atasat-o, hartile sunt editate de noi. Daca vrei sa schimbi ordinea editezi dupa cum urmeaza &lt;p&gt; CVAR &lt;p&gt; sm_l4d_fmc_version - versiunea pluginului &lt;br /&gt; sm_l4d_fmc - activeaza schimbarea campaniei cand aceasta se termina &lt;br /&gt; sm_l4d_fmc_ifdie - activeaza schimbarea campaniei cand toti jucatorii mor (modul coop) &lt;br /&gt; sm_l4d_fmc_crec - numarul de evenimente RoundEnd (nivele ale campaniei) pana cand va fi schimbata campania, pentru modul versus (def - 4 NU schimbati!). &lt;br /&gt; sm_l4d_fmc_def - campania default pentru schimbare &lt;br /&gt; sm_l4d_fmc_chdelayvs - decalaj in secunde pana cand harta va fi schimbata (modul versus) &lt;br /&gt; sm_l4d_fmc_chdelaycoop - decalaj in secunde pana cand harta va fi schimbata (modul coop) &lt;br /&gt; sm_l4d_fmc_announce - activeaza mesajul catre jucatori, care aduce la cunostinta harta care va urma &lt;p&gt; Atentie! Daca in sm_l4dvs_mapchanger.txt nu este setata urmatoarea harta, aceasta va fi schimbata cu cea default (setata prin cvar-ul sm_l4d_fmc_def). &lt;br /&gt; Acest plugin nu schimba nivelele unei campanii ci doar campaniile, dupa ce ultimul nivel se termina &lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Baross&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-463-1</guid>
		</item>
		<item>
			<title>High ping kicker</title>
			<link>https://dvsr.ucoz.com/forum/53-462-1</link>
			<pubDate>Thu, 27 Aug 2009 08:20:18 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acesta este un HPK ce isi face treaba mai bine decat altele. &lt;br /&gt; Acest plugin chiar da afara lagarii. &lt;p&gt; Instalare &lt;p&gt; Copiezi fieierul vbping.smx in left4dead&amp;#92;addons&amp;#92;sourcemod&amp;#92;plugins &lt;br /&gt; Restart la server sau schimbare de harta, daca serverul este pornit. &lt;p&gt; Cvar-uri &lt;br /&gt; La prima rulare a pluginului, acesta va crea un fisier de configuratie in left4dead&amp;#92;cfg&amp;#92;sourcemod. &lt;p&gt; Numele lui este vbping.cfg si contine urmatoarele cvar-uri: &lt;p&gt; sm_vbping_mintime - timpul minim dupa care un jucator va fi verificat dupa conectare &lt;br /&gt; sm_vbping_maxping - pingul maxim admis &lt;br /&gt; sm_vbping_checkrate - rata de verificare a pigului jucatorilor &lt;br /&gt; sm_vbping_maxwarnings - nr maxim de atentionari inainte ca jucatorul sa fie dat afara &lt;br /&gt; sm_vbping_minplayers - nr minim de jucatori care trebuie sa fie pe server pentru ca pluginul sa inceapa verificarea pingului &lt;br /&gt; sm_vbping_kickmsg - mesajul pentru kick &lt;br /&gt; sm_vbping_showpublickick - activarea/dezactivarea mesajului de kick &lt;br /&gt; sm_vbping_kickmsgpublic - mesajul public pe care il vad jucatorii de pe server cand cineva e dat afara &lt;br /&gt; sm_vbping_showwarnings - activeaza/dezactiveaza atentionarile pentru jucatorii cu ping peste limita admisa &lt;br /&gt; sm_vbping_warningmsg - mesajul de atentionare &lt;p&gt; Scimbati valorile cvarurilor dupa cum vreti.&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Heavy_Smoker&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-462-1</guid>
		</item>
		<item>
			<title>Pach pt servere non steam</title>
			<link>https://dvsr.ucoz.com/forum/51-461-1</link>
			<pubDate>Thu, 27 Aug 2009 08:16:30 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/51&quot;&gt;KiTuRi Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Dupa ce fati facut un server folositi acest pach pt al face non-steam &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/z90udql9fjjeoqai&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download pach non-steam&lt;/a&gt; &lt;p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>KiTuRi Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/51-461-1</guid>
		</item>
		<item>
			<title>Pach pt clienti non steam vs 1.0.1.4</title>
			<link>https://dvsr.ucoz.com/forum/51-460-1</link>
			<pubDate>Thu, 27 Aug 2009 08:13:49 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/51&quot;&gt;KiTuRi Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;Acest pach este pt clienti l4d non-steam il intalati in folderul unde aveti instalat l4d &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.fbx.ro/zic04vkzpfri56xe&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download Pach 1.0.1.4&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>KiTuRi Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/51-460-1</guid>
		</item>
		<item>
			<title>Mai mult de 8 jucatori</title>
			<link>https://dvsr.ucoz.com/forum/53-459-1</link>
			<pubDate>Thu, 27 Aug 2009 08:09:38 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;Aceasta extensie pentru Sourcemod deblocheaza numarul maxim de jucatori (default 8 pe versus sau 4 pe coop) si iti da posibilitatea de a mari numarul maxim. &lt;p&gt; Instalare &lt;br /&gt; Extrageti arhiva in SERVER&amp;#92;l4d&amp;#92;left4dead&amp;#92;adons&amp;#92;sourcemod &lt;p&gt; Folosire &lt;br /&gt; Puneti in server.cfg valoarea cvarului maxplayers pe care o vreti. Ex: &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;l4d_maxplayers 12 &lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt; Daca nu aveti acest cvar, il editati voi. &lt;p&gt; Pentru versus folositi aceasta extensie impreuna cu &lt;a class=&quot;link&quot; href=&quot;http://dvsr.ucoz.com/forum/53-458-1&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;plugins superversus&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-459-1</guid>
		</item>
		<item>
			<title>Super versus</title>
			<link>https://dvsr.ucoz.com/forum/53-458-1</link>
			<pubDate>Thu, 27 Aug 2009 08:05:44 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;Acest plugin se foloseste impreuna cu extensia L4D Downtown pentru a mari numarul de jucatori pe serverele versus. &lt;p&gt; Instalare &lt;br /&gt; 1. Copiati l4d_superversus.smx in addons/sourcemod/plugins &lt;p&gt; Configuratiile le gasiti in cfg/sourcemod (fisierul va fi creeat automat la prima rulare a pluginului)&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-458-1</guid>
		</item>
		<item>
			<title>Mutare jucatori</title>
			<link>https://dvsr.ucoz.com/forum/53-457-1</link>
			<pubDate>Thu, 27 Aug 2009 08:01:11 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/53&quot;&gt;PlUgInS Left 4 Dead&lt;/a&gt;&lt;br /&gt;Thread starter: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;b&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;Un plugin foarte folositor. Introduce in meniul admin doua noi optiuni: switch (mutarea unui jucatori dintr-o echipa in alta) si swap (schimbarea locurilor a doi jucatori din echipe diferite). &lt;br /&gt; Valve a restrictionat mutarea jucatorilor la 1 pe harta, deci acest plugin este necesar daca vrei mai multe schimbari. Numai adminii cu acces la meniul admin au acces si la aceste doua comenzi.&lt;/span&gt;&lt;/b&gt; &lt;p&gt; Instalare &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;1. Copiezi L4DSwitchPlayers.smx in addons&amp;#92;sourcemod&amp;#92;plugins . &lt;br /&gt; 2. Copiezi L4DSwitchPlayers.txt in addons&amp;#92;sourcemod&amp;#92;gamedata . &lt;br /&gt;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;Plugins creat de Heavy_Smoker&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUgInS Left 4 Dead</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/53-457-1</guid>
		</item>
	</channel>
</rss>