<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>GamerzPlanet - For All Your Online Gaming Needs!! - C/C++/C#</title>
		<link>http://www.gamerzplanet.net/forums/</link>
		<description>All C/C++/C# Discussion.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 08:04:20 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.gamerzplanet.net/forums/gamerzplanet/misc/rss.jpg</url>
			<title>GamerzPlanet - For All Your Online Gaming Needs!! - C/C++/C#</title>
			<link>http://www.gamerzplanet.net/forums/</link>
		</image>
		<item>
			<title>Question HELP Me Plz</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/386048-help-me-plz-new-post.html</link>
			<pubDate>Wed, 18 Nov 2009 22:37:45 GMT</pubDate>
			<description>Please 
ok can any one give me the code to this im making a program and it needs this and im stuck please give code asap  
application that will...</description>
			<content:encoded><![CDATA[<div>Please<br />
ok can any one give me the code to this im making a program and it needs this and im stuck please give code asap <br />
application that will convert any text I throw at it in to hex <br />
Thank You</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>ImMoRtAl-</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/386048-help-me-plz.html</guid>
		</item>
		<item>
			<title>Question C++ returning a specific number</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/385220-c-returning-a-specific-number-new-post.html</link>
			<pubDate>Mon, 16 Nov 2009 20:50:01 GMT</pubDate>
			<description><![CDATA[Hey. I'm trying to make a function return a value that exists in a text file 
like 
i need to make the return value the number in the text file...]]></description>
			<content:encoded><![CDATA[<div>Hey. I'm trying to make a function return a value that exists in a text file<br />
like<br />
i need to make the return value the number in the text file<br />
return &lt;&lt;number in a specific text file&gt;&gt;<br />
if the number in the text file is 41,<br />
the return value is 41.<br />
if the number in the text file is 42,<br />
the return value is 42.<br />
etc etc.<br />
I always find the return value as HUGE numbers like 3289719 instead of 41.</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>yoni4oren</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/385220-c-returning-a-specific-number.html</guid>
		</item>
		<item>
			<title>Question Attaching processes</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/384823-attaching-processes-new-post.html</link>
			<pubDate>Sun, 15 Nov 2009 20:46:10 GMT</pubDate>
			<description>I was wondering if anyone can link me to where I can find information about process attaching in c. (Everything I see on google is about debuggers)</description>
			<content:encoded><![CDATA[<div>I was wondering if anyone can link me to where I can find information about process attaching in c. (Everything I see on google is about debuggers)</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>bladesofwind</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/384823-attaching-processes.html</guid>
		</item>
		<item>
			<title>d3d world to screen coordinates</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/383047-d3d-world-to-screen-coordinates-new-post.html</link>
			<pubDate>Wed, 11 Nov 2009 17:54:38 GMT</pubDate>
			<description>I try to log the 2d screen coordinates of a texture in game. 
but the logged result is not right: I get the x y coordinates but they are something...</description>
			<content:encoded><![CDATA[<div>I try to log the 2d screen coordinates of a texture in game.<br />
but the logged result is not right: I get the x y coordinates but they are something else.<br />
<br />
The logged result look like this:<br />
Logged Vector 2d: 391.210602 -1018.994507<br />
<br />
If the texture is facing to one direction, and my camera (view in game) is facing to that one direction (same direction).<br />
X = 0<br />
<br />
Anyone know why I'm getting this?<br />
<br />
This is the codes I used:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">D3DXVECTOR3 vector_2d, vector_3d;<br />
D3DXMATRIX view_matrix, proj_matrix, world_matrix;<br />
D3DVIEWPORT8 d3dvp;<br />
&nbsp;<br />
m_pD3Ddev-&gt;GetTransform( D3DTS_VIEW, &amp;view_matrix );<br />
m_pD3Ddev-&gt;GetTransform( D3DTS_PROJECTION, &amp;proj_matrix );<br />
m_pD3Ddev-&gt;GetTransform( D3DTS_WORLD, &amp;world_matrix );<br />
m_pD3Ddev-&gt;GetViewport( &amp;d3dvp );<br />
D3DXVec3Project( &amp;vector_2d, &amp;vector_3d, &amp;d3dvp, &amp;proj_matrix, &amp;view_matrix, &amp;world_matrix );<br />
D3DXVec3Unproject( &amp;vector_3d, &amp;vector_2d, &amp;d3dvp, &amp;proj_matrix, &amp;view_matrix, &amp;world_matrix );<br />
<br />
//addlog(&quot;Logged Vector 2d: %f %f\n&quot;,vector_2d.x, vector_2d.y);</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>cheapez</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/383047-d3d-world-to-screen-coordinates.html</guid>
		</item>
		<item>
			<title>Release visual c++ 6.0 download</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/382186-visual-c-6-0-download-new-post.html</link>
			<pubDate>Mon, 09 Nov 2009 16:43:03 GMT</pubDate>
			<description>removed.............</description>
			<content:encoded><![CDATA[<div>removed.............</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>Slim Shady</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/382186-visual-c-6-0-download.html</guid>
		</item>
		<item>
			<title>fake emails</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/381465-fake-emails-new-post.html</link>
			<pubDate>Sun, 08 Nov 2009 03:51:47 GMT</pubDate>
			<description>I am not sure how the code in generated for this in C++ but I know it is a few lines of code. 
  
  
I know how to do it in php since the format is...</description>
			<content:encoded><![CDATA[<div>I am not sure how the code in generated for this in C++ but I know it is a few lines of code.<br />
 <br />
 <br />
I know how to do it in php since the format is pretty much general. I am wondering about C++ now.<br />
 <br />
 <br />
 <br />
what I am trying to do is set up an email system totally generated in C++ but in order for that to work I need to know the send email code which should be like 3 lines or so. WOuld anyone mine helping me in that, I can do the rest of the program my self.</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>neilc</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/381465-fake-emails.html</guid>
		</item>
		<item>
			<title>Make a Warrock Menu??</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/380294-make-a-warrock-menu-new-post.html</link>
			<pubDate>Sat, 31 Oct 2009 10:53:09 GMT</pubDate>
			<description>Hello! i Just wanna learn how to make a Warrock MENU hack. Or just the menu. Cam some one pliz help me with that? i have injector and dll, but i open...</description>
			<content:encoded><![CDATA[<div>Hello! i Just wanna learn how to make a Warrock MENU hack. Or just the menu. Cam some one pliz help me with that? i have injector and dll, but i open it, and i wanna have the menu there, so if some1 would help it would be nice.<br />
<br />
 - Mizzer3:biggrin:</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>mizzer2</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/380294-make-a-warrock-menu.html</guid>
		</item>
		<item>
			<title>keystrokes in active window</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/380001-keystrokes-in-active-window-new-post.html</link>
			<pubDate>Fri, 30 Oct 2009 19:00:53 GMT</pubDate>
			<description><![CDATA[hi 
does someone has a programm which just presses a button like "1" or "TAB" in the active window and then stops?]]></description>
			<content:encoded><![CDATA[<div>hi<br />
does someone has a programm which just presses a button like &quot;1&quot; or &quot;TAB&quot; in the active window and then stops?</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>mnmltechno</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/380001-keystrokes-in-active-window.html</guid>
		</item>
		<item>
			<title>Request C++, Fantasy Tennis fishing bot</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/379669-c-fantasy-tennis-fishing-bot-new-post.html</link>
			<pubDate>Thu, 29 Oct 2009 19:22:40 GMT</pubDate>
			<description><![CDATA[Hi guys I have a smart question =) 
 
I just want to create a fishing bot for Fantasy Tennis with C++ but I'm a completely noob in C++ :D 
So I'm...]]></description>
			<content:encoded><![CDATA[<div>Hi guys I have a smart question =)<br />
<br />
I just want to create a fishing bot for Fantasy Tennis with C++ but I'm a completely noob in C++ :D<br />
So I'm asking if you could help me :D<br />
<br />
Here we go:<br />
<br />
This is the first part.<br />
Here we have to push the <b>D</b> button to start fishing <br />
<br />
<a href="http://www.gamerzplanet.net/forums/redirector.php?url=http%3A%2F%2Fimg42.imageshack.us%2Fimg42%2F9329%2Fohned.jpg" target="_blank" rel="nofollow">http://img42.imageshack.us/img42/9329/ohned.jpg</a><br />
<br />
Then after we pushed the button <b>D</b> we have to wait 10-15 seconds for a fish.<br />
<br />
If we have one, there appears a bar and it doesnt matter when we push the <b>D</b> button again<br />
<br />
<a href="http://www.gamerzplanet.net/forums/redirector.php?url=http%3A%2F%2Fimg42.imageshack.us%2Fimg42%2F9559%2Fmit1mad.jpg" target="_blank" rel="nofollow">http://img42.imageshack.us/img42/9559/mit1mad.jpg</a><br />
<br />
When we pushed D there appears quickly an another bar  <br />
<br />
<a href="http://www.gamerzplanet.net/forums/redirector.php?url=http%3A%2F%2Fimg42.imageshack.us%2Fimg42%2F4275%2F2mald.jpg" target="_blank" rel="nofollow">http://img42.imageshack.us/img42/4275/2mald.jpg</a><br />
<br />
and we have to push the <b>D</b> button when the colored bar touch on the white area.<br />
<br />
We have 2 random options and we cant choose one, how I said its random :D<br />
<br />
Option 1: After pushing D last time we are getting gold<br />
or<br />
Option 2: After pushing D last time we see the last bar 2 times more and getting a fish :D<br />
<br />
<br />
so my question is how can i create a bot wich pushes the <b>D</b> button for me in the right time :D<br />
<br />
is it possible to control and create it with the position of pixels? <br />
<br />
Sorry for my freaky english T_T</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>playsnoops</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/379669-c-fantasy-tennis-fishing-bot.html</guid>
		</item>
		<item>
			<title>Request Looking for coders! Paying!</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/378654-looking-for-coders-paying-new-post.html</link>
			<pubDate>Tue, 27 Oct 2009 12:35:15 GMT</pubDate>
			<description>Okay, I need 2 c++ coders who can code any of the following games and is able to bypass the games for hacks: 
 
Crossfire 
AVA 
Soldier front 
Combat...</description>
			<content:encoded><![CDATA[<div>Okay, I need 2 c++ coders who can code any of the following games and is able to bypass the games for hacks:<br />
<br />
Crossfire<br />
AVA<br />
Soldier front<br />
Combat Arms<br />
CS:S<br />
Operation 7<br />
Sudden Attack<br />
<br />
OR ANY GAME!<br />
<br />
I will be paying this person 75% of the money we make from their sold hacks..<br />
<br />
Thank you very much!<br />
<br />
apearljam</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>apearljam</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/378654-looking-for-coders-paying.html</guid>
		</item>
		<item>
			<title>hi, is there anyone who can help me?</title>
			<link>http://www.gamerzplanet.net/forums/c-c-c/376680-hi-is-there-anyone-who-can-help-me-new-post.html</link>
			<pubDate>Thu, 22 Oct 2009 14:09:24 GMT</pubDate>
			<description><![CDATA[i nid any example problem in turbo c++, including the "class".. could anyone give me an exmaple?]]></description>
			<content:encoded><![CDATA[<div>i nid any example problem in turbo c++, including the &quot;class&quot;.. could anyone give me an exmaple?</div>

]]></content:encoded>
			<category domain="http://www.gamerzplanet.net/forums/c-c-c/">C/C++/C#</category>
			<dc:creator>khianorkevin</dc:creator>
			<guid isPermaLink="true">http://www.gamerzplanet.net/forums/c-c-c/376680-hi-is-there-anyone-who-can-help-me.html</guid>
		</item>
	</channel>
</rss>
