<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[Forums.Counter-Strike.com | Counter-Strike Community Forums - Installation & Tweaking]]></title>
		<link>http://forums.counter-strike.com</link>
		<description>The bits and bytes explained.</description>
		<language>en</language>
		<lastBuildDate>Fri, 20 Nov 2009 23:49:53 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.counter-strike.com/traxdesign/misc/rss.jpg</url>
			<title><![CDATA[Forums.Counter-Strike.com | Counter-Strike Community Forums - Installation & Tweaking]]></title>
			<link>http://forums.counter-strike.com</link>
		</image>
		<item>
			<title><![CDATA[[Web] - Web Map List over FTP]]></title>
			<link>http://forums.counter-strike.com/installation-tweaking/15569-web-web-map-list-over-ftp.html</link>
			<pubDate>Thu, 19 Nov 2009 10:57:05 GMT</pubDate>
			<description><![CDATA[Hi everyone this is my first post .... maybe there will be more but i don't know

I have here php script that shows on a web page the list of all the maps on the server over FTP.


Code:
---------
<?
$ftp_server = "FTP-ServerIP";
$ftp_user_name = "FTP-Username";
$ftp_user_pass = "FTP-Password";

$dir = ‘Path To Maps Folder’;

////////// Functions Start/////////////
function ByteSize($bytes)
{
$size = $bytes / 1024;
if($size < 1024)
{
$size = number_format($size, 2);
$size .= ‘ KB’;
}
else
{
if($size / 1024 < 1024)
{
$size = number_format($size / 1024, 2);
$size .= ‘ MB’;
}
else if ($size / 1024 / 1024 < 1024)
{
$size = number_format($size / 1024 / 1024, 2);
$size .= ‘ GB’;
}
}
return $size;
}

////////// Functions STOP ///////////////

// set up basic connection
$conn_id = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

// check connection
if ((!$conn_id) || (!$login_result)) {
echo “FTP connection has failed!”;
echo “Attempted to connect to $ftp_server for user $ftp_user_name”;
exit;
} else {
// Start Print Ftp Server and Username
echo ‘Connected to <strong>’.$ftp_server.’</strong>, for user <strong>’.$ftp_user_name.’</strong>

‘;
// Stop Print Ftp Server and Username

// Start print current Dir
echo ‘Root: /’.$dir.”.ftp_pwd($conn_id) . ”

“;

// End Print current Dir

// Start “Scan dir over FTP”
$file = (ftp_nlist($conn_id,$dir));
// Stop “Scan dir over FTP”

// Start “Sorting and Echo Files”
foreach( $file as $number => $map )
{

if (preg_match(”/.ztmp?$/”, $map)) {
echo “<strong>.ztmp</strong> found
“;
} else if (preg_match(”/.res?$/”, $map)) {
echo “<strong>.res</strong> found
“;
} else if (preg_match(”/.txt?$/”, $map)) {
echo “<strong>.txt</strong> found
“;
}else {
echo $map.’ - ‘. ByteSize(ftp_size($conn_id, $dir.”/”.$map)).’
‘;
}

}

// Stop “Sorting and Echo Files”
}
// close the FTP stream
ftp_close($conn_id);
echo ‘Script by Ancyent’;

?>
---------
The script can be verified by everyone it's a simple thing for all you all out there who just need something like this.

I didn't found another place to put this so i'm just adding it here.

Pardon my english.]]></description>
			<content:encoded><![CDATA[<div>Hi everyone this is my first post .... maybe there will be more but i don't know<br />
<br />
I have here php script that shows on a web page the list of all the maps on the server over FTP.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;?<br />
$ftp_server = &quot;FTP-ServerIP&quot;;<br />
$ftp_user_name = &quot;FTP-Username&quot;;<br />
$ftp_user_pass = &quot;FTP-Password&quot;;<br />
<br />
$dir = ‘Path To Maps Folder’;<br />
<br />
////////// Functions Start/////////////<br />
function ByteSize($bytes)<br />
{<br />
$size = $bytes / 1024;<br />
if($size &lt; 1024)<br />
{<br />
$size = number_format($size, 2);<br />
$size .= ‘ KB’;<br />
}<br />
else<br />
{<br />
if($size / 1024 &lt; 1024)<br />
{<br />
$size = number_format($size / 1024, 2);<br />
$size .= ‘ MB’;<br />
}<br />
else if ($size / 1024 / 1024 &lt; 1024)<br />
{<br />
$size = number_format($size / 1024 / 1024, 2);<br />
$size .= ‘ GB’;<br />
}<br />
}<br />
return $size;<br />
}<br />
<br />
////////// Functions STOP ///////////////<br />
<br />
// set up basic connection<br />
$conn_id = ftp_connect($ftp_server);<br />
<br />
// login with username and password<br />
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);<br />
<br />
// check connection<br />
if ((!$conn_id) || (!$login_result)) {<br />
echo “FTP connection has failed!”;<br />
echo “Attempted to connect to $ftp_server for user $ftp_user_name”;<br />
exit;<br />
} else {<br />
// Start Print Ftp Server and Username<br />
echo ‘Connected to &lt;strong&gt;’.$ftp_server.’&lt;/strong&gt;, for user &lt;strong&gt;’.$ftp_user_name.’&lt;/strong&gt;<br />
<br />
‘;<br />
// Stop Print Ftp Server and Username<br />
<br />
// Start print current Dir<br />
echo ‘Root: /’.$dir.”.ftp_pwd($conn_id) . ”<br />
<br />
“;<br />
<br />
// End Print current Dir<br />
<br />
// Start “Scan dir over FTP”<br />
$file = (ftp_nlist($conn_id,$dir));<br />
// Stop “Scan dir over FTP”<br />
<br />
// Start “Sorting and Echo Files”<br />
foreach( $file as $number =&gt; $map )<br />
{<br />
<br />
if (preg_match(”/.ztmp?$/”, $map)) {<br />
echo “&lt;strong&gt;.ztmp&lt;/strong&gt; found<br />
“;<br />
} else if (preg_match(”/.res?$/”, $map)) {<br />
echo “&lt;strong&gt;.res&lt;/strong&gt; found<br />
“;<br />
} else if (preg_match(”/.txt?$/”, $map)) {<br />
echo “&lt;strong&gt;.txt&lt;/strong&gt; found<br />
“;<br />
}else {<br />
echo $map.’ - ‘. ByteSize(ftp_size($conn_id, $dir.”/”.$map)).’<br />
‘;<br />
}<br />
<br />
}<br />
<br />
// Stop “Sorting and Echo Files”<br />
}<br />
// close the FTP stream<br />
ftp_close($conn_id);<br />
echo ‘Script by Ancyent’;<br />
<br />
?&gt;</code><hr />
</div>The script can be verified by everyone it's a simple thing for all you all out there who just need something like this.<br />
<br />
I didn't found another place to put this so i'm just adding it here.<br />
<br />
Pardon my english.</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>Ancyent</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15569-web-web-map-list-over-ftp.html</guid>
		</item>
		<item>
			<title>I need an ebook source plz</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15567-i-need-ebook-source-plz.html</link>
			<pubDate>Wed, 18 Nov 2009 23:42:08 GMT</pubDate>
			<description><![CDATA[Hi can anyone tell me the best site to the-ebook-cellar com/]download free ebooks from ?]]></description>
			<content:encoded><![CDATA[<div>Hi can anyone tell me the best site to the-ebook-cellar com/]download free ebooks from ?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>scannelia</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15567-i-need-ebook-source-plz.html</guid>
		</item>
		<item>
			<title>Cs 1.6 DEDICATED server problem, please help!</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15530-cs-1-6-dedicated-server-problem-please-help.html</link>
			<pubDate>Fri, 13 Nov 2009 20:45:43 GMT</pubDate>
			<description>So its says something like this:
(it supposed to download files)

Updating(or sumtin)
Then it says: Installian record not found or something


Can any1 help?</description>
			<content:encoded><![CDATA[<div>So its says something like this:<br />
(it supposed to download files)<br />
<br />
Updating(or sumtin)<br />
Then it says: Installian record not found or something<br />
<br />
<br />
Can any1 help?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>np29468</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15530-cs-1-6-dedicated-server-problem-please-help.html</guid>
		</item>
		<item>
			<title>Server 64 slots?</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15527-server-64-slots.html</link>
			<pubDate>Fri, 13 Nov 2009 19:00:41 GMT</pubDate>
			<description>Hello,

Is it true cs:s does not allow 64 slot servers? I wana buy one but the company says that cs:s does nto allow it. if it is true then why do some people have it, and how do you get it?</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
Is it true cs:s does not allow 64 slot servers? I wana buy one but the company says that cs:s does nto allow it. if it is true then why do some people have it, and how do you get it?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>zaclegend</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15527-server-64-slots.html</guid>
		</item>
		<item>
			<title>Trademark player name</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15525-trademark-player-name.html</link>
			<pubDate>Fri, 13 Nov 2009 17:37:56 GMT</pubDate>
			<description>Hi,

I am trying to trademark my player name since people keep copying mine :mad:

Can anyone help me with this please?</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am trying to trademark my player name since people keep copying mine :mad:<br />
<br />
Can anyone help me with this please?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>monicaminj2000</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15525-trademark-player-name.html</guid>
		</item>
		<item>
			<title>Need Help with Hosties</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15517-need-help-hosties.html</link>
			<pubDate>Fri, 13 Nov 2009 06:12:00 GMT</pubDate>
			<description><![CDATA[I have a Jailbreak server but i need help. The T's Spawn with deagles. That makes it easy for them to rebel. How do i make them not spawn with deagles?]]></description>
			<content:encoded><![CDATA[<div>I have a Jailbreak server but i need help. The T's Spawn with deagles. That makes it easy for them to rebel. How do i make them not spawn with deagles?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>JakeP</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15517-need-help-hosties.html</guid>
		</item>
		<item>
			<title><![CDATA[Can't seem to get started ?]]></title>
			<link>http://forums.counter-strike.com/installation-tweaking/15499-cant-seem-get-started.html</link>
			<pubDate>Wed, 11 Nov 2009 04:27:49 GMT</pubDate>
			<description><![CDATA[In the past I have used/played CS and Team Fortress before Steam.

Last night I installed CS from a retail pack (older).
It's on Windows, XP-pro, IE8.
Everything seems to be working but when I try to "connect to server" I get a blink on the screen and see nothing change, I am still just looking at the "store" page with the "veiw all screenshots " graphic?

Any ideas on what the problem is?

Any help would be appreciated.]]></description>
			<content:encoded><![CDATA[<div>In the past I have used/played CS and Team Fortress <i>before</i> Steam.<br />
<br />
Last night I installed CS from a retail pack (older).<br />
It's on Windows, XP-pro, IE8.<br />
Everything seems to be working but when I try to &quot;connect to server&quot; I get a blink on the screen and see nothing change, I am still just looking at the &quot;store&quot; page with the &quot;veiw all screenshots &quot; graphic?<br />
<br />
Any ideas on what the problem is?<br />
<br />
Any help would be appreciated.</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>budmanmo</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15499-cant-seem-get-started.html</guid>
		</item>
		<item>
			<title>use dual monitors while playin css?</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15494-use-dual-monitors-while-playin-css.html</link>
			<pubDate>Tue, 10 Nov 2009 17:47:03 GMT</pubDate>
			<description>is there a way we could play CSS in 1 monitor and serve the net in the other? without playin it in windowed moood

most  the new games coming out are able to do this so there is bout to be a way to able CSS to do it.

thanks</description>
			<content:encoded><![CDATA[<div>is there a way we could play CSS in 1 monitor and serve the net in the other? without playin it in windowed moood<br />
<br />
most  the new games coming out are able to do this so there is bout to be a way to able CSS to do it.<br />
<br />
thanks</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>stylin</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15494-use-dual-monitors-while-playin-css.html</guid>
		</item>
		<item>
			<title>Is my PC too powerful?</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15469-my-pc-too-powerful.html</link>
			<pubDate>Sat, 07 Nov 2009 22:07:57 GMT</pubDate>
			<description><![CDATA[Hi I looked at the requirements for CS: Source, and compared them to my Toshiba's Hardware. Lets just say that I was "surprised" at the difference. Here's the list:
CPU: Pentium(R) 4
RAM: 1.00GB
Video Card: 32MB
OS: Windows XP

Now here are the requirements:
CPU: Pentium II or Athlon 800MHz Processor
RAM: 256MB
Video Card: 32MB
OS: Windows 2000/XP

My only concern is the CPU and RAM size, I usually play on silent unless i'm with friends, and I'm pretty sure my Modem is up to the task.

THX in advance! :D]]></description>
			<content:encoded><![CDATA[<div>Hi I looked at the requirements for CS: Source, and compared them to my Toshiba's Hardware. Lets just say that I was &quot;surprised&quot; at the difference. Here's the list:<br />
CPU: Pentium(R) 4<br />
RAM: 1.00GB<br />
Video Card: 32MB<br />
OS: Windows XP<br />
<br />
Now here are the requirements:<br />
CPU: Pentium II or Athlon 800MHz Processor<br />
RAM: 256MB<br />
Video Card: 32MB<br />
OS: Windows 2000/XP<br />
<br />
My only concern is the CPU and RAM size, I usually play on silent unless i'm with friends, and I'm pretty sure my Modem is up to the task.<br />
<br />
THX in advance! :D</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>lulisz</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15469-my-pc-too-powerful.html</guid>
		</item>
		<item>
			<title>does counter strike give me virus when i go to a room and it downloads files?</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15456-does-counter-strike-give-me-virus-when-i-go-room-downloads-files.html</link>
			<pubDate>Fri, 06 Nov 2009 02:30:02 GMT</pubDate>
			<description>when I join a game it downloads files. does it give virus?</description>
			<content:encoded><![CDATA[<div>when I join a game it downloads files. does it give virus?</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>csnib123</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15456-does-counter-strike-give-me-virus-when-i-go-room-downloads-files.html</guid>
		</item>
		<item>
			<title>help me pls</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15383-help-me-pls.html</link>
			<pubDate>Fri, 30 Oct 2009 15:44:55 GMT</pubDate>
			<description><![CDATA[my fps 20 &#305; have geforce 8400gs 512mb but fps 20 30 40 help me pls]]></description>
			<content:encoded><![CDATA[<div>my fps 20 &#305; have geforce 8400gs 512mb but fps 20 30 40 help me pls</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>secretagent</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15383-help-me-pls.html</guid>
		</item>
		<item>
			<title>Fast CS Maps Download!!!!</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15359-fast-cs-maps-download.html</link>
			<pubDate>Tue, 27 Oct 2009 11:18:12 GMT</pubDate>
			<description><![CDATA[Hi I need help making a fast CS map download on my server.  I have my own domain "Insclan(.)com"
I dont know what Im doing wrong, on my ftp I have so much folders, where do I put the "cstrike" folder?  

And all my server.cfg setting is all correct.]]></description>
			<content:encoded><![CDATA[<div>Hi I need help making a fast CS map download on my server.  I have my own domain &quot;Insclan(.)com&quot;<br />
I dont know what Im doing wrong, on my ftp I have so much folders, where do I put the &quot;cstrike&quot; folder?  <br />
<br />
And all my server.cfg setting is all correct.</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>skyline360pro</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15359-fast-cs-maps-download.html</guid>
		</item>
		<item>
			<title>Problem with cs 1.6 server.</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15351-problem-cs-1-6-server.html</link>
			<pubDate>Mon, 26 Oct 2009 17:57:37 GMT</pubDate>
			<description><![CDATA[Hi, i have a big problem with cs 1.6 steam server.
Then i create server with pingboost 2, i have max 250 fps on server, using stats command in rcon.
So i tried on 3 differents pc ant differents internets, but same problem.
On others i have 1000 fps, but on these 250 max with pingboost 2, so what a problem?
Maybe need to do something in kernel or i dont know...

Dont say to me: "Use pingboost 3 or without him".]]></description>
			<content:encoded><![CDATA[<div>Hi, i have a big problem with cs 1.6 steam server.<br />
Then i create server with pingboost 2, i have max 250 fps on server, using stats command in rcon.<br />
So i tried on 3 differents pc ant differents internets, but same problem.<br />
On others i have 1000 fps, but on these 250 max with pingboost 2, so what a problem?<br />
Maybe need to do something in kernel or i dont know...<br />
<br />
Dont say to me: &quot;Use pingboost 3 or without him&quot;.</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>Mindae</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15351-problem-cs-1-6-server.html</guid>
		</item>
		<item>
			<title>CS 1.6 Config file and other files restarts to default wtf ?</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15345-cs-1-6-config-file-other-files-restarts-default-wtf.html</link>
			<pubDate>Sun, 25 Oct 2009 21:20:31 GMT</pubDate>
			<description><![CDATA[Hello mates I'm having a really dumb trouble I never had this thing... before ,I will explain:
I just downaded a Decal converter to convert spray paint everyting is ok i convert put in cstrike directory then start game spray and i see my spray paint ,but when I restart CS my spray paint is gone !!?(I see a default spraypaint) and the same thing with config file I added a:
 balias +bhop "alias _special jump;jump"
alias -bhop "alias _special"
alias jump "+jump;wait;-jump;wait;special"
bind "MOUSE3" "+bhop" 
I save, start game and the bunny hop works and when i turn off cs and turn on and it's gone, i'm open config and the cript i added : alias +bhop "alias _special jump;jump"
alias -bhop "alias _special"
alias jump "+jump;wait;-jump;wait;special"
bind "MOUSE3" "+bhop" 
is gone !!
it's like the files restarts to default did someone had this trouble and knows how to fix it ? I would be really happy if someone would help me :) 
i tryed to download other cs and it's the same problem]]></description>
			<content:encoded><![CDATA[<div>Hello mates I'm having a really dumb trouble I never had this thing... before ,I will explain:<br />
I just downaded a Decal converter to convert spray paint everyting is ok i convert put in cstrike directory then start game spray and i see my spray paint ,but when I restart CS my spray paint is gone !!?(I see a default spraypaint) and the same thing with config file I added a:<br />
 balias +bhop &quot;alias _special jump;jump&quot;<br />
alias -bhop &quot;alias _special&quot;<br />
alias jump &quot;+jump;wait;-jump;wait;special&quot;<br />
bind &quot;MOUSE3&quot; &quot;+bhop&quot; <br />
<font color="DarkOrange">I save, start game and the bunny hop works and when i turn off cs and turn on and it's gone, i'm open config and the cript i added : </font>alias +bhop &quot;alias _special jump;jump&quot;<br />
alias -bhop &quot;alias _special&quot;<br />
alias jump &quot;+jump;wait;-jump;wait;special&quot;<br />
bind &quot;MOUSE3&quot; &quot;+bhop&quot; <br />
<font color="DarkOrange">is gone !!</font><br />
it's like the files restarts to default did someone had this trouble and knows how to fix it ? I would be really happy if someone would help me :) <br />
i tryed to download other cs and it's the same problem</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>dk3x7mj</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15345-cs-1-6-config-file-other-files-restarts-default-wtf.html</guid>
		</item>
		<item>
			<title>need help :x</title>
			<link>http://forums.counter-strike.com/installation-tweaking/15327-need-help-x.html</link>
			<pubDate>Fri, 23 Oct 2009 20:04:41 GMT</pubDate>
			<description>Hello guys i buy a server recently but when i kill or shot someone the guys and the objects start flying and is not from the gravity because the gravity on the server is 800 . help me please :c</description>
			<content:encoded><![CDATA[<div>Hello guys i buy a server recently but when i kill or shot someone the guys and the objects start flying and is not from the gravity because the gravity on the server is 800 . help me please :c</div>

]]></content:encoded>
			<category domain="http://forums.counter-strike.com/installation-tweaking/"><![CDATA[Installation & Tweaking]]></category>
			<dc:creator>nunosilva</dc:creator>
			<guid isPermaLink="true">http://forums.counter-strike.com/installation-tweaking/15327-need-help-x.html</guid>
		</item>
	</channel>
</rss>
