<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>VC:MP Developers&#039; Blog</title>
	<atom:link href="http://vcmpdev.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vcmpdev.wordpress.com</link>
	<description>Alive and kicking!</description>
	<lastBuildDate>Sun, 19 Feb 2012 21:52:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vcmpdev.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>VC:MP Developers&#039; Blog</title>
		<link>http://vcmpdev.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vcmpdev.wordpress.com/osd.xml" title="VC:MP Developers&#039; Blog" />
	<atom:link rel='hub' href='http://vcmpdev.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Changing vehicle handling</title>
		<link>http://vcmpdev.wordpress.com/2012/02/18/changing-vehicle-handling/</link>
		<comments>http://vcmpdev.wordpress.com/2012/02/18/changing-vehicle-handling/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 20:04:49 +0000</pubDate>
		<dc:creator>maxorator</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=43</guid>
		<description><![CDATA[Several functions for changing vehicle handling data have been added for plugins and scripts to use. Handling can be set separately for a model index and a specific vehicle. Handling is managed as a set of rules, each of which replace the default value of some handling parameter for some model index or a specific [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=43&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Several functions for changing vehicle handling data have been added for plugins and scripts to use. Handling can be set separately for a model index and a specific vehicle. Handling is managed as a set of rules, each of which replace the default value of some handling parameter for some model index or a specific vehicle. If both apply for some vehicle, then the rules for that specific vehicle are used. Superior grip, flying and driving on water can also be set with these functions. Next comes the list of functions. I will shortly explain what each of these functions does.</p>
<pre>int ResetAllVehicleHandlings(void);
unsigned int ExistsHandlingRule(int nModelIndex, int nRuleIndex);
int SetHandlingRule(int nModelIndex, int nRuleIndex, double fValue);
double GetHandlingRule(int nModelIndex, int nRuleIndex);
int ResetHandlingRule(int nModelIndex, int nRuleIndex);
int ResetHandling(int nModelIndex);
unsigned int ExistsInstHandlingRule(int nVehicleId, int nRuleIndex);
int SetInstHandlingRule(int nVehicleId, int nRuleIndex, double fValue);
double GetInstHandlingRule(int nVehicleId, int nRuleIndex);
int ResetInstHandlingRule(int nVehicleId, int nRuleIndex);
int ResetInstHandling(int nVehicleId);</pre>
<p><b>ResetAllVehicleHandlings</b> resets all handling rules in the server. <b>ResetHandling</b> resets all handling rules that were set for a model index using SetHandlingRule. <b>ResetInstHandling</b> resets the rules that had been set for a vehicle using SetInstHandlingRule. <b>ResetHandlingRule</b> and <b>ResetInstHandlingRule</b> can be used to reset specific handling settings for a specific model index or vehicle.</p>
<p><b>ExistsHandlingRule</b> will tell you if a specific handling setting has changed for this model using SetHandlingRule. <b>ExistsInstHandlingRule</b> does the same for specific vehicle instances.</p>
<p><b>GetHandlingRule</b> will return the value that was set using SetHandlingRule or if hadn&#8217;t been changed, the default value for that model index. <b>GetInstHandlingRule</b> returns the value that was set for that specific vehicle or otherwise it simply calls GetHandlingRule internally. These functions always return the value that is currently effective for that model or vehicle index.</p>
<p><b>SetHandlingRule</b> and <b>SetInstHandlingRule</b> are the functions that are used to actually apply new handling settings to vehicles. Note that only changed values are sent to clients, therefore it is best to keep changes as low as possible if you want to minimize bandwidth usage. Whenever you want to set a value to its original value, use the Reset* functions instead of using Set* functions with default value, since then those changes are basically deleted, causing the bandwidth usage to decrease.</p>
<p>These are the rule indices that can be used with those functions:</p>
<pre>
 1 Mass
 2 DimensionsX
 3 DimensionsY
 4 DimensionsZ
 5 CentreOfMassX
 6 CentreOfMassY
 7 CentreOfMassZ
 8 PercentSubmerged
 9 TractionMultiplier
10 TractionLoss
11 TractionBias
12 NumberOfGears
13 MaxSpeed
14 Acceleration
15 DriveType
16 EngineType
17 BrakeDeceleration
18 BrakeBias
19 SteeringLock
20 SuspensionForceLevel
21 SuspensionDampening
22 SeatOffset
23 DamageMultiplier
24 SuspensionUpperLimit
25 SuspensionLowerLimit
26 SuspensionBias
27 SuspensionAntiDive
28 Flags
29 LightsFront
30 LightsRear
31 SuperiorGrip
32 FlyingMode
33 DriveOnWater</pre>
<p>Flying/boat/bike specific handling rules cannot be changed yet, but will likely be implemented as well.</p>
<p>&#8211;maxorator</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=43&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/02/18/changing-vehicle-handling/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/400428ff8096ef05879bf3b15f4b0bdc?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">maxorator</media:title>
		</media:content>
	</item>
		<item>
		<title>List of functions, callbacks released</title>
		<link>http://vcmpdev.wordpress.com/2012/02/14/list-of-functions-callbacks-released/</link>
		<comments>http://vcmpdev.wordpress.com/2012/02/14/list-of-functions-callbacks-released/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 17:28:34 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=39</guid>
		<description><![CDATA[You can see the list of functions and callbacks implemented so far can be found here: http://forum.vicecitymultiplayer.com/index.php?topic=4637.0<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=39&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can see the list of functions and callbacks implemented so far can be found here:</p>
<p><a href="http://forum.vicecitymultiplayer.com/index.php?topic=4637.0" target="_blank">http://forum.vicecitymultiplayer.com/index.php?topic=4637.0</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=39&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/02/14/list-of-functions-callbacks-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Small update regarding explosives</title>
		<link>http://vcmpdev.wordpress.com/2012/02/12/small-update-regarding-explosives/</link>
		<comments>http://vcmpdev.wordpress.com/2012/02/12/small-update-regarding-explosives/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 22:35:23 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=36</guid>
		<description><![CDATA[&#60;Stormeus&#62; So are remote detonation grenades going to be synced in 0.4? &#60;maxorator&#62; yes That is all. -stormeus<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=36&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>&lt;Stormeus&gt;  So are remote detonation grenades going to be synced in 0.4?
&lt;maxorator&gt; yes</pre>
<p>That is all.</p>
<p>-stormeus</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=36&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/02/12/small-update-regarding-explosives/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Typing Detection</title>
		<link>http://vcmpdev.wordpress.com/2012/02/04/typing-detection/</link>
		<comments>http://vcmpdev.wordpress.com/2012/02/04/typing-detection/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 16:51:08 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=30</guid>
		<description><![CDATA[&#8211;Stormeus<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=30&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://vcmpdev.wordpress.com/2012/02/04/typing-detection/"><img src="http://img.youtube.com/vi/QEwkaxe7Zi4/2.jpg" alt="" /></a></span>
<p>&#8211;Stormeus</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=30&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/02/04/typing-detection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>World Sanity</title>
		<link>http://vcmpdev.wordpress.com/2012/01/28/world-sanity/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/28/world-sanity/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 17:04:15 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=28</guid>
		<description><![CDATA[VC:MP has new and improved features to try to prevent the unexplainable from happening. Firstly, world boundaries have been improved. Instead of the usual annoying jumping when you try to run through them which could send you head-first into a river, it&#8217;s simply a solid, invisible wall. If for some reason you do get through, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=28&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>VC:MP has new and improved features to try to prevent the unexplainable from happening. Firstly, world boundaries have been improved. Instead of the usual annoying jumping when you try to run through them which could send you head-first into a river, it&#8217;s simply a solid, invisible wall. If for some reason you do get through, you&#8217;ll get the usual infinite jumping.</p>
<p>Not only that, but the world boundaries can deflect weapons in ways never seen before. You&#8217;ll just have to see the video to understand what I&#8217;m talking about.</p>
<span style="text-align:center; display: block;"><a href="http://vcmpdev.wordpress.com/2012/01/28/world-sanity/"><img src="http://img.youtube.com/vi/r-pqEifT3oE/2.jpg" alt="" /></a></span>
<p>Secondly, VC:MP can prevent wallglitching now! Trying to shoot through a wall is no longer possible. You will see the animation, but no actual shots are fired. Simple.</p>
<span style="text-align:center; display: block;"><a href="http://vcmpdev.wordpress.com/2012/01/28/world-sanity/"><img src="http://img.youtube.com/vi/U1x1IZHO7hU/2.jpg" alt="" /></a></span>
<p>-Stormeus</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=28&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/28/world-sanity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Some New Videos</title>
		<link>http://vcmpdev.wordpress.com/2012/01/22/some-new-videos/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/22/some-new-videos/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 17:16:47 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=24</guid>
		<description><![CDATA[Here are a couple of new videos showing off 0.4&#8242;s new features. Synced, Unoccupied Vehicles &#160; Cinematic Explosions<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=24&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are a couple of new videos showing off 0.4&#8242;s new features.</p>
<p><strong>Synced, Unoccupied Vehicles</strong></p>
<span style="text-align:center; display: block;"><a href="http://vcmpdev.wordpress.com/2012/01/22/some-new-videos/"><img src="http://img.youtube.com/vi/Pmn9jfL-tDc/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<p><strong>Cinematic Explosions</strong></p>
<span style="text-align:center; display: block;"><a href="http://vcmpdev.wordpress.com/2012/01/22/some-new-videos/"><img src="http://img.youtube.com/vi/Ige5NrZ1jsY/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=24&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/22/some-new-videos/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Hackers beware!</title>
		<link>http://vcmpdev.wordpress.com/2012/01/09/hackers-beware/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/09/hackers-beware/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 00:43:34 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=22</guid>
		<description><![CDATA[This is built right into the server.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=22&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is built right into the server.</p>
<p><img class="alignnone" src="http://i.imgur.com/QEqCA.png" alt="" width="400" height="34" /></p>
<p><img class="alignnone" src="http://i.imgur.com/LU4Sp.png" alt="" width="394" height="100" /></p>
<p><img class="alignnone" src="http://i.imgur.com/vy3Gz.png" alt="" width="286" height="28" /></p>
<p><img class="alignnone" src="http://i.imgur.com/iNxF5.png" alt="" width="290" height="70" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=22&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/09/hackers-beware/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/QEqCA.png" medium="image" />

		<media:content url="http://i.imgur.com/LU4Sp.png" medium="image" />

		<media:content url="http://i.imgur.com/vy3Gz.png" medium="image" />

		<media:content url="http://i.imgur.com/iNxF5.png" medium="image" />
	</item>
		<item>
		<title>Virtual Worlds and New Command</title>
		<link>http://vcmpdev.wordpress.com/2012/01/06/virtual-worlds-and-new-command/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/06/virtual-worlds-and-new-command/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 15:44:52 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=20</guid>
		<description><![CDATA[A hint on virtual worlds: There are over two billion virtual worlds. If you&#8217;re in a different virtual world than someone else, they can&#8217;t see you, and you can&#8217;t see them. World 1 is the default. World 0 is a global world; objects and vehicles in there can be seen by anyone. In other news, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=20&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A hint on virtual worlds:</p>
<p>There are over two billion virtual worlds. If you&#8217;re in a different virtual world than someone else, they can&#8217;t see you, and you can&#8217;t see them. World 1 is the default. World 0 is a global world; objects and vehicles in there can be seen by anyone.</p>
<p>In other news, /reconnect has been added as a client command (no more /q and re-opening).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=20&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/06/virtual-worlds-and-new-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Current Technical Limits</title>
		<link>http://vcmpdev.wordpress.com/2012/01/06/current-technical-limits/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/06/current-technical-limits/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 06:27:14 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=18</guid>
		<description><![CDATA[Message Length 500 characters Virtual Worlds 2,147,483,647 Players Theoretically: 253 Capped at 100 Vehicles 500 Objects 3,000 (can be optimized further with third-party streamer plugin) Pickups 2,000<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=18&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Message Length</strong><br />
500 characters</p>
<p><strong>Virtual Worlds</strong><br />
2,147,483,647</p>
<p><strong>Players</strong><br />
Theoretically: 253<br />
Capped at 100</p>
<p><strong>Vehicles</strong><br />
500</p>
<p><strong>Objects</strong><br />
3,000 <em>(can be optimized further with third-party streamer plugin)</em></p>
<p><strong>Pickups</strong><br />
2,000</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=18&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/06/current-technical-limits/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>
	</item>
		<item>
		<title>Well, here we go</title>
		<link>http://vcmpdev.wordpress.com/2012/01/04/well-here-we-go/</link>
		<comments>http://vcmpdev.wordpress.com/2012/01/04/well-here-we-go/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 06:41:47 +0000</pubDate>
		<dc:creator>Stormeus</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://vcmpdev.wordpress.com/?p=14</guid>
		<description><![CDATA[Since everyone is so excited for 0.4 but thinks the devs/beta testers are all dead, I&#8217;m going to use this as a blog-ish area to explain how things are going and show some features off. First of all, the reason why the last pics and developments posted about 0.4 were in March or April was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=14&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since everyone is so excited for 0.4 but thinks the devs/beta testers are all dead, I&#8217;m going to use this as a blog-ish area to explain how things are going and show some features off.</p>
<p>First of all, the reason why the last pics and developments posted about 0.4 were in March or April was because maxorator had started rewriting all of VC:MP from scratch at that point. The reason for this was that the code base was getting &#8220;messed up&#8221; and made it hard to add more complex features. The rewrite, as you can tell, took several months, and has only recently gotten to the point of compiling and running.</p>
<p>Secondly, while there&#8217;s been some huge progress made in 0.4 as a result, I, personally, can&#8217;t recommend that anyone starts scrapping their servers in the hopes that 0.4 is going to be here in a couple of weeks or a month. It might take longer than that, it might not. Besides, there are plans to write Pawn and Squirrel modules that are compatible with R2 scripts.</p>
<p>Lastly, maxorator is going back to university today (time of this post) since he has exams on, if I recall correctly, the 6th. Development might slow down, and since he won&#8217;t be able to update his server with my updated gamemodes, you might see less coming from other beta testers. Chances are, I&#8217;ll release the gamemode to the other beta testers when it&#8217;s finished.</p>
<p>To wrap this up, I&#8217;ll leave the same couple of pictures I&#8217;d left on the VC:MP forum, though there&#8217;s more to come. The reason I&#8217;m the only one in them is because I was testing on my home server. The beta testers are still alive on max&#8217;s server.</p>
<div class="wp-caption aligncenter" style="width: 563px"><img class="   " title="VC:MP 0.4" src="http://i.imgur.com/cW4Zr.jpg" alt="" width="553" height="311" /><p class="wp-caption-text">Look at how sexy our chatbox is</p></div>
<div class="wp-caption aligncenter" style="width: 563px"><img class="   " title="VC:MP 0.4" src="http://i.imgur.com/dFdIC.jpg" alt="" width="553" height="311" /><p class="wp-caption-text">Object testing (it&#039;s a crane base)</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vcmpdev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vcmpdev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vcmpdev.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vcmpdev.wordpress.com&amp;blog=31245934&amp;post=14&amp;subd=vcmpdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vcmpdev.wordpress.com/2012/01/04/well-here-we-go/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15349812a83bef314957bcabd3ff486e?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">stormeus</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/cW4Zr.jpg" medium="image">
			<media:title type="html">VC:MP 0.4</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/dFdIC.jpg" medium="image">
			<media:title type="html">VC:MP 0.4</media:title>
		</media:content>
	</item>
	</channel>
</rss>
