<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gaming &#8211; Henry Poon&#039;s Blog</title>
	<atom:link href="https://blog.henrypoon.com/blog/tag/gaming/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.henrypoon.com</link>
	<description></description>
	<lastBuildDate>Mon, 03 Oct 2022 05:42:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">83044199</site>	<item>
		<title>Disabling Mouse Acceleration in Ubuntu</title>
		<link>https://blog.henrypoon.com/blog/2015/01/25/disabling-mouse-acceleration-in-ubuntu/</link>
					<comments>https://blog.henrypoon.com/blog/2015/01/25/disabling-mouse-acceleration-in-ubuntu/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 25 Jan 2015 08:31:32 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer mice]]></category>
		<category><![CDATA[Computer mouse]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Counter-Strike]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Digital technology]]></category>
		<category><![CDATA[DirectInput]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mass]]></category>
		<category><![CDATA[mouse acceleration]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Plug]]></category>
		<category><![CDATA[Programming languages]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://www.henrypoon.com/blog/?p=1955</guid>

					<description><![CDATA[I&#8217;ve been quite accustomed to disabling mouse acceleration on my Windows machine (thanks to playing massive amounts of Counter-Strike back in the day), but now that I&#8217;ve started to use Linux a bit more, I&#8217;ve found that disabling mouse acceleration was not as easy as in Windows. Script I&#8217;ve managed to produce a script to [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I&#8217;ve been quite accustomed to disabling mouse acceleration on my Windows machine (thanks to playing massive amounts of Counter-Strike back in the day), but now that I&#8217;ve started to use Linux a bit more, I&#8217;ve found that disabling mouse acceleration was not as easy as in Windows.</p>



<h1 class="wp-block-heading">Script</h1>



<p class="wp-block-paragraph">I&#8217;ve managed to produce a script to disable mouse acceleration (works for me on Ubuntu 14.04).  However, this script needs to be run every time the computer boots because the settings don&#8217;t stay.  Here is the script:</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">#wait for the desktop to settle
sleep 5

#gets the hardware id's of all mice plugged into the system
hardwareIds=$(xinput | grep -i mouse | awk '{print substr($(NF-3),4)}')

#turn off mouse acceleration
for i in $hardwareIds
do
xinput set-prop ${i} 'Device Accel Profile' -1
xinput set-prop ${i} 'Device Accel Velocity Scaling' 1
done</code></pre>



<h1 class="wp-block-heading">Explanation</h1>



<p class="wp-block-paragraph">The script works by extracting the hardware id&#8217;s of the mice that are connected to the system and then applying properties to them that disable mouse acceleration for that device.  The extraction of the mouse hardware id&#8217;s are done with this:</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">#gets the hardware id's of all mice plugged into the system
hardwareIds=$(xinput | grep -i mouse | awk '{print substr($(NF-3),4)}')</code></pre>



<p class="wp-block-paragraph">Calling xinput in the Terminal will list all the connected input devices, which is grepped (case insensitively) for the word &#8220;mouse&#8221;, which gives something like this on my machine:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>⎜ ↳ Logitech G500s Laser Gaming Mouse id=14 [slave pointer (2)]<br>⎜ ↳ Logitech G500s Laser Gaming Mouse id=15 [slave pointer (2)]</p></blockquote>



<p class="wp-block-paragraph">The call to awk extracts the hardware id&nbsp;from those two lines (14, 15 in the above case) and stores them in an array that is iterated through when setting the mouse properties.</p>



<h1 class="wp-block-heading">Reference</h1>



<p class="wp-block-paragraph">This is the website that showed me how to disable mouse acceleration to begin with:&nbsp;<a href="http://ubuntuforums.org/showthread.php?t=1734400" target="_blank" rel="noopener noreferrer">http://ubuntuforums.org/showthread.php?t=1734400</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2015/01/25/disabling-mouse-acceleration-in-ubuntu/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1955</post-id>	</item>
		<item>
		<title>Tokyo</title>
		<link>https://blog.henrypoon.com/blog/2014/07/19/tokyo/</link>
					<comments>https://blog.henrypoon.com/blog/2014/07/19/tokyo/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sat, 19 Jul 2014 22:17:44 +0000</pubDate>
				<category><![CDATA[asia]]></category>
		<category><![CDATA[akihabara]]></category>
		<category><![CDATA[akihabara radio hall]]></category>
		<category><![CDATA[Amusement parks]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[androids]]></category>
		<category><![CDATA[Anime]]></category>
		<category><![CDATA[Arcade games]]></category>
		<category><![CDATA[asakusa]]></category>
		<category><![CDATA[asimo]]></category>
		<category><![CDATA[Bakumatsu]]></category>
		<category><![CDATA[Battleship]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Companies]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Euro]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[gundam]]></category>
		<category><![CDATA[Home computer games]]></category>
		<category><![CDATA[Human]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[japanese war history]]></category>
		<category><![CDATA[jr rail]]></category>
		<category><![CDATA[korea]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[Light]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[lots of people]]></category>
		<category><![CDATA[Miraikan]]></category>
		<category><![CDATA[mirakan]]></category>
		<category><![CDATA[Museum]]></category>
		<category><![CDATA[Museums]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[odaiba]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Over]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[pikachu]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[pokemon]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[rainbow bridge]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[robot restaurant]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Sensō-ji]]></category>
		<category><![CDATA[sensoji]]></category>
		<category><![CDATA[shibuya]]></category>
		<category><![CDATA[shibya crossing]]></category>
		<category><![CDATA[shinjuku]]></category>
		<category><![CDATA[shinto]]></category>
		<category><![CDATA[Ships]]></category>
		<category><![CDATA[Shopping]]></category>
		<category><![CDATA[shrine]]></category>
		<category><![CDATA[Sino-Japanese War]]></category>
		<category><![CDATA[skytree]]></category>
		<category><![CDATA[Statue of Liberty]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Struct]]></category>
		<category><![CDATA[taito]]></category>
		<category><![CDATA[Tank]]></category>
		<category><![CDATA[tanks]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Temple]]></category>
		<category><![CDATA[terminator]]></category>
		<category><![CDATA[tetris]]></category>
		<category><![CDATA[tgm3]]></category>
		<category><![CDATA[The Go]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Tokyo]]></category>
		<category><![CDATA[Tokyo Bay]]></category>
		<category><![CDATA[tokyo metro]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[Video games]]></category>
		<category><![CDATA[Vol]]></category>
		<category><![CDATA[yasukuni shrine]]></category>
		<category><![CDATA[yushukan]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/tokyo</guid>

					<description><![CDATA[Never before have I ever been to a city with so many people. There are so many things to do here too. For example, there&#8217;s a lot of good food, shopping, entertainment, technology &#8211; pretty much everything. I&#8217;ll do my best to sum up the places that I visited and the stuff really stuck out [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Never before have I ever been to a city with so many people. There are so many things to do here too. For example, there&#8217;s a lot of good food, shopping, entertainment, technology &#8211; pretty much everything. I&#8217;ll do my best to sum up the places that I visited and the stuff really stuck out to me here.</p>



<h1 class="wp-block-heading">Let&#8217;s Cross The Street&#8230; Diagonally!</h1>



<p class="wp-block-paragraph">This is no surprise really. There are lots of people in Tokyo. The crazy thing is that at the Shibuya crossing, the lights for cars can be red at the same time for all directions, and allows pedestrians to cross the intersection in any direction they want.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw/photo/AF1QipNKkXPoBBjKKGlK_XVWPpxwOYaBvTVku81LzVFj?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh4.googleusercontent.com/lEYXC6Cy_KuVMUEyceEMPfVy0lbK4QCeYbC-_IvkOSwk=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Their Metro System Is Complicated</h1>



<p class="wp-block-paragraph">That picture there shows only the metro lines operated by the JR Railway Company. There is another set that is run by other companies such as the Tokyo Metro Company. Route planning apps save the day!</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw/photo/AF1QipOATMjEUtWZv2tVhAhlRk4Q826f9LuFVWoaSmhF?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/ek_FVDmvlXZhg-qP4QNTyzWBW2F1s_0cc2NoBQNLrejI=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Nintendo Is Big Around Here</h1>



<p class="wp-block-paragraph">Akihabara has many shops that sell used gaming consoles like Gameboys, Super Nintendos, and N64&#8217;s. They even sell tons of used games for them too. I managed to pick up a used copy of Tetris DS before I left.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipMKyn09_D6Pg1pbZ8TkvbwGxC35ZBOz-6AKgrfOBaVqPdwOwKXC4ISu6PDEHzVk6g/photo/AF1QipP6xS7KDF5q9bwE6uWamjjwMqpbp_lHht-WKHpo?key=dWQxcUtkdE1zclNlX1ZnNFBUdEhwMGpKWXc4ekFR" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/oUcHnTQQClP4xFlQu4tD7iWhzO_qu1gUVvbhpvviHWtr=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">I Finally Played TGM3 at the Arcade</h1>



<p class="wp-block-paragraph">TGM3 is a Japanese variation of Tetris that is designed to be very very hard (see <a href="https://www.youtube.com/watch?v=YWZHhjQQtxQ" target="_blank" rel="noreferrer noopener">this</a>). The video starts getting crazy at about 3 minutes and becomes completely insane at about 5:08. Ever since playing lots of Tetris during my undergrad and learning about this game, I finally got the chance to play this at the arcade and not on an emulator. This was at HEY (Hirose Entertainment Yard) in Akihabara.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipMKyn09_D6Pg1pbZ8TkvbwGxC35ZBOz-6AKgrfOBaVqPdwOwKXC4ISu6PDEHzVk6g/photo/AF1QipPDABjibXnDDrvDR17zMgjDCppY8fd6R7fV2kjm?key=dWQxcUtkdE1zclNlX1ZnNFBUdEhwMGpKWXc4ekFR" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/-iojuW1eO-2BVAGEPK8GYvqsmdeqpy8E16i8GAoV6MTS=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">People Still Like Pokemon</h1>



<p class="wp-block-paragraph">I don&#8217;t think kids today in North America still watch Pokemon, but in Japan it&#8217;s still popular &#8211; popular enough for Pokemon themed stores.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw/photo/AF1QipMLONLDoqOLUZ9uLqSkPh4cZWxk_kdHAI7qadvK?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh6.googleusercontent.com/-EqzzQNOxRRQ/U7ZJQn9QdeI/AAAAAAAAXiQ/YedX19_t_FI/w1358-h764-no/IMG_0188.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw/photo/AF1QipMHD_Qt2NsEIYvDUkqxq0upMYQsEQxUaINqb3SQ?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh5.googleusercontent.com/-Vu0cLYDQJ8w/U7ZI2YqyYNI/AAAAAAAAXiI/9s5td6BTlFM/w1358-h764-no/IMG_0179.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Japanese War History</h1>



<p class="wp-block-paragraph">Yasukuni Shrine is a shrine that commemorates those who died serving the Empire of Japan. Some of these commemorated people happen to be considered war criminals, where 14 of them are A-Class war criminals, which makes this place quite controversial. It was reported that Shinzo Abe, as the Prime Minister of Japan, visited this shrine, which angered the governments of China and Korea. Near the shrine itself, there is a museum that chronicles Japanese war history, known as the Yushukan, where visitors can see various relics and artifacts from the different wars that Japan has been involved in.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipP-TpXGF7L4aHRKY-yVuJLM3VYqc5ma2tca57ABJBveGhrAuQT6VWwCHV8dWkuqew/photo/AF1QipMuEXG4jbDUc8gufQB7rU15bxO8Qkn5qTN3Mjyk?key=aG1VUGJPd2xKakxrR1ZEQVlRMmhRLUE1eGtJMGtR" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh4.googleusercontent.com/rVoPWaF37tfqCGtRa3yVVKSUhGt4BOSG3oq27kJ5Iqtn=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipP-TpXGF7L4aHRKY-yVuJLM3VYqc5ma2tca57ABJBveGhrAuQT6VWwCHV8dWkuqew/photo/AF1QipN0O98NkBKSG3B8F8sMPa1ZYhRKgbJ0QcPhqglq?key=aG1VUGJPd2xKakxrR1ZEQVlRMmhRLUE1eGtJMGtR" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/zzzUa5WdSDGNPnMN9OfPO-PtAEiOLCJKB0wrOfBylvd0=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">The Future Is Here</h1>



<p class="wp-block-paragraph">The Miraikan, also known as the National Museum of Emerging Science and Innovation, displays the latest cutting-edge technology from Japan. Asimo, the Honda Robot is one of the main attractions here, as well as the display of humanoid android robots (like the picture below).</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipOLCGYdwZar8BsEitiXIXeTs-xhbggs2X_LnvQYZ7cEpCJMr1FfXhT4uNRFozFSYw/photo/AF1QipObWvPsGNiqmyI-SI8eC2txcaTZSRukb7wzdGfx?key=dVE2M2xZV3FKNTk5WDdkaFd6cm1YU1pWYzZmLWJB" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh3.googleusercontent.com/-T3cVc5Mweoo/U7bZ69Ba2AI/AAAAAAAAXpU/DFUW3vlvQvA/w1358-h764-no/IMG_0797.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipOLCGYdwZar8BsEitiXIXeTs-xhbggs2X_LnvQYZ7cEpCJMr1FfXhT4uNRFozFSYw/photo/AF1QipO-QD4pOdpGVClLFJ7aKIcO3XDiXIxqCc8fbCG3?key=dVE2M2xZV3FKNTk5WDdkaFd6cm1YU1pWYzZmLWJB" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh3.googleusercontent.com/-AYN29lHStRw/U7baDu9HkvI/AAAAAAAAXpc/WrPp84AFlAI/w1358-h764-no/IMG_0801.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Odaiba, A Less Busy Part of Tokyo</h1>



<p class="wp-block-paragraph">Odaiba is an artificial island in Tokyo Bay, and has lots of attractions like scenery, museums (like the Miraikan), shopping, and amusement parks (like Legoland and Joypolis).</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipOLCGYdwZar8BsEitiXIXeTs-xhbggs2X_LnvQYZ7cEpCJMr1FfXhT4uNRFozFSYw/photo/AF1QipNmgUPSa0z0EV5BJayr7qWGbIr3b0FtmSGxd_Yz?key=dVE2M2xZV3FKNTk5WDdkaFd6cm1YU1pWYzZmLWJB" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh4.googleusercontent.com/wsD91Vz-mAYL-3pgGZs02uzDJx6oZnYR1W5AVjVqUorq=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipOLCGYdwZar8BsEitiXIXeTs-xhbggs2X_LnvQYZ7cEpCJMr1FfXhT4uNRFozFSYw/photo/AF1QipPVBLMuTSTt5ZBIHje4wS2D7DaledYuAyCmFNCk?key=dVE2M2xZV3FKNTk5WDdkaFd6cm1YU1pWYzZmLWJB" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh6.googleusercontent.com/-hKXzr2mPetY/U7baVtQycYI/AAAAAAAAVb0/njadjN6RrKE/w620-h826-no/IMG_0807.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Lots of Temples and Shrines</h1>



<p class="wp-block-paragraph">Tokyo has no shortage of temples and shrines. The Sensoji Temple in Asakusa is among the famous ones. To me it is that Japan is to temples and shrines as Europe is to churches and cathedrals.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPC8T6WPUvoUOGWrKvWxLfBTlwlL23LlYee6zs0HH-7yC9WOO25PV1Wb46FJI_b2A/photo/AF1QipNBgpiBQJxgDYWyGT5QEwpoAokWa8hLR615Kigh?key=ZnNsMGpZMlV0dVY4c1hhV0cwd20td1VZZlpuRVBB" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh4.googleusercontent.com/Qse2IxvWjTnHoD2ALyvDi0YM3IBn-vzsxKIAdhnjiem6=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPC8T6WPUvoUOGWrKvWxLfBTlwlL23LlYee6zs0HH-7yC9WOO25PV1Wb46FJI_b2A/photo/AF1QipM8HaGrnkUg3CYdidDI6i4QXCEx67zmK3zeQz-N?key=ZnNsMGpZMlV0dVY4c1hhV0cwd20td1VZZlpuRVBB" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh6.googleusercontent.com/N2RiBz1owM3VT4l8Wm1VkQvJ2FdlKWD9X1Eqytu0fsm8=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">Scenery at High Places</h1>



<p class="wp-block-paragraph">Tokyo Skytree is the tallest structure in Japan and features an observation deck that allows visitors to see the surrounding area. I felt my ears popping as the elevator took me to the top because of the sheer height of the building. At the observation deck, there are touch screens that give information on various landmarks that can be seen. On a clear day, it is possible to see Mount Fuji from here.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipNx7kut35KPJVoAG2RfnJLMXhx3qDks2kofqy_nwsU4MxwJioBKvWUHLHGiEHBrag/photo/AF1QipORGpmnLdnEsI8yqLdbEPCsC6sftVeIXNtEiY7S?key=WHVldnVreTZJSWl0dUtubHU4eDY3eEJCQ0dPN3FB" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh5.googleusercontent.com/-6xdwb8b6PGM/U7bXRvGroSI/AAAAAAAAXoU/uxtDn5m8Bvs/w1358-h764-no/IMG_0525.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipNx7kut35KPJVoAG2RfnJLMXhx3qDks2kofqy_nwsU4MxwJioBKvWUHLHGiEHBrag/photo/AF1QipPD-C5cCceia3OBnl8WQ2S-a217cYLq9je1_XFs?key=WHVldnVreTZJSWl0dUtubHU4eDY3eEJCQ0dPN3FB" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh5.googleusercontent.com/qCWpAeE1Nz7F8xIW-imyJoWp9USMuiZqfeXOul2w73ua=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipNx7kut35KPJVoAG2RfnJLMXhx3qDks2kofqy_nwsU4MxwJioBKvWUHLHGiEHBrag/photo/AF1QipMdbctbAzGQ62LDjEf9Dk3fwAFrs-NVqYEKOTRF?key=WHVldnVreTZJSWl0dUtubHU4eDY3eEJCQ0dPN3FB" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/LCLH4Ljy3qnDSLbr-WqHG6xepwCzH-KfWS6bEfe3U3jK=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">For Collectors of Figurines</h1>



<p class="wp-block-paragraph">The Akihabara Radio Hall has a collection of stores with lots and lots of figurines from various anime series. Other stores even sell models of tanks, battleships, etc. There was one in particular that sold giant models from blockbuster Hollywood movies like Robocop, Batman, and Terminator. Would have liked to take a better picture, but they had a strict no photography policy.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipMKyn09_D6Pg1pbZ8TkvbwGxC35ZBOz-6AKgrfOBaVqPdwOwKXC4ISu6PDEHzVk6g/photo/AF1QipOiLf3G5Gj9aXKc7mM2KVN32Ycd66a1WJlWe03n?key=dWQxcUtkdE1zclNlX1ZnNFBUdEhwMGpKWXc4ekFR" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/x-6o8TVkcCtwAc2mNu8Y_qmLBuCCnm1EgrQOJVL1OfwK=w1358-h764-no" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<h1 class="wp-block-heading">WTF</h1>



<p class="wp-block-paragraph">It&#8217;s true. Japan has lots of weird stuff. That picture below is for a place called the Robot Restaurant. It&#8217;s hard to explain. It&#8217;s better to watch <a href="https://www.youtube.com/watch?v=V04eZypASi4" target="_blank" rel="noreferrer noopener">this</a> (it starts off pretty weird and just gets weirder).</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw/photo/AF1QipM-6BEzsqDwlkUOq-Ssr2GwUChkCWFVPBbHNX7r?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/lh3.googleusercontent.com/-wN_by6LrZno/U7a3Uz9G8kI/AAAAAAAAXig/E7dWgsywNG8/w1358-h764-no/IMG_0195.JPG?w=1280&#038;ssl=1" alt=""/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"></p>



<p class="wp-block-paragraph">Links to more photos:</p>



<ul class="wp-block-list"><li><a href="https://photos.google.com/share/AF1QipPRxsil_YSbaoJdurZwzrOznS1RNqmKfhpyJ2BpV4oXKvijEhnTeIm8PV6cB17-Vw?key=YUQ1endKdjZ2VWRsUUdWT3REQ29aNVNjWm4wNFd3" target="_blank" rel="noreferrer noopener">Tokyo</a></li><li><a href="https://photos.google.com/share/AF1QipMKyn09_D6Pg1pbZ8TkvbwGxC35ZBOz-6AKgrfOBaVqPdwOwKXC4ISu6PDEHzVk6g?key=dWQxcUtkdE1zclNlX1ZnNFBUdEhwMGpKWXc4ekFR" target="_blank" rel="noreferrer noopener">Akihabara</a></li><li><a href="https://photos.google.com/share/AF1QipPC8T6WPUvoUOGWrKvWxLfBTlwlL23LlYee6zs0HH-7yC9WOO25PV1Wb46FJI_b2A?key=ZnNsMGpZMlV0dVY4c1hhV0cwd20td1VZZlpuRVBB" target="_blank" rel="noreferrer noopener">Asakusa</a></li><li><a href="https://photos.google.com/share/AF1QipP-TpXGF7L4aHRKY-yVuJLM3VYqc5ma2tca57ABJBveGhrAuQT6VWwCHV8dWkuqew?key=aG1VUGJPd2xKakxrR1ZEQVlRMmhRLUE1eGtJMGtR" target="_blank" rel="noreferrer noopener">Yasukuni Shrine</a></li><li><a href="https://photos.google.com/share/AF1QipOLCGYdwZar8BsEitiXIXeTs-xhbggs2X_LnvQYZ7cEpCJMr1FfXhT4uNRFozFSYw?key=dVE2M2xZV3FKNTk5WDdkaFd6cm1YU1pWYzZmLWJB" target="_blank" rel="noreferrer noopener">Odaiba</a></li><li><a href="https://photos.google.com/share/AF1QipNx7kut35KPJVoAG2RfnJLMXhx3qDks2kofqy_nwsU4MxwJioBKvWUHLHGiEHBrag?key=WHVldnVreTZJSWl0dUtubHU4eDY3eEJCQ0dPN3FB" target="_blank" rel="noreferrer noopener">Tokyo Skytree</a></li></ul>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2014/07/19/tokyo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1874</post-id>	</item>
		<item>
		<title>Counter-Strike Nostalgia</title>
		<link>https://blog.henrypoon.com/blog/2012/04/26/counter-strike-nostalgia/</link>
					<comments>https://blog.henrypoon.com/blog/2012/04/26/counter-strike-nostalgia/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Fri, 27 Apr 2012 04:44:46 +0000</pubDate>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[Camping]]></category>
		<category><![CDATA[Cheating in online games]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[Counter-Strike]]></category>
		<category><![CDATA[counter-strike-global-offensive]]></category>
		<category><![CDATA[Cultures]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[First-person shooter]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Gun]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[Internet culture]]></category>
		<category><![CDATA[Internet humor]]></category>
		<category><![CDATA[Internet memes]]></category>
		<category><![CDATA[Internet slang]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lag]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[Lolcat]]></category>
		<category><![CDATA[Over]]></category>
		<category><![CDATA[Pawn]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Rolling]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[tuna]]></category>
		<category><![CDATA[Unreal]]></category>
		<category><![CDATA[Valve Corporation]]></category>
		<category><![CDATA[Video game culture]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/counter-strike-nostalgia</guid>

					<description><![CDATA[Every now and then, I feel nostalgic about this game… BoostingUnrealistic, but it was definitely a useful tool for getting teammates to places that otherwise couldn’t be reached to surprise people Bhopping/Crouch RunningThat satisfying kill from crouch hopping around the map and then hopping around a corner and slashing someone in the face. Lagging in [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Every now and then, I feel nostalgic about this game…</p>



<figure class="wp-block-table is-style-stripes"><table><tbody><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="640" height="480" class="wp-image-7308" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_boosting.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_boosting.png?w=640&amp;ssl=1 640w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_boosting.png?resize=508%2C381&amp;ssl=1 508w" sizes="(max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Boosting<br></strong>Unrealistic, but it was definitely a useful tool for getting teammates to places that otherwise couldn’t be reached to surprise people</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" decoding="async" width="640" height="480" class="wp-image-7314" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_bhop.png?resize=640%2C480&#038;ssl=1" alt=""></td><td class="has-text-align-left" data-align="left"><strong>Bhopping/Crouch Running<br></strong>That satisfying kill from crouch hopping around the map and then hopping around a corner and slashing someone in the face.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" decoding="async" width="640" height="480" class="wp-image-7316" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_smoke.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_smoke.png?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_smoke.png?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_smoke.png?resize=508%2C381&amp;ssl=1 508w" sizes="(max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Lagging in a smoke grenade<br></strong>Even turning the graphics to 16 bit didn’t help. But at least you could see through the smoke!</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7318" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_pickmid.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_pickmid.png?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_pickmid.png?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_pickmid.png?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Picking mid<br></strong>I was always terrible at it. Could never pick off the guy running out of CT spawn.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7320" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_killhostage.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_killhostage.jpg?w=640&amp;ssl=1 640w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_killhostage.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Shooting hostages<br></strong>We all did this.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7323" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_surf.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_surf.jpg?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_surf.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_surf.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Surfing<br></strong>Flying in the air while the noobs died without understanding why.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7322" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stacking.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stacking.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stacking.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stacking.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Stacking players<br></strong>Just for teh lulz</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7324" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_awpmap.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_awpmap.jpg?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_awpmap.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_awpmap.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>awp_map<br></strong>There was always that one guy who decided to buy a a regular rifle and rush down the map.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7325" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_iceworld.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_iceworld.jpg?w=1200&amp;ssl=1 1200w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_iceworld.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_iceworld.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>fy_iceworld<br></strong>Most awesome run and gun map created for Counter-Strike</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7326" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stack.webp?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stack.webp?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stack.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stack.webp?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Stacked player defense<br></strong>It seriously works – well maybe not with 5 people…</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7329" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_defuse-1.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_defuse-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_defuse-1.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Defusing<br></strong>Likes to blow up right before the defuse is finished. Then at times, we hear the satisfying click of a defused bomb.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="488" class="wp-image-7331" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_cat.jpg?resize=640%2C488&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_cat.jpg?w=720&amp;ssl=1 720w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_cat.jpg?resize=508%2C387&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Cat with a scout?<br></strong>I guess this was a LOLcat before they were called LOLcats</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="484" class="wp-image-7332" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_silentplant.jpg?resize=640%2C484&#038;ssl=1" alt=""></td><td class="has-text-align-left" data-align="left"><strong>Silent plant<br></strong>Was always scared of defusing these…</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7333" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_netgraph.png?resize=640%2C480&#038;ssl=1" alt=""></td><td class="has-text-align-left" data-align="left"><strong>FPS<br></strong>Everyone played at 100 fps, rate 25000, cl_cmdrate 101, cl_rate 25000, and ex_interp 0.01. Otherwise, the settings weren’t optimal.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7334" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_knife.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_knife.jpg?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_knife.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_knife.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Knifing<br></strong>Humiliation!</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7357" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_suicidenade.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_suicidenade.png?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_suicidenade.png?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_suicidenade.png?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Suicide bombing<br></strong>With four other people, we once tried cooking a nade in our hand and running up to one player. As people died, they’d drop their nades hoping that we’d blow up the other guy. Didn’t work.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="360" class="wp-image-7349" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamnade.webp?resize=640%2C360&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamnade.webp?w=640&amp;ssl=1 640w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamnade.webp?resize=508%2C286&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Teamkilling with grenades<br></strong>Was always super unexpected, but hilarious.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7351" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamkill.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamkill.jpg?w=1152&amp;ssl=1 1152w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamkill.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_teamkill.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Accidental teamkilling<br></strong>I once got shot by my teammate when I ran through mid while he was picking it…noob mistake.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="360" class="wp-image-7352" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_sneak.jpg?resize=640%2C360&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_sneak.jpg?w=1280&amp;ssl=1 1280w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_sneak.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_sneak.jpg?resize=1240%2C698&amp;ssl=1 1240w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_sneak.jpg?resize=508%2C286&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>That awkward moment<br></strong>Happens to the best of us.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7353" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_dualies.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_dualies.jpg?w=640&amp;ssl=1 640w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_dualies.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Trolling with non-standard weapons<br></strong>I once 1v5 clutch aced using a para…all in the name of trolling.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7337" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stackedrunning.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stackedrunning.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stackedrunning.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_stackedrunning.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Stacked running<br></strong>Was always a nice surprise to those unsuspecting enemies.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7338" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_eco.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_eco.jpg?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_eco.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_eco.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Eco rounds<br></strong>Leads to camping and clutch wins.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7339" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_camping.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_camping.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_camping.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_camping.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Camping<br></strong>We’ve all done it. Campmeter = 100%.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="400" class="wp-image-7340" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_driving.webp?resize=640%2C400&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_driving.webp?w=1440&amp;ssl=1 1440w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_driving.webp?resize=768%2C480&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_driving.webp?resize=1240%2C775&amp;ssl=1 1240w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_driving.webp?resize=508%2C318&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Driving<br></strong>I’m sure everyone tried to drive a car to run over other people and then somehow die when another car intersected with their own. Somehow, the player would then fly up to the ceiling and fall to his death.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="512" class="wp-image-7343" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_headshot.jpg?resize=640%2C512&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_headshot.jpg?w=1280&amp;ssl=1 1280w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_headshot.jpg?resize=768%2C614&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_headshot.jpg?resize=1240%2C992&amp;ssl=1 1240w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_headshot.jpg?resize=508%2C406&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>One-click headshots<br></strong>Probably the second most satisfying kill. Strafe out of a corner, click, win.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="512" class="wp-image-7346" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_ssround.png?resize=640%2C512&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_ssround.png?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_ssround.png?resize=768%2C614&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_ssround.png?resize=508%2C406&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Screenshot rounds<br></strong>An annoying but necessary chore for league play. Had to be done before lo3.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7356" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_window.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_window.png?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_window.png?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_window.png?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Hopping through the window<br></strong>Anybody in league play had to know how to do this. Unfortunately for me, I sucked at it.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7354" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_nukedefuse.jpg?resize=640%2C480&#038;ssl=1" alt=""></td><td class="has-text-align-left" data-align="left"><strong>Defusing the bomb through the floor on de_nuke<br></strong>Classic Pubmasters game play. It works.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7336" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_flashed.jpg?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_flashed.jpg?w=1024&amp;ssl=1 1024w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_flashed.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_flashed.jpg?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Flashbangs<br></strong>I team flashed for fun. Or other times, I’d be blind as a bat and get gang knifed.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="479" class="wp-image-7335" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_shields.jpg?resize=640%2C479&#038;ssl=1" alt=""></td><td class="has-text-align-left" data-align="left"><strong>Riot shields<br></strong>Use them when you can’t win. A nice and annoying weapon. There was once a bug on amx mod where if you were carrying a gun, you could spawn a riot shield for that player and the player would be able to use a gun and a riot shield at the same time. Very OP.</td></tr><tr><td class="has-text-align-center" data-align="center"><img data-recalc-dims="1" loading="lazy" decoding="async" width="640" height="480" class="wp-image-7355" style="width: 640px;" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_spamspots.png?resize=640%2C480&#038;ssl=1" alt="" srcset="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_spamspots.png?w=800&amp;ssl=1 800w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_spamspots.png?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2012/04/cs16_spamspots.png?resize=508%2C381&amp;ssl=1 508w" sizes="auto, (max-width: 640px) 100vw, 640px" /></td><td class="has-text-align-left" data-align="left"><strong>Spam spots<br></strong>I had those memorized at one point.</td></tr><tr><td class="has-text-align-center" data-align="center"></td><td class="has-text-align-left" data-align="left"></td></tr></tbody></table></figure>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2012/04/26/counter-strike-nostalgia/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1701</post-id>	</item>
		<item>
		<title>The Current State of Counter-Strike 1.6</title>
		<link>https://blog.henrypoon.com/blog/2011/11/13/the-current-state-of-counter-strike-1-6/</link>
					<comments>https://blog.henrypoon.com/blog/2011/11/13/the-current-state-of-counter-strike-1-6/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 13 Nov 2011 09:21:33 +0000</pubDate>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[Battlefield]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[Club Penguin]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Complexity Gaming]]></category>
		<category><![CDATA[Const]]></category>
		<category><![CDATA[Counter-Strike]]></category>
		<category><![CDATA[Countries]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Day of Defeat]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Esports]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Human]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lag]]></category>
		<category><![CDATA[Linux games]]></category>
		<category><![CDATA[Lost]]></category>
		<category><![CDATA[Mass]]></category>
		<category><![CDATA[Microsoft games]]></category>
		<category><![CDATA[Multiplayer online games]]></category>
		<category><![CDATA[Multiplayer video games]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Over]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[SK Gaming]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[Team Fortress Classic]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Unreal]]></category>
		<category><![CDATA[Unreal Tournament 2003]]></category>
		<category><![CDATA[Video gaming]]></category>
		<category><![CDATA[Windows games]]></category>
		<category><![CDATA[World Opponent Network]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/the-current-state-of-counter-strike-1-6</guid>

					<description><![CDATA[At one point, Counter-Strike 1.6 was the most popular game on the Internet.  Released in 1999, it was one of the most popular games of its day, surpassing even the Battlefield series, Unreal Tournament 2003 and Quake 3.  It was the most popular Half-Life mod.  As game developers released the next generation of games, Counter-Strike [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">At one point, Counter-Strike 1.6 was the most popular game on the Internet.  Released in 1999, it was one of the most popular games of its day, surpassing even the <a href="http://en.wikipedia.org/wiki/Battlefield_%28series%29" target="_blank" rel="noreferrer noopener">Battlefield series</a>, Unreal Tournament 2003 and Quake 3.  It was the most popular Half-Life mod.  As game developers released the next generation of games, Counter-Strike began to lose popularity despite the massive gaming culture surrounding it.  The game had less and less casual players and more and more league players (CAL, CPL, CEVO, CEGL, WCG, OGL, etc.).  In 2004, Valve released Counter-Strike: Source, which introduced more casual players to the game, while the seasoned veterans still stayed with Counter-Strike 1.6 and they saw it as the better game.  Over time, new players of Counter-Strike: Source improved their game, while some CS1.6 veterans migrated over.  Many stopped playing simply due to the fact that they played this game for a long time and just lost interest.  A lot of professional teams such as Team3D, compLexity, SK Gaming, and others migrated over to source.  As more and more teams migrated over, the popularity of CS1.6 waned.  Do people still play Counter-Strike 1.6?</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/de_dust20014.jpg?ssl=1" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/de_dust20014_thumb.jpg?w=1280&#038;ssl=1" alt="de_dust20014" title="de_dust20014"/></a></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter"><a href="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/de_dust20018.jpg?ssl=1" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/de_dust20018_thumb.jpg?w=1280&#038;ssl=1" alt="de_dust20018" title="de_dust20018"/></a></figure>
</div>


<p class="has-text-align-center wp-block-paragraph"> I felt a little bit of nostalgia toward the game, so I opened it up to play a little bit.  I played this game for about 8 years on and off (2001 to 2008 inclusive) and participated in a couple leagues such as CAL, CEVO, and CEGL. The last time I played, the community was still pretty strong – I could find a game pretty quickly and play.  Not anymore.</p>



<p class="wp-block-paragraph">Public servers are almost extinct.&nbsp; Most public servers that remain are Romanian.&nbsp; Not that there is anything wrong with that, but there is no point in joining any of these games.&nbsp; They are filled with bots.&nbsp; I looked at the detailed game information and it shows 19 players that all “magically” joined the server at the same time and have been playing for some ridiculous amount of time.&nbsp; Playing 306 hours of Counter-Strike and earning a score of 10000+ is not possible for a human.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/csservers1.png?ssl=1" target="_blank" rel="noreferrer noopener"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/blog.henrypoon.com/wp-content/uploads/2011/11/csservers_thumb1.png?w=1280&#038;ssl=1" alt="CSServers" title="CSServers"/></a></figure>
</div>


<p class="wp-block-paragraph">Out of curiosity, I joined one of these Romanian servers.&nbsp; It turns out that these servers just redirect me to an actual server where people play.&nbsp; The downside is that these servers are actually in Romania, which means I that pinged &gt; 200 to the server.&nbsp; A minute later I am kicked for going over their ping limit.&nbsp; I still can’t play.&nbsp; At least there still is a community for CS1.6.</p>



<p class="wp-block-paragraph">Playing pubs seemed out of the option.&nbsp; The next thing I looked at were pugs.&nbsp; I looked at #findscrim and #findringer.&nbsp; I remember people posting in these channels constantly to organize matches.&nbsp; Not anymore.&nbsp; The frequency of posts has definitely decreased dramatically.&nbsp; It was hard enough for me to find a match on the west coast.&nbsp; People living on the east coast and west coast both post in these channels and of course there would be more east coast games happening simply because more people lived there.&nbsp; Now, with less people playing, it is even harder to find a match on the west coast.</p>



<p class="wp-block-paragraph">Of course, it is normal for a game to reach a peak in popularity and then lose it over time, but I expected Counter-Strike to have a strong player base.&nbsp; In comparison to other games similarly old, such as Day of Defeat (released in 2000) and Team Fortress Classic (released in 1999), they seemed to suffer a similar fate.&nbsp; These games have been reduced to just servers that redirect people to different countries.&nbsp; Why run these servers at all if people will lag on them anyway?&nbsp; If a game is unpopular anymore, it would just have no servers at all.&nbsp; Despite all of that, Counter-Strike was one of the most popular games ever made and it definitely left a mark for many gamers of this generation.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/11/13/the-current-state-of-counter-strike-1-6/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1259</post-id>	</item>
	</channel>
</rss>
