<?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>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>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>Skin cutit</title>
			<link>https://dvsr.ucoz.com/forum/22-337-1</link>
			<pubDate>Tue, 02 Jun 2009 08:43:04 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/nkrrar/;9649622;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://img529.imageshack.us/my.php?image=csdeagle70000jd3.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img529.imageshack.us/img529/252/csdeagle70000jd3.th.png&quot; border=&quot;0&quot;&gt;&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-337-1</guid>
		</item>
		<item>
			<title>SKIN 3.2</title>
			<link>https://dvsr.ucoz.com/forum/22-336-1</link>
			<pubDate>Tue, 02 Jun 2009 08:42: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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>de downloadat &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/32rar/;9581463;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI&lt;/a&gt; &lt;br /&gt; si o poza &lt;a class=&quot;link&quot; href=&quot;http://img212.imageshack.us/my.php?image=fysnow0004pa2.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img212.imageshack.us/img212/5695/fysnow0004pa2.th.png&quot; border=&quot;0&quot;&gt;aici&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-336-1</guid>
		</item>
		<item>
			<title>skin calas</title>
			<link>https://dvsr.ucoz.com/forum/22-330-1</link>
			<pubDate>Fri, 29 May 2009 05:24:39 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>aceste skinuri se copie in foldeul counter strike=&gt;models &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;in models nu se copie decat cele care se termina in mdl&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; aici e poza &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://img140.imageshack.us/my.php?image=fysnow0002gh2.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img140.imageshack.us/img140/2777/fysnow0002gh2.th.png&quot; border=&quot;0&quot;&gt;poza&lt;/a&gt; &lt;br /&gt; iar aici &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/calas+auriuzip/;9520764;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-330-1</guid>
		</item>
		<item>
			<title>skins 2.2 misto</title>
			<link>https://dvsr.ucoz.com/forum/22-329-1</link>
			<pubDate>Fri, 29 May 2009 05:23:19 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>aceste skinuri se copie in foldeul counter strike=&gt;models &lt;br /&gt; Code &lt;br /&gt; in models nu se copie decat cele care se termina in mdl &lt;br /&gt; uite o poza &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://img220.imageshack.us/my.php?image=fysnow0000fb3.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img220.imageshack.us/img220/543/fysnow0000fb3.th.png&quot; border=&quot;0&quot;&gt;asta&lt;/a&gt; &lt;br /&gt; si uite si un link &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/xm1014+05rar/;9520794;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-329-1</guid>
		</item>
		<item>
			<title>harti din productia T</title>
			<link>https://dvsr.ucoz.com/forum/22-328-1</link>
			<pubDate>Fri, 29 May 2009 05:21:50 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>uitati niste poze &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://img296.imageshack.us/my.php?image=kaarcht0000yj4.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img296.imageshack.us/img296/7729/kaarcht0000yj4.th.png&quot; border=&quot;0&quot;&gt;asta&lt;/a&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://img296.imageshack.us/my.php?image=fytbitet0000ho5.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img296.imageshack.us/img296/9881/fytbitet0000ho5.th.png&quot; border=&quot;0&quot;&gt;asta&lt;/a&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://img296.imageshack.us/my.php?image=fysnowt0000ff0.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img296.imageshack.us/img296/7062/fysnowt0000ff0.th.png&quot; border=&quot;0&quot;&gt;asta&lt;/a&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://img181.imageshack.us/my.php?image=fylabirintxt0000xy6.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img181.imageshack.us/img181/324/fylabirintxt0000xy6.th.png&quot; border=&quot;0&quot;&gt;si asta&lt;/a&gt; &lt;p&gt; is acum uite si un link de la cele patru harti&lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/harti+di+productia+Trar/;9524706;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt; &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;SI INCA CEVA DAK VRETI SKINURI SI HARTI PT SURCE FACETI TOPIC NOU LA CERI&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-328-1</guid>
		</item>
		<item>
			<title>Skin 4.3 ,misto</title>
			<link>https://dvsr.ucoz.com/forum/22-264-1</link>
			<pubDate>Wed, 22 Apr 2009 17:51:41 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>pt inceput asta m4a1 &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/m4a1+22rar/;9427560;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download skin&lt;/a&gt; &lt;br /&gt; si poza &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://img153.imageshack.us/my.php?image=csassault0001cv7.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img153.imageshack.us/img153/2594/csassault0001cv7.th.png&quot; border=&quot;0&quot;&gt;ASTA&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-264-1</guid>
		</item>
		<item>
			<title>Skin 5.1 misto</title>
			<link>https://dvsr.ucoz.com/forum/22-263-1</link>
			<pubDate>Wed, 22 Apr 2009 17:49:35 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>aceste skinuri se copie in foldeul counter strike=&gt;models &lt;p&gt; Code &lt;br /&gt; in models nu se copie decat cele care se termina in mdl &lt;br /&gt; uite poza&lt;a class=&quot;link&quot; href=&quot;http://img140.imageshack.us/my.php?image=fysnow0001ol2.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img140.imageshack.us/img140/1921/fysnow0001ol2.th.png&quot; border=&quot;0&quot;&gt;poza&lt;/a&gt; &lt;br /&gt; iar linkul &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/minigunrar/;9520874;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-263-1</guid>
		</item>
		<item>
			<title>Skin 2 pistoale</title>
			<link>https://dvsr.ucoz.com/forum/22-262-1</link>
			<pubDate>Wed, 22 Apr 2009 17:47:49 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>&lt;a class=&quot;link&quot; href=&quot;http://img246.imageshack.us/my.php?image=hawksgoldendeagleconverwd9.jpg&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img246.imageshack.us/img246/2341/hawksgoldendeagleconverwd9.th.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt; &lt;p&gt; si de downloadat &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/hawksgoldeneagleszip/;9649618;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-262-1</guid>
		</item>
		<item>
			<title>skins cutit 1</title>
			<link>https://dvsr.ucoz.com/forum/22-87-1</link>
			<pubDate>Sat, 28 Feb 2009 15:25:43 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>aceste skinuri se copie in foldeul counter strike=&gt;models &lt;br /&gt; Code &lt;br /&gt; in models nu se copie decat cele care se termina in mdl &lt;br /&gt; si ACUM UITE O POZA &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://img138.imageshack.us/my.php?image=cutitos8.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img138.imageshack.us/img138/262/cutitos8.th.png&quot; border=&quot;0&quot;&gt;asta&lt;/a&gt; &lt;p&gt; iar acum si un link &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/cutitrar/;9521540;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt; &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;SI INCA CEVA DAK VRETI SKINURI SI HARTI PT SURCE FACETI TOPIC NOU LA CERI&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-87-1</guid>
		</item>
		<item>
			<title>skin c4 misto</title>
			<link>https://dvsr.ucoz.com/forum/22-86-1</link>
			<pubDate>Sat, 28 Feb 2009 15:24:34 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: jhonny&lt;br /&gt;Last message posted by: jhonny&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>de download &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/c4+12rar/;9593889;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI&lt;/a&gt; &lt;br /&gt; si o poza &lt;a class=&quot;link&quot; href=&quot;http://img181.imageshack.us/my.php?image=dedust20003zs2.png&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img181.imageshack.us/img181/6830/dedust20003zs2.th.png&quot; border=&quot;0&quot;&gt;AICI&lt;/a&gt;</content:encoded>
			<category>ReSuRsE</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/22-86-1</guid>
		</item>
		<item>
			<title>cs 1.6 lan T modificat</title>
			<link>https://dvsr.ucoz.com/forum/10-53-1</link>
			<pubDate>Wed, 25 Feb 2009 20:53:33 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/10&quot;&gt;KiTuRi&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>am modificat aproape 90% din arme si sunetele lor.asa ca dak vreti un cs cu skinuri total diferite de ce le normale ial pe asta de aici ===&gt;&lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/LAN+T+modificat+by+jhonyrar/;9669917;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download lant lan T&lt;/a&gt;</content:encoded>
			<category>KiTuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/10-53-1</guid>
		</item>
		<item>
			<title>Server gata facut</title>
			<link>https://dvsr.ucoz.com/forum/10-52-1</link>
			<pubDate>Wed, 25 Feb 2009 20:52:16 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/10&quot;&gt;KiTuRi&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;!--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;span class=&quot;qName&quot;&gt;&lt;!--qn--&gt;&quot;Babau&quot;&lt;!--/qn--&gt;&lt;/span&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;mam gandit ca ar fi bine sa fac un server si sal pun pe forum ,deci nutreb decat downloadat si dezarhivat si gata serverul ok acum uite un link de downloadat &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/server1rar/;9594897;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI ESTE LINKUL&lt;/a&gt; &lt;br /&gt; acum ce contine: &lt;br /&gt; ACEST SERVER CONTINE &lt;br /&gt; amxmodx &lt;br /&gt; booster &lt;br /&gt; hlguard &lt;br /&gt; metamod &lt;br /&gt; statsme &lt;br /&gt; :::::::::::::::::::::::::::::::::::: &lt;br /&gt; join_ip.amxx &lt;br /&gt; admin_llama.amxx &lt;br /&gt; amxx_am_like.amx x &lt;br /&gt; amxx_fuckoff.amxx &lt;br /&gt; amx_hpk.amxx &lt;br /&gt; roundsound.amxx &lt;br /&gt; amxx_who_am.amxx &lt;br /&gt; ultimate_sounds.amxx &lt;br /&gt; admin_ss.amxx &lt;br /&gt; kill_flash.amxx &lt;br /&gt; Bomb.amxx &lt;br /&gt; new_ round_stats.amxx &lt;br /&gt; amx_super.amxx &lt;br /&gt; teamalert.amxx &lt;br /&gt; hack_hunter.amxx &lt;br /&gt; grenade_trail.amxx &lt;br /&gt; grenaderealism.amxx &lt;br /&gt; SayRestart.amxx &lt;br /&gt; amx_gore_ultim ate.amxx &lt;br /&gt; automatic_knife_duel.amxx &lt;br /&gt; colored_flashbangs.amxx &lt;br /&gt; colorchat.amxx &lt;br /&gt; spawn_mirror_damage.amxx &lt;br /&gt; killannounce.amxx &lt;br /&gt; connectsound.amxx &lt;br /&gt; hostagepush.amxx &lt;br /&gt; countrywelcome.amxx &lt;br /&gt; enter-leave_message.amxx &lt;br /&gt; reallite_hlg.amxx &lt;br /&gt; admins_online.amxx &lt;br /&gt; reloadbar.amxx &lt;br /&gt; kill_text_anounce_ beta.amxx &lt;br /&gt; bullet_damage.amxx &lt;br /&gt; descriptive_fire_in_the_hole!.amxx &lt;br /&gt; clock_date.amxx &lt;br /&gt; enhanced_death.amxx &lt;br /&gt; admin_spec_esp.amxx &lt;br /&gt; country_kicker .amxx &lt;br /&gt; live_team.amxx &lt;br /&gt; ultimate_anticamping.amxx &lt;br /&gt; amx_ejectcd.amxx &lt;br /&gt; deylight-weather_events.amxx &lt;br /&gt; :::::::::::::::::::::::::::::::: &lt;p&gt; SI IN SPECIAL ARE SI MULTE PLUGINSURI FUN &lt;p&gt; :::::::::::::::::::::::::::::::: &lt;p&gt; INCERCATIL SI DAK E VREO PROBLEMA FACETI UN POST CU PROBLEMA &lt;p&gt; :::::::::::::::::::::::::::::::: &lt;p&gt; &lt;b&gt;&lt;span style=&quot;color:yellow&quot;&gt;am vazut ca a fost downloadat de foarte multe ori asa ca astept si eu o parere despre el&lt;/span&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>KiTuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/10-52-1</guid>
		</item>
		<item>
			<title>server creator</title>
			<link>https://dvsr.ucoz.com/forum/10-51-1</link>
			<pubDate>Wed, 25 Feb 2009 20:51:18 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/10&quot;&gt;KiTuRi&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;Cu acest kit poti crea un server ff simplu,2click pe chit dai instalare intrun folder dorit si creat de tine si asteptam 2-3 ore pana se instaleaaza dupa care copiem un pach in counter strike si sev o sa fie perfect,si acum ast raspunsuri despre cu vati descurcat cu el &lt;br /&gt; aici download program &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://dodownload.filefront.com/9808851//bf376c897fa8d2cf5c58b3d26c0acf2d409bf2a20ff2a7f5da24a849c65610f7ff21cc64dbad7838&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI&lt;/a&gt;&lt;/span&gt; &lt;br /&gt; aici download pach&lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://dodownload.filefront.com/9808881//bf376c897fa8d2cf5c58b3d26c0acf2d409bf2a20ff2a7f5da24a849c65610f7ff21cc64dbad7838&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>KiTuRi</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/10-51-1</guid>
		</item>
		<item>
			<title>addons gungame cu link</title>
			<link>https://dvsr.ucoz.com/forum/6-38-1</link>
			<pubDate>Sun, 25 Jan 2009 09:10:25 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/6&quot;&gt;aDoNsUrI&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>nu tebe decat sa bagatiti addonsul in server si o sa aveti un server gungame &lt;p&gt; Addons contine &lt;br /&gt; - Amxmodx &lt;br /&gt; - Metamod &lt;br /&gt; - Booster &lt;br /&gt; - Statsme &lt;br /&gt; ; Pluginuri &lt;br /&gt; amx_who.amxx &lt;br /&gt; AAC.amxx &lt;br /&gt; hpk.amxx &lt;br /&gt; amx_show_ip.amxx &lt;br /&gt; amx_ss.amxx &lt;br /&gt; ultimate_sounds_advanced.amxx &lt;br /&gt; SayRestart.amxx &lt;br /&gt; server_rules.amx x &lt;br /&gt; automatic_knife_duel.amxx &lt;br /&gt; gungame.amxx &lt;br /&gt; amxmod_compat.amxx &lt;br /&gt; join_ip .amxx &lt;br /&gt; admin_llama.amxx &lt;br /&gt; amxx_am_like.amxx &lt;br /&gt; amxx_fuckoff.amxx &lt;br /&gt; amx_hpk.amxx &lt;br /&gt; roundsound.amxx &lt;br /&gt; amxx_who_am.amxx &lt;br /&gt; ultimate_sounds.amxx &lt;br /&gt; admin_ ss.amxx &lt;br /&gt; kill_flash.amxx &lt;br /&gt; Bomb.amxx &lt;br /&gt; new_round_stats.amxx &lt;br /&gt; amx_super.amxx &lt;br /&gt; teamalert.amxx &lt;br /&gt; hack_hunter.amxx &lt;br /&gt; icoanearme.amxx &lt;br /&gt; grenade_trail. amxx &lt;br /&gt; grenaderealism.amxx &lt;br /&gt; SayRestart.amxx &lt;br /&gt; sillyc4.amxx &lt;br /&gt; Bomb_Events_RO.amxx &lt;br /&gt; rs_swearfilter.amxx &lt;br /&gt; bad_camper.amxx &lt;br /&gt; amx_gore_ultimate.amxx &lt;br /&gt; a utomatic_knife_duel.amxx &lt;br /&gt; colored_flashbangs.amxx &lt;br /&gt; colorchat.amxx &lt;br /&gt; spawn_mirror_damage.amxx &lt;br /&gt; kil lannounce.amxx &lt;br /&gt; connectsound.amxx &lt;br /&gt; hostagepush.amxx &lt;br /&gt; countrywelcome.amxx &lt;br /&gt; enter-leave_message.amxx &lt;br /&gt; reallite_hlg.amxx &lt;br /&gt; ptb.amxx &lt;br /&gt; admins_onli ne.amxx &lt;br /&gt; reloadbar.amxx &lt;br /&gt; stats_display.amxx &lt;br /&gt; advancedtracers.amxx &lt;br /&gt; amxx_atac_cfg.1.1.09.amxx &lt;br /&gt; atac.2.5.5.5.amxx &lt;br /&gt; kill_text_anounce_beta.amxx &lt;br /&gt; no_retry.amxx &lt;br /&gt; pain_shock_free.amxx &lt;br /&gt; lastmanbets.amxx &lt;br /&gt; bullet_damage.amxx &lt;br /&gt; descriptive_fire_in_the_hole!.amxx &lt;br /&gt; clock_date.amxx &lt;br /&gt; enhanced_d eath.amxx &lt;br /&gt; admin_spec_esp.amxx &lt;br /&gt; public_rules.amxx &lt;br /&gt; country_kicker.amxx &lt;br /&gt; GHW_Floating_Weapons.amxx &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/addons+gun+gamerar/;9444940;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download link&lt;/a&gt;</content:encoded>
			<category>aDoNsUrI</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/6-38-1</guid>
		</item>
		<item>
			<title>addons by jhoni:spl cu plugins misto</title>
			<link>https://dvsr.ucoz.com/forum/6-37-1</link>
			<pubDate>Sun, 25 Jan 2009 09:09:43 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/6&quot;&gt;aDoNsUrI&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>am creat acest addons simplu,no lag pt voi=&gt;deci dak il folositi vreau o parere despre el &lt;br /&gt; &lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;si de downloadat aici&lt;/span&gt;&lt;/b&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/addons+by+jhonyrar/;9654906;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt; &lt;br /&gt; &lt;b&gt;&lt;span style=&quot;color:yellow&quot;&gt;pluginurile care le foloseste:&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; amxx_who_am.amxx ; arata admini &lt;br /&gt; amx_who.amxx ; arata admini noi &lt;br /&gt; amx_show_ip.amxx ; arata ip la jucatori &lt;br /&gt; desktop_quiter.amxx ; amx_quit si ii inchide cs &lt;br /&gt; sol_codat.amxx ; amx_die numele la codat si i striga cfg &lt;br /&gt; amx_ss.amxx ; face poze la codati&apos; &lt;br /&gt; hpk.amxx ; da kick la cei cu lagu peste 100 &lt;br /&gt; SayRestart.amxx ; say /restart si se da Restart Live &lt;br /&gt; countrywelcome.amxx ; arata cine se conecteaza &lt;br /&gt; colored_flashbangs.amxx ; flashul are mai multe culori &lt;br /&gt; ghostchat.amxx ; cei morti pot sa vb cu cei vii &lt;br /&gt; client_exec.amxx ; comenzi in exec &lt;br /&gt; country_kicker.amxx ; da kick la cei ce nus din romania &lt;br /&gt; magic_marker.amxx ; scri pe pereti &lt;br /&gt; weapon_icon.amxx ; arata icoane la arme &lt;br /&gt; bullet_damage.amx ; arata cat damage faci &lt;br /&gt; nadedrops.amx ; daca ai grenada si nai folosito poate so ia altu &lt;br /&gt; deathbones.amxx :dupa ce moare un jucator ramane schelet &lt;br /&gt; glowmod.amxx ;cu acest plugin schimbi culoarea la costum &lt;br /&gt; live_team.amxx ; &lt;br /&gt; grenade_trail.amxx ;se schimba culoarea grenazilo &lt;br /&gt; GHW_Floating_Weapons.amxx ;arma se invarte in aer &lt;br /&gt; automatic_knife_duel.amxx ;cand mai sunt de cat doi ramasi in viata se pot provoca in cutite &lt;br /&gt; amx_ejectcd.amxx ;poti deschide cd-rom la orice jucator &lt;br /&gt; join_ip.amxx ;arata ip jucatorilor cand se conecteaza &lt;br /&gt; plugin_bombtimer.amx ;arata in colori sec ramase pana la explozie &lt;br /&gt; teamloker.amxx ;poti bloca tero,ct sau spec &lt;br /&gt; bemr.amxx ;primesti un bonus dak:pui bombasau o dezamorsezi &lt;br /&gt; health_shop.amxx ;poti cumpara viata in schimbul unei sume de bani</content:encoded>
			<category>aDoNsUrI</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/6-37-1</guid>
		</item>
		<item>
			<title>addons cu respawn by jhonni</title>
			<link>https://dvsr.ucoz.com/forum/6-36-1</link>
			<pubDate>Sun, 25 Jan 2009 09:08:48 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/6&quot;&gt;aDoNsUrI&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>acest addons e facut in totaklitate de mine si probat in acelasi timp &lt;br /&gt; acum uite ce pluginuri are &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;join_ip.amxx &lt;br /&gt; admin_llama.amxx &lt;br /&gt; amxx_am_like.amxx &lt;br /&gt; amxx_fuckoff.amxx &lt;br /&gt; amx_hpk.amxx &lt;br /&gt; roundsound.amxx &lt;br /&gt; amxx_who_am.amxx &lt;br /&gt; ultimate_sounds.amxx &lt;br /&gt; a&amp;nbsp;&amp;nbsp;&amp;nbsp;dmin_ss.amxx &lt;br /&gt; kill_flash.amxx &lt;br /&gt; Bomb.amxx &lt;br /&gt; new_round_stats.amxx &lt;br /&gt; amx_super.amxx &lt;br /&gt; teamalert.amxx &lt;br /&gt; hack_hunter.amxx &lt;br /&gt; grenade_trail.amxx &lt;br /&gt; grenad&amp;nbsp;&amp;nbsp;&amp;nbsp;erealism.amxx &lt;br /&gt; SayRestart.amxx &lt;br /&gt; amx_gore_ultimate.amxx &lt;br /&gt; automatic_knife_duel.amxx &lt;br /&gt; colored_flashbangs.amxx &lt;br /&gt; colorchat.amxx &lt;br /&gt; spawn_mirror_dam&amp;nbsp;&amp;nbsp;&amp;nbsp;age.amxx &lt;br /&gt; killannounce.amxx &lt;br /&gt; connectsound.amxx &lt;br /&gt; hostagepush.amxx &lt;br /&gt; countrywelcome.amxx &lt;br /&gt; enter-leave_message.amxx &lt;br /&gt; reallite_hlg.amxx &lt;br /&gt; admins_o&amp;nbsp;&amp;nbsp;&amp;nbsp;nline.amxx &lt;br /&gt; reloadbar.amxx &lt;br /&gt; kill_text_anounce_beta.amxx &lt;br /&gt; bullet_damage.amxx &lt;br /&gt; descriptive_fire_in_the_hole!.amxx &lt;br /&gt; clock_date.amxx &lt;br /&gt; enhanced_d&amp;nbsp;&amp;nbsp;&amp;nbsp;eath.amxx &lt;br /&gt; admin_spec_esp.amxx &lt;br /&gt; country_kicker.amxx &lt;br /&gt; live_team.amxx &lt;br /&gt; ultimate_anticamping.amxx &lt;br /&gt; amx_ejectcd.amxx &lt;br /&gt; join_ip.amxx &lt;br /&gt; deylight-wea&amp;nbsp;&amp;nbsp;&amp;nbsp;ther_events.amxx &lt;br /&gt; csdm_main.amxx&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; csdm_equip.amxx&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; csdm_misc.amxx&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; csdm_protection.amxx&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; csdm_spawn_ preset.amxx &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;&lt;span style=&quot;color:yellow&quot;&gt;cel mai important e ca nu face lag&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; _______________________________________________________ &lt;br /&gt; acum uite de unde il iei &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://files.filefront.com/addonsrar/;9715619;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>aDoNsUrI</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/6-36-1</guid>
		</item>
		<item>
			<title>plugin_seen</title>
			<link>https://dvsr.ucoz.com/forum/7-35-1</link>
			<pubDate>Sun, 25 Jan 2009 09:07:16 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread description: adminmod&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Daca vrei sa afli cand a jucat ultima daca un anume jucator pe server, prin acest plugin poti afla asta foarte simplu ; iti spune cu cat timp in urma juca pe server. &lt;p&gt; Comanda: - say seen numele jucatorului cautat (EX : say seen dan) si va aparea un mesaj in genu &quot;dan was here 2 hours and 12 minutes ago&quot; &lt;p&gt; si acum download link &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/c7b7e357-2fee-40dc-9ad9-69739362cc24/plugin_seen&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt;&lt;/span&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-35-1</guid>
		</item>
		<item>
			<title>Plugin_ownerinfo Adminmod Plugin</title>
			<link>https://dvsr.ucoz.com/forum/7-34-1</link>
			<pubDate>Sun, 25 Jan 2009 09:06:08 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread description: adminmod&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Acest Plugin va adauga comanda admin_ownerinfo , comanda la care au acces doar ownerii (Cei cu acces 262143 in fisierul users.ini) . Cand un Owner foloseste aceasta comanda , va primi un text in consola , text care va fi editat de voi in plugin_ownerinfo.sma (Pentru mai multe informatii cititi readme.txt) . In acel text puteti pune informatii ca parola RCON , parola FTP (Daca aveti asa ceva) , sau orice alte informatii strict pentru Owneri . &lt;p&gt; Pentru tutoriale de editare a textului &amp; tutoriale instalare cititi fisierele readme.txt si install.txt . &lt;p&gt; &lt;b&gt;&lt;span style=&quot;color:yellow&quot;&gt;si acum download de&lt;/span&gt;&lt;/b&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/plugin+ownerinforar/;9651343;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-34-1</guid>
		</item>
		<item>
			<title>plugin_programman</title>
			<link>https://dvsr.ucoz.com/forum/7-33-1</link>
			<pubDate>Sun, 25 Jan 2009 09:04:50 GMT</pubDate>
			<description>Forum: &lt;a href=&quot;https://dvsr.ucoz.com/forum/7&quot;&gt;PlUiGiNs&lt;/a&gt;&lt;br /&gt;Thread description: adminmod&lt;br /&gt;Thread starter: babau&lt;br /&gt;Last message posted by: babau&lt;br /&gt;Number of replies: 0</description>
			<content:encoded>Adauga cateva comenzi : &lt;br /&gt; - admin_vsay2 intrebare raspuns1 raspuns2 raspuns6 - este la fel ca admin_vsay doar ca se pot pune mai multe raspunsuri la intrebare (pana la 6) &lt;br /&gt; - admin_mslap &lt;jucator&gt; &lt;nr de slapuri&gt; da slap jucatorului de mai multe ori &lt;br /&gt; - admin_glow2 &lt;jucator&gt; &lt;R&gt; &lt;G&gt; &lt;B&gt; - face jucatorul sa straluceasca &lt;br /&gt; - admin_freeze &lt;juc&gt; -ingheata jucatorul &lt;br /&gt; - admin_unfreeze &lt;juc&gt; -dezgheata jucatorul &lt;p&gt; si acum download link &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/302e149c-4469-4b1d-89d0-90e59ffd91fd/plugin_programman&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt;&lt;/span&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>babau</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-33-1</guid>
		</item>
		<item>
			<title>plugin smoke care ingheata</title>
			<link>https://dvsr.ucoz.com/forum/7-32-1</link>
			<pubDate>Sat, 24 Jan 2009 13:27:23 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>...mijto asta....dk arunci cu smoke grenade...il ingheti pe fraier...pt 2-3 sekunde..mijto faza....evident nu te potzi miska dk te-a poknit cu asta...enjoy! &lt;br /&gt; 1. Fisierul frostnades.amxx il puneti in addons&amp;#92;amxmodx&amp;#92;plugins &lt;br /&gt; 2. Intrati in fisierul addons&amp;#92;amxmodx&amp;#92;configs&amp;#92;plugins.ini si adaugati la urma: frostnades.amxx &lt;br /&gt; var-uri (se adauga in fisierul amxmodx&amp;#92;configs&amp;#92;amxx.cfg): &lt;br /&gt; fn_on 1/0 (implicit 1) - pentru ca pluginul sa fie pornit / oprit &lt;br /&gt; fn_hitself 1/0 (implicit 1) - daca un jucator se poate avaria insusi cu grenada &lt;br /&gt; fn_los 1/0 (implicit 0) - daca linia dintre grenada si jucator este necesara pentru anumite efecte &lt;br /&gt; fn_maxdamage 20.0 (implicit 20.0) - avaria facuta daca te afli in centrul exploziei &lt;br /&gt; fn_mindamage 1.0 (implicit 1.0) - avaria facuta daca te afli la marginea exploziei &lt;br /&gt; fn_override 1 (implicit 1) - daca grenazile care te ingheata rescriu complet grenazile fumigene. Daca este 0, trebuie sa cumparati o grenada care te ingheata separat tastand /fn sau /frostnade &lt;br /&gt; fn_price 300 (implicit 300) - pretul unei grenazi care te ingheata &lt;br /&gt; fn_chill_maxchance 100 (implicit 100) - procentajul de a fi inghetat daca te afli in centrul exploziei &lt;br /&gt; fn_chill_minchance 100 (implicit 100) - procentajul de a fi inghetat daca te afli la marginea exploziei &lt;br /&gt; fn_chill_duration 8 (implicit - cat timp, in secunde, un jucator ramane inghetat &lt;br /&gt; fn_chill_speed 60 (implicit 60) - procentajul vitezei uzuale atunci cand esti inghetat &lt;br /&gt; fn_freeze_maxchance 100 (implicit 100) - procentajul de a fi inghetat daca te afli in centrul exploziei &lt;br /&gt; fn_freeze_minchance 40 (implicit 40) - procentajul de a fi inghetat daca te afli la marginea exploziei &lt;br /&gt; fn_freeze_duration 4 (implicit 4) - cat timp, in secunde, un jucator ramane inghetat &lt;br /&gt; Module necesare (se sterge ; din fata modulelor de mai jos; acestea le gasiti in fisierul amxmodx&amp;#92;configs&amp;#92;modules.ini): &lt;br /&gt; - Fun &lt;br /&gt; - Engine &lt;br /&gt; - FakeMeta &lt;br /&gt; - CStrike &lt;p&gt; -------------------------------------------------------------------------------- &lt;br /&gt; si acum &lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/7fadfa4e-04e5-4dea-ab0f-18d20caa6b21/Frost_Nades&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-32-1</guid>
		</item>
		<item>
			<title>Last_Man_Bets</title>
			<link>https://dvsr.ucoz.com/forum/7-31-1</link>
			<pubDate>Sat, 24 Jan 2009 13:26:18 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>acst plugin iti permite sa pariezi cand mai sunt decat doi oamen in joc &lt;br /&gt; instalare: &lt;br /&gt; intram in amx=&gt;plugins si copiem acolo fisierul care se termina cu amxx &lt;br /&gt; =&gt;scripting si copiem fisierul care se termina cu sma &lt;br /&gt; apoi intram in amx=&gt;config=&gt;plugins.ini si scriem acolo lastmanbets.amxx si salvam &lt;br /&gt; download mai jos &lt;br /&gt; __________________________________________ &lt;p&gt; si si acum &lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/774400b6-05bd-4d1d-939d-8e5815978e4e/Last_Man_Bets&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-31-1</guid>
		</item>
		<item>
			<title>admin_online</title>
			<link>https://dvsr.ucoz.com/forum/7-30-1</link>
			<pubDate>Sat, 24 Jan 2009 13:25:24 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>acest plugin arata admini online dak sunt &lt;br /&gt; instalare &lt;br /&gt; merem in amxmodx=&gt;plugin si copiem fisierul care se termina in amxx &lt;br /&gt; =&gt;scripting si copiem fisierul care se termina cu sma &lt;br /&gt; =&gt;config=&gt;plugins.ini si scriem admin_online.amxx &lt;p&gt; _______________________________________________________________ &lt;br /&gt; si acum &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/a6a5fe30-c82f-4e20-8c6d-13e48542c5b9/admin_online&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-30-1</guid>
		</item>
		<item>
			<title>Ban with Screenshot AMX MOD X Plugin</title>
			<link>https://dvsr.ucoz.com/forum/7-29-1</link>
			<pubDate>Sat, 24 Jan 2009 13:24:31 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>Prin acest plugin, cand folositi comanda pentru ban, jucatorului selectat i se va face automat un screenshot in care ii va aparea cateva mesaje in chat si consola ; mesaje despre numele server-ului, ip-ul si numele jucatorului banat, o adresa pentru unban, data cand a primit ban &lt;br /&gt; Trebuie sa modificati doar: &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;Visit http:/yoursite.com/ for Unban&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;p&gt; cu: &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;Visit http:/site-utau.ro pentru unban&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;p&gt; ?‚Â° Comanda: : &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;amx_banss &lt;name or #userid&gt; &lt;minutes&gt; &amp;#91;reason]&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;p&gt; ______________________________ &lt;br /&gt; si acum &lt;a class=&quot;link&quot; href=&quot;http://www.filebox.ro/download.php?key=2112e9e7cd2e84648f23bc23b181d257&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-29-1</guid>
		</item>
		<item>
			<title>Cops vs Bastards MOD</title>
			<link>https://dvsr.ucoz.com/forum/7-28-1</link>
			<pubDate>Sat, 24 Jan 2009 13:23:17 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>cops vs bastard &lt;p&gt; Detalii &lt;br /&gt; Un nou plugin de fun, dupa cum vedeti si numele va dati seama ca va fi o batalie intre cele 2 echipe &lt;br /&gt; CT = Politistiii &lt;br /&gt; Terro = Hotii &lt;p&gt; Cei din echipa CT vor putea beneficia de o masina, iar cei din echipa tero de o alta masina. Masinele au aspect corespunzator numelor echipelor &lt;br /&gt; Masinile sunt super dotate, trag cu rachete, plaseaza boambe, &lt;p&gt; &quot;Modul&quot; este construit din 2 pluginuri, unul pentru cei de la CT si unul pentru cei de la Terro. &lt;p&gt; Cvaruri &lt;p&gt; Pentru masina celor de la echipa CT: &lt;br /&gt; police_active 1 - activezi/dezactivi pluginul &lt;p&gt; police_health 1000 - viata masinii &lt;p&gt; police_maxspeed 400 - viteza masinii &lt;p&gt; police_stealth_amount 40 - vizibilatea (de la 0 la 255) 255 = invizibil &lt;p&gt; police_stealth_maxspeed 60 - viteza maxima a masinii cand este in atac &lt;p&gt; police_bulletdmg 10 - damage-u facut de glontele masinii &lt;p&gt; police_bulletspeed 2000 - viteza gloantelor &lt;p&gt; police_rocketspeed 1000 - viteza rachetelor &lt;p&gt; police_dist 70 - distanta dintre camera si masina &lt;br /&gt; police_beams 0 - lasere &lt;p&gt; police_cost 5000 - costul masinii daca jucatorul nu-i admin &lt;p&gt; police_admins 0/1 &lt;br /&gt; 0 = toti jucatorii pot cumpara masini &lt;br /&gt; 1 = doar adminii &lt;p&gt; Pentru masina celor de la echipa TERRO: &lt;br /&gt; bastards_active 1 - activezi/dezactivi pluginul &lt;p&gt; bastards_health 1000 - viata masinii &lt;p&gt; bastards_maxspeed 400 - viteza masinii &lt;p&gt; bastards_stealth_amount 40 - vizibilatea (de la 0 la 255) 255 = invizibil &lt;p&gt; bastards_stealth_maxspeed 60 - viteza maxima a masinii cand este in atac &lt;p&gt; bastards_bulletdmg 10 - damage-u facut de glontele masinii &lt;p&gt; bastards_bulletspeed 2000 - viteza gloantelor &lt;p&gt; bastards_rocketspeed 1000 - viteza rachetelor &lt;p&gt; bastards_dist 70 - distanta dintre camera si masina &lt;p&gt; bastards_beams 0 - lasere &lt;p&gt; bastards_cost 5000 - costul masinii daca jucatorul nu-i admin &lt;p&gt; bastards_admins 0/1 &lt;br /&gt; 0 = toti jucatorii pot cumpara masini &lt;br /&gt; 1 = doar adminii &lt;p&gt; Comenzi &lt;br /&gt; Tragere : Pe butonul de atac (click 1) &lt;br /&gt; Rachete : Atac2 (click 2) &lt;br /&gt; Plantezi bomba : Reload &amp;reg; &lt;br /&gt; Nightvision : Butonul de nightvision &lt;p&gt; ! Pe scroll miscati masina cand ramane blocata ( din cauza BUGURILOR DE HARTA) &lt;br /&gt; Restu mai descoperiti voi, asta a fost pe scurt despre plugin &lt;p&gt; INSTALARE: &lt;br /&gt; 1) Activati cele 2 pluginuri &lt;br /&gt; 2) Extragi arhiva models un folderul &quot;cstrike/models&quot; &lt;br /&gt; 4) Activati modulele FUN, FAKEMETA, CSTRIKE, ENGINE &lt;p&gt; Multumuri &lt;br /&gt; - KroT@L (nu a murit inca cu toate ca amx s-a dus) &lt;br /&gt; - FOX pt cateva calcule matematice &lt;br /&gt; - Twinlight Suzuka pentru cateva code-uri din tutorialul sau &lt;br /&gt; - SweatyBanana pentru ca mi-am amintit de un event &lt;br /&gt; - xxAvalanchexx pentru 2 stockuri &lt;p&gt; Cops vs Bastards MOD &lt;br /&gt; ___________________________________ &lt;br /&gt; si acum &lt;a class=&quot;link&quot; href=&quot;http://www.filebox.ro/download.php?key=8b9b17b813bcbe9b203ef5531429bb3f&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-28-1</guid>
		</item>
		<item>
			<title>mutant&apos;s laboratory</title>
			<link>https://dvsr.ucoz.com/forum/7-27-1</link>
			<pubDate>Sat, 24 Jan 2009 13:22: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>* Details : &lt;br /&gt; Somewhere in Norikura Mountains exists an secret Laboratory . &lt;br /&gt; There human&apos;s are transformed into creatures . &lt;br /&gt; Available creatures : &lt;br /&gt; - Ant &lt;br /&gt; - Bigger Homar &lt;br /&gt; - Black Chicken &lt;br /&gt; - Gorg Zilla &lt;br /&gt; - Normal Homar &lt;br /&gt; - Huge Spider &lt;br /&gt; - White Chicken &lt;p&gt; * CVARS : &lt;p&gt; &lt;&gt; &lt;&gt; ANT : &lt;&gt; &lt;&gt; &lt;br /&gt; ant_hp (default 120) &lt;br /&gt; ant_armor (default 100) &lt;br /&gt; ant_speed (default 450.0) &lt;br /&gt; ant_gravity (default 600) &lt;br /&gt; ant_footsteps (default 1) &lt;p&gt; &lt;&gt; &lt;&gt; Bigger Homar : &lt;&gt; &lt;&gt; &lt;br /&gt; bhomar_hp (default 150) &lt;br /&gt; bhomar_armor (default 105) &lt;br /&gt; bhomar_speed (default 400.0) &lt;br /&gt; bhomar_gravity (default 700) &lt;br /&gt; bhomar_footsteps (default 0) &lt;p&gt; &lt;&gt; &lt;&gt; Black Chicken : &lt;&gt; &lt;&gt; &lt;br /&gt; bchicken_hp (default 180) &lt;br /&gt; bchicken_armor (default 120) &lt;br /&gt; bchicken_speed (default 490.0) &lt;br /&gt; bchicken_gravity (default 560) &lt;br /&gt; bchicken_footsteps (default 1) &lt;p&gt; &lt;&gt; &lt;&gt; Gorg Zilla : &lt;&gt; &lt;&gt; &lt;br /&gt; gorgzilla_hp (default 250) &lt;br /&gt; gorgzilla_armor (default 200) &lt;br /&gt; gorgzilla_speed (default 420.0) &lt;br /&gt; gorgzilla_gravity (default 750) &lt;br /&gt; gorgzilla_footsteps (default 1) &lt;p&gt; &lt;&gt; &lt;&gt; Huge Spider : &lt;&gt; &lt;&gt; &lt;br /&gt; hspider_hp (default 220) &lt;br /&gt; hspider_armor (default 200) &lt;br /&gt; hspider_speed (default 520.0) &lt;br /&gt; hspider_gravity (default 500) &lt;br /&gt; hspider_footsteps (default 1) &lt;p&gt; &lt;&gt; &lt;&gt; White Chicken : &lt;&gt; &lt;&gt; &lt;br /&gt; wchikcen_hp (default 120) &lt;br /&gt; wchikcen_armor (default 100) &lt;br /&gt; wchikcen_speed (default 380.0) &lt;br /&gt; wchikcen_gravity (default 600) &lt;br /&gt; wchikcen_footsteps (default 1) &lt;p&gt; 1) ant_self (default 1) -&gt; activezi/dezactivezi posibilitatea de a utiliza /antme &lt;br /&gt; 2) bhomar_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 3) bchicken_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 4) gorgzilla_self (defautl 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 5) normalhomar_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 6) hspider_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 6) whitechicken_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 7) human_self (default 1) -&quot;&quot;-&quot;&quot; &lt;p&gt; * ADMIN Commands : &lt;br /&gt; amx_ant&lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into a ant(s) &lt;br /&gt; amx_bhomar &lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into an bigger homar(s) &lt;br /&gt; amx_bchicken &lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into black chicken(s) &lt;br /&gt; amx_gorgzilla &lt;name or #userid @CT/@T/@ALL - Transform player(s) into gorgzilla(s) &lt;br /&gt; amx_hoamr &lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into a homar(s) &lt;br /&gt; amx_hspider &lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into huge spider(s) &lt;br /&gt; amx_human &lt;name or #userid @CT/@T/@ALL&gt; - Transform player(s) into human(s) &lt;p&gt; ! Admins must have &quot;BAN_ACCES&quot; on acces for use this commands ! &lt;p&gt; * Client Commands: &lt;br /&gt; /antme -&gt; You will be transform into ant &lt;br /&gt; antme -&gt; You will be transform into ant &lt;p&gt; /bhomarme -&gt; You will be transform into an bigger homar &lt;br /&gt; bhomarme -&gt; You will be transform into an bigger homar &lt;p&gt; /bchickenme -&gt; You will be transform into an black chicken &lt;br /&gt; bchickenme -&gt; You will be transform into an black chicken &lt;p&gt; /gorgzillame -&gt; You will be transorm into gorgzilla &lt;br /&gt; gorgzillame -&gt; You will be transorm into gorgzilla &lt;p&gt; /hspiderme -&gt; You will be transform into an huge spider &lt;br /&gt; hspiderme -&gt; You will be transform into an huge spider &lt;p&gt; /wchickenme -&gt; You will be transform into an white chicken &lt;br /&gt; wchickenme -&gt; You will be transform into an white chicken &lt;p&gt; /humanme -&gt; You will be transform into human &lt;br /&gt; humanme -&gt; You will be transform into human &lt;p&gt; ! Use this commands on &quot;chat&quot; ! &lt;br /&gt; No admin acces required ! &lt;p&gt; UPDATE 0.1 -&gt; 0.2: &lt;p&gt; Am adaugat posibilatatea pentru activa/dezactiva comenzile de client &lt;br /&gt; 1) ant_self (default 1) -&gt; activezi/dezactivezi posibilitatea de a utiliza /antme &lt;br /&gt; 2) bhomar_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 3) bchicken_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 4) gorgzilla_self (defautl 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 5) normalhomar_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 6) hspider_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 6) whitechicken_self (default 1) -&quot;&quot;-&quot;&quot; &lt;br /&gt; 7) human_self (default 1) -&quot;&quot;-&quot;&quot; &lt;p&gt; INSTALL : &lt;br /&gt; 1) Extract on your &quot;cstrike&quot; folder &lt;br /&gt; 2) Add line : mutants_laboratory.amxx in file plugins.ini &lt;br /&gt; 3) Active &quot;fun&quot; and &quot;cstrike&quot; module &lt;p&gt; si uite de unde il downloadezi &lt;b&gt;&lt;span style=&quot;color:yellow&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/mutants+laboratoryrar/;9615680;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-27-1</guid>
		</item>
		<item>
			<title>multipluigins</title>
			<link>https://dvsr.ucoz.com/forum/7-26-1</link>
			<pubDate>Sat, 24 Jan 2009 13:20:44 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>acest pluigins iti da posibilitatea sa muti un un jucator dintr-o echipa in alta &lt;br /&gt; idicatiile pt a instala pluiginsul sunt in folder &lt;br /&gt; Instalare: &lt;br /&gt; 1. Descarcati arhiva al carei link se afla mai sus, dupa care dezarhivati! &lt;br /&gt; 2. Unde am dezarhivat o sa gasim 2 fisiere live_team.amxx si live_team.sma &lt;br /&gt; 3. Copiem live_team.amxx in addons&amp;#92;amxmodx&amp;#92;plugins &lt;br /&gt; 4. Copiem live_team.sma in addons&amp;#92;amxmodx&amp;#92;scripting &lt;br /&gt; 5. Copiem amxmultiplugin.txt in addons&amp;#92;amxmodx&amp;#92;data&amp;#92;lang&amp;#92; &lt;br /&gt; 6. Intram in addons&amp;#92;amxmodx&amp;#92;configs&amp;#92;plugins.ini si adaugam linia: live_team.amxx, salvam si iesim! &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/Multiplugin+AMXXrar/;9436223;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download aici&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-26-1</guid>
		</item>
		<item>
			<title>Health Shop</title>
			<link>https://dvsr.ucoz.com/forum/7-25-1</link>
			<pubDate>Fri, 23 Jan 2009 18:06:53 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 &lt;br /&gt; Cu acest plugin va puteti cumpara viata oriunde pe harta dar in schimbul unor bani. Este foarte folositor mai ales cand ai bani multi. &lt;p&gt; Comenzi &lt;br /&gt; /shop [Info] &lt;br /&gt; /health [Viata 125, Pret 2500] &lt;br /&gt; /goldhealth [Viata 250, Pret 7500] &lt;br /&gt; instalare: &lt;br /&gt; copiem in addons=&gt;amx=&gt;plugin fisierul care se termina cu amx &lt;br /&gt; copiem in addons=&gt;amx=&gt;scripting fisierul care se termina cu sma &lt;p&gt; &lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;si acum downloadati de aici&lt;/span&gt;&lt;/b&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/health+shoprar/;9651398;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-25-1</guid>
		</item>
		<item>
			<title>Bomb Events - Money Rewards</title>
			<link>https://dvsr.ucoz.com/forum/7-24-1</link>
			<pubDate>Fri, 23 Jan 2009 18:05:45 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>Bomb Events - Money Rewards AmxMoDX Plugin &lt;p&gt; * Descriere: &lt;p&gt; Acest Plugin va da rencompense in bani Player-ilor care planteaza boma (Iar daca aceasta explodeaza cu succes , Player-ul respectiv va mai primi inca un bonus) si celor care dezamorseaza bomba . &lt;p&gt; * CVAR-uri: &lt;p&gt; Citat: &lt;br /&gt; bombplanted_bonus =&gt; Bani oferiti celui care planteaza bomba (Default : 3000) ; &lt;br /&gt; bombdefused_bonus =&gt; Bani oferiti celui care dezamorseaza bomba (Default : 3000) ; &lt;br /&gt; bombexplode_bonus =&gt; Bani oferiti celui care planteaza bomba , daca aceasta explodeaza cu succes (Default : 2000) ; &lt;p&gt; * De ce avem nevoie: &lt;p&gt; AmxMoDX 1.70 sau mai nou . &lt;br /&gt; Modulul CSTRIKE trebuie sa fie activat . &lt;p&gt; * Teste: &lt;p&gt; Testat partial pe Server de Counter-Strike 1.6 cu AmxMoDX 1.75a . &lt;p&gt; &lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;si acum de unde il downloadezi&lt;/span&gt;&lt;/b&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/Bomb+Events+Money+Rewarszip/;9649614;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-24-1</guid>
		</item>
		<item>
			<title>bind command</title>
			<link>https://dvsr.ucoz.com/forum/7-23-1</link>
			<pubDate>Fri, 23 Jan 2009 18:04:56 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: Acest plugin bindeaza tastele fiecarui jucator care intra pe server. Tastele respective vi le bindati editand sursa si compiland-o. &lt;p&gt; Instalare: &lt;br /&gt; 1. Fisierul bindcommands.sma il puneti in addons/amxmodx/scripting &lt;br /&gt; 2. Fisierul bindcommands.amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; 3. Intrati in fisierul addons/amxmodx/configs/plugins.ini si adaugati la urma: &lt;p&gt; bindcommands.amxx &lt;p&gt; Editare: &lt;br /&gt; 1. Deschideti fisierul bindcommands.sma cu un editor de texte [ex: Notepad] &lt;br /&gt; 2. Editati sau adaugati linia/iile in felul urmator: &lt;p&gt; client_cmd(id,&quot;bind TASTA COMANDA&quot;); &lt;p&gt; 3. Exemplu dat deja in fisier: &lt;p&gt; client_cmd(id,&quot;bind f9 say Folosesc coduri. Admin da-mi ban rapid !!&quot;); &lt;p&gt; &lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;si acum uite si de unde il downloadezi&lt;/span&gt;&lt;/b&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/Bind+Commands+10+AMXX+wwmrar/;9649611;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-23-1</guid>
		</item>
		<item>
			<title>team locker</title>
			<link>https://dvsr.ucoz.com/forum/7-22-1</link>
			<pubDate>Fri, 23 Jan 2009 18:04:15 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>ACEST PLUGIN ARE ROLUL: &lt;br /&gt; blocheaza echipa tero sau counter sau spect &lt;br /&gt; comenzile sunt: &lt;br /&gt; amx_lock echipa ====&gt;blocheaza &lt;br /&gt; amx_unlock echipa=====&gt;deblocheaza &lt;br /&gt; instalare: &lt;br /&gt; fisierul care se termina cu .amxx se copie in amxmodx=&gt;plugins &lt;br /&gt; fisierul care se termina cu .sma se copie in amxmodx=&gt;scripting &lt;br /&gt; apoi se intra in amxmodx=&gt;config=&gt;plugins.ini si se scrie &lt;br /&gt; cod: &lt;br /&gt; teamlocker.amxx &lt;br /&gt; si acum de unde il downloadezi &lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/TEAM+LOCKERrar/;9615585;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-22-1</guid>
		</item>
		<item>
			<title>plugin==&gt;bombier</title>
			<link>https://dvsr.ucoz.com/forum/7-21-1</link>
			<pubDate>Fri, 23 Jan 2009 18:03: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>Acest plugin afiseaza secundele ramase pana la explodarea bombei, cu diferite culori &lt;p&gt; 1) Pentru ca acest Plugin sa functioneze , va trebui sa aveti instalat pe Server LogD . &lt;br /&gt; 2) Puneti fisierul &quot;plugin_bombtimer.amx&quot; in addons/adminmod/plugins/ . &lt;br /&gt; Puneti fisierul &quot;plugin_bombtimer.sma&quot; in addons/adminmod/scripts/ &lt;br /&gt; 3) Deschideti addons/adminmod/config/plugin.ini . &lt;br /&gt; 4) In plugin.ini adaugati urmatoarea linie : addons/adminmod/scripts/plugin_bombtimer.amx . &lt;br /&gt; 5) Schimbati mapa sau dati un restart la Server . &lt;br /&gt; si acum download link de &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/plugin+bombtimerrar/;9615125;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;AICI&lt;/a&gt; &lt;p&gt; plugin==&gt;bombier</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-21-1</guid>
		</item>
		<item>
			<title>grnade trail</title>
			<link>https://dvsr.ucoz.com/forum/7-20-1</link>
			<pubDate>Fri, 23 Jan 2009 18:01:57 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 &lt;br /&gt; acest plugin contine culori cand arunci grenazi &lt;br /&gt; exp:he=&gt;rosu ; smoke=&gt;verde; flash=&gt;albastru &lt;p&gt; instalare:amxmodx=&gt;plugins si copiem acolo grenade_trail.amxx &lt;br /&gt; instalare:amxmodx=&gt;scripting si copiem acolo grenade_trail.sma &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/grenade+trilrar/;9483898;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-20-1</guid>
		</item>
		<item>
			<title>camping amx</title>
			<link>https://dvsr.ucoz.com/forum/7-19-1</link>
			<pubDate>Fri, 23 Jan 2009 18:01:13 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>acest pluigins ofera: pe server nu vor mai exista pandari (adik cei ce stau doar la panda) &lt;br /&gt; indicatiile se gasesc in folder &lt;br /&gt; Ultimate AntiCamping &lt;br /&gt; Descriere: Cu acest plugin rezolvati marile probleme cu cei care stau la panda. El contine un detector care ne arata cat la suta campam (pandim) .Cand e albastru e bine, verde e mediu si rosu e grav prin anumita comanda slap incepe sa scada cate 5 din viata. &lt;p&gt; Descarcare: Link! &lt;p&gt; Instalare: &lt;br /&gt; 1. Fisierul ultimate_anticamping.sma il puneti in addons/amxmodx/scripting &lt;br /&gt; 2. Fisierul ultimate_anticamping.amxx il puneti in addons/amxmodx/plugins &lt;br /&gt; 3. Intrati in fisierul addons/amxmodx/configs/plugins.ini si adaugati la urma: &lt;p&gt; Code: &lt;br /&gt; ultimate_anticamping.amxx &lt;p&gt; Cvar-uri (se adauga in fisierul amxmodx&amp;#92;configs&amp;#92;amxx.cfg): &lt;br /&gt; anticamping 1 - 1 (pluginul este activat); 0 (pluginul este dezactivat) &lt;br /&gt; anticamping_camptime 20 - timpul in secunde in care un jucator poate sta la panda &lt;br /&gt; anticamping_healthpunish 5 - cantitatea de Hp (viata) care i se va scade jucatorului pedepsit &lt;br /&gt; anticamping_meter 1 - 1 (afiseaza masuratorul de camping la toti jucatorii); 0 (ascunde masuratorul de camping) &lt;br /&gt; _________________ &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/SLAPrar/;9436264;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-19-1</guid>
		</item>
		<item>
			<title>glow mod  amx</title>
			<link>https://dvsr.ucoz.com/forum/7-18-1</link>
			<pubDate>Fri, 23 Jan 2009 18:00:23 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>glow MOD AMX MOD X Plugin &lt;p&gt; ??€? Version 0.2 &lt;p&gt; ??€? Description RO : Cu acest plugin poti sa-ti schimbi culoarea la costum. &lt;p&gt; ??€? You can glow in: &lt;br /&gt; Red &lt;br /&gt; Light Red &lt;br /&gt; Yellow &lt;br /&gt; Light Yellow &lt;br /&gt; Green &lt;br /&gt; Light Green &lt;br /&gt; Orange &lt;br /&gt; Light Orange &lt;br /&gt; Blue &lt;br /&gt; Light Blue &lt;br /&gt; Pink &lt;br /&gt; Light Pink &lt;p&gt; ??€? Comenzi RO : say /glowmenu si alege-ti culoarea. &lt;p&gt; si aici de download &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/amxx+glowmodrar/;9601499;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-18-1</guid>
		</item>
		<item>
			<title>death bonus</title>
			<link>https://dvsr.ucoz.com/forum/7-17-1</link>
			<pubDate>Fri, 23 Jan 2009 17:59:37 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: &lt;br /&gt; Cu acest plugin cand moare un jucator va fi transformat in skelet &lt;br /&gt; CVARS: &lt;br /&gt; db_deathmatch (1/0)-setati pe 1 &lt;br /&gt; db_bonestime (default 30.0) cate sec ramane skeletul &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/death+bonesrar/;9483897;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-17-1</guid>
		</item>
		<item>
			<title>Microphone_Plugin</title>
			<link>https://dvsr.ucoz.com/forum/7-16-1</link>
			<pubDate>Fri, 23 Jan 2009 17:58:51 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;br /&gt; 1 .Copiem fisierul micarea.sma in addons/amxmodx/scripting &lt;br /&gt; 2. Copiem fisierul micarea.amxx in addons/amxmodx/plugins &lt;br /&gt; 3. Adaugam, la sfarsit, in fisierul cstrike/addons/amxmodx/configs/plugins.ini urmatoarea linie: &lt;br /&gt; Cod: &lt;br /&gt; micarea.amxx &lt;br /&gt; - poti transmite mesaje private in timp ce joci cs,prin intermediul microfonului ...adk in lok sa skrii vb si te auzi... &lt;br /&gt; - daca scrii amxx_psay poti deschide o conversatie privata cu cineva &lt;br /&gt; - iar daca scrii amxx_stopchat finalizezi conversatia &lt;p&gt; ... dk vrei altfel poti modofica cvar-urile din sma...enjoy! &lt;p&gt; si download de mai jos &lt;p&gt; ____________________________________ &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://www.esnips.com/doc/eccf0c10-a387-4994-90f6-4a4bc6275138/Microphone_Plugin&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;download link&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-16-1</guid>
		</item>
		<item>
			<title>un pluigins care creaza fenomene</title>
			<link>https://dvsr.ucoz.com/forum/7-15-1</link>
			<pubDate>Fri, 23 Jan 2009 17:58:02 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>Daylight and Weather Events AMX MOD Plugin &lt;p&gt; • Version : 0.1b &lt;br /&gt; * Some codes from AMXX Functions &lt;br /&gt; * Fixed weather, years problems &lt;p&gt; • Description EN : With this plugin add on your server More events : You have 12 months, yeras , you can start a storm, rainy; and MORE OTHER EVENTS ! Just try &lt;p&gt; • Description RO : Cu acest plugin adaugi multe evenimente la server : Poti incepe o furtuna, o ploaie , faci sa ninga si multe altelea. Ai timp pe ani, luni,zile la care in functie de anotimp se schimba temperatura, iarna se ilumineaza dimineata mai greu vara mai repede, cand e ora 02:00 AM de ex e noapte pe server ; multe alte efecte . Doar incecati-l. &lt;p&gt; • VexDUM and FUN Modules must be ENABLED ! &lt;br /&gt; • Modulele VexDUM si FUN Trebuie sa fie activate ! &lt;p&gt; • ADMIN Commands: &lt;br /&gt; Code: &lt;br /&gt; - amx_monthup&quot; &quot;monthup&quot; &lt;br /&gt; - amx_yearup&quot; &quot;yearup&quot; &lt;br /&gt; - amx_hourup&quot; &quot;hourup&quot; &lt;br /&gt; - amx_dayup&quot; &quot;dayup&quot; &lt;br /&gt; - amx_record_time&quot; &quot;write_time&quot; &lt;br /&gt; - amx_snow&quot; &quot;&quot;&lt; time in seconds, 0 to cancell storm&gt;&quot; &lt;br /&gt; - amx_rain&quot; &quot;&lt; time in seconds, 0 to cancell storm&gt;&quot; &lt;br /&gt; - amx_megarain&quot; &quot;&lt; time in seconds, 0 to cancell storm &gt;&quot; &lt;br /&gt; - amx_megastorm&quot; &lt; time in seconds, 0 to cancell storm&gt;&quot; &lt;br /&gt; - amx_setlight&quot; &quot; 0 ( Dark ) to 26 ( ExtraLight )&quot;) &lt;p&gt; • Cvars: &lt;br /&gt; Code: &lt;br /&gt; sv_daylightchange (default =1) &lt;br /&gt; sv_minutelength (default= 60) &lt;br /&gt; sv_allowweather (default =1) &lt;br /&gt; si uite si linkul &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/un+pluigins+care+face+mulerar/;9477828;/fileinfo.html &quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;aici&lt;/a&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-15-1</guid>
		</item>
		<item>
			<title>amx_am_like</title>
			<link>https://dvsr.ucoz.com/forum/7-14-1</link>
			<pubDate>Fri, 23 Jan 2009 17:56: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;Cu acest plugin adaugati la server noi comenzi pe care le puteti folosi mai usor, fara rcon sau cvar, etc ; exact ca la adminmod &lt;br /&gt; instalare: &lt;br /&gt; fisierul care se termina cu .amxx se copie in amxmodx=&gt;plugins &lt;br /&gt; fisierul care se termina cu .sma se copie in amxmodx=&gt;scripting &lt;p&gt; comenzi: &lt;br /&gt; amx_pass &lt;set server password&gt; &lt;p&gt; amx_nopass &lt;remove server password&gt; &lt;p&gt; amx_ssay &lt;message&gt; &lt;p&gt; amx_hostname &lt;change server hostname&gt; &lt;p&gt; amx_gravity &lt;set server gravity&gt; &lt;p&gt; amx_friendlyfire &lt;enable/disable friendlyfire&gt; &lt;p&gt; amx_tkpunish &lt;enable/disable tkpunish&gt; &lt;p&gt; amx_fraglimit &lt;set server fraglimit&gt; &lt;p&gt; amx_timelimit &lt;set server timelimit&gt; &lt;p&gt; amx_show_activity &lt;set server show_activity&gt; &lt;p&gt; amx_restartround &lt;restart round&gt; &lt;p&gt; amx_restart &lt;restart round&gt; &lt;p&gt; amx_winlimit &lt;set server winlimit&gt; &lt;p&gt; amx_maxrounds &lt;set server maxrounds&gt; &lt;p&gt; amx_freezetime &lt;set server freezetime&gt; &lt;p&gt; amx_startmoney &lt;set server starmoney&gt; &lt;p&gt; amx_forcechasecam &lt;set server forcechasecam&gt; &lt;p&gt; amx_autobalance &lt;set server autobalance&gt; &lt;p&gt; amx_limitteams &lt;set server limitteams&gt; &lt;p&gt; amx_ct &lt;nick&gt; &lt;p&gt; amx_t &lt;nick&gt; &lt;p&gt; si acum de unde il downloadezi &lt;a class=&quot;link&quot; href=&quot;http://files.filefront.com/amxx+am+likerar/;9615653;/fileinfo.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;</content:encoded>
			<category>PlUiGiNs</category>
			<dc:creator>jhonny</dc:creator>
			<guid>https://dvsr.ucoz.com/forum/7-14-1</guid>
		</item>
	</channel>
</rss>