<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://robowiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Giants27</id>
	<title>Robowiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://robowiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Giants27"/>
	<link rel="alternate" type="text/html" href="http://robowiki.net/wiki/Special:Contributions/Giants27"/>
	<updated>2026-04-27T09:22:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16381</id>
		<title>Talk:Robocode/My First Robot</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16381"/>
		<updated>2010-05-25T22:17:58Z</updated>

		<summary type="html">&lt;p&gt;Giants27: /* Compiling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HELP! ==&lt;br /&gt;
&lt;br /&gt;
I am an experienced 13 year old Java programmer, and I decided to try this, (it looks VERY cool) but when I try to compile the simple default program it gives many errors.  I figured out pretty quickly; it can't find the robocode package.  I need to like set the classpath, but I can't directly do this.  &amp;gt;=(  Robocode SHOULD do this on its own...&lt;br /&gt;
&lt;br /&gt;
:Ok, I figured it out on my own... It's different on a mac. [[User:Awesomeness|Awesomeness]] 01:01, 13 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Robocode can't simply do everything for you, becasuse it is a Java setting issue, if you are using Eclipse you can set it trough the Build Path Settings, on the Libraries tab, select Add External Jars, search for your Robocode instalation directory (default in Windows is C:\robocode) under that directory there should be a libs directory, there are four jars, you might not need all of them, but I recommend you add all of them for now.&lt;br /&gt;
&lt;br /&gt;
If you are compiling from the console you should do something like&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\cachecleaner.jar;C:\robocode\libs\codesize.jar;C:\robocode\libs\robocode.jar;C:\robocode\libs\roborumble.jar ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set the classpath, but I really recommend using an advanced IDE like Eclipse (or whatever you prefer, ie. NetBeans). Hope it helps, and welcome to Robocode. --[[User:Zyx|zyx]] 08:55, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Actually Zyx, you don't need the cachecleaner, codesize or roborumble jars ofr compiling bots. --[[User:Rednaxela|Rednaxela]] 12:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe this is easier?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\*; ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
it load every library in &amp;lt;code&amp;gt;/libs&amp;lt;/code&amp;gt; automatically. (ripped from Robocode 1.7 startup files) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 13:14, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yes [[User:Rednaxela|Rednaxela]], you are right that for compilation there is no point to include any jar that is not robocode.jar. I didn't know that the * wildcard worked but is good to know [[User:Nat|Nat]]. But all my disinformation comes from Eclipse, I added the 4 jars there and he knows what to use :-). --[[User:Zyx|zyx]] 19:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't think the * will work for .jar files. It works for .class files only. Well, that was my experience several years ago, when I last used Windows. --[[User:Skilgannon|Skilgannon]] 19:49, 11 March 2009 (UTC)&lt;br /&gt;
* I had to test it, it works as [[User:Nat|Nat]] posted it, but if it is missing that ; after the * it tries to use the jar files as input files and of course fails. But bottom line is that it does work. --[[User:Zyx|zyx]] 00:29, 12 March 2009 (UTC)&lt;br /&gt;
* It should work because robocode 1.7 later than 1.7.0.1 use this method. I myself just add robocode.jar to eclipse :-) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 00:51, 12 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
I can create my robot without a problem but when I go to compile it, it doesn't do anything and won't let me save it. Thoughts? I can set up battles (can't save them either...) and don't have the javac file which I think may be what's causing this. If it is, where is a good place to download it? I'm using Windows XP and I don't know if it's a 32-bit or 64-bit.--[[User:Giants27|Giants27]] 21:52, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you want to get the JDK for Windows here: [http://java.sun.com/javase/6/webnotes/install/index.html#windows]. If you don't know, I'd go with 32-bit. I thought Robocode would setup the &amp;quot;jikes&amp;quot; compiler if you didn't have javac installed, but I'm not sure. Once you have the JDK installed, (I'd probably restart Robocode, then) go to Robot Editor, Compiler &amp;gt; Options &amp;gt; Reset Compiler and it should find javac. Btw, are you getting an error when you try to compile, or what happens? You might also find some good info at [[Robocode/System Requirements]] or in [[:Category:Tutorials]]. Good luck! --[[User:Voidious|Voidious]] 21:59, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
When I go to compile, nothing happens and it just sits on the robot editing screen. It did install &amp;quot;jikes&amp;quot; but for whatever reason it still does nothing when I go to compile. I'll go try to install that.--[[User:Giants27|Giants27]] 22:07, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I installed JDK from [http://java.sun.com/javase/downloads/widget/jdk6.jsp here] but, the robot editor still doesn't detect javac and I still can't save anything.--[[User:Giants27|Giants27]] 22:20, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
Not that this has any relevancy to the discussion but why don't we include Javac instead of Jikes with robocode. I believe javac is open-sourced here: [http://openjdk.java.net/groups/compiler/]. --[[User:Exauge|Exauge]]&lt;br /&gt;
&lt;br /&gt;
Anything?--[[User:Giants27|Giants27]] 22:17, 25 May 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Giants27</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16370</id>
		<title>Talk:Robocode/My First Robot</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16370"/>
		<updated>2010-05-24T22:20:04Z</updated>

		<summary type="html">&lt;p&gt;Giants27: /* Compiling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HELP! ==&lt;br /&gt;
&lt;br /&gt;
I am an experienced 13 year old Java programmer, and I decided to try this, (it looks VERY cool) but when I try to compile the simple default program it gives many errors.  I figured out pretty quickly; it can't find the robocode package.  I need to like set the classpath, but I can't directly do this.  &amp;gt;=(  Robocode SHOULD do this on its own...&lt;br /&gt;
&lt;br /&gt;
:Ok, I figured it out on my own... It's different on a mac. [[User:Awesomeness|Awesomeness]] 01:01, 13 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Robocode can't simply do everything for you, becasuse it is a Java setting issue, if you are using Eclipse you can set it trough the Build Path Settings, on the Libraries tab, select Add External Jars, search for your Robocode instalation directory (default in Windows is C:\robocode) under that directory there should be a libs directory, there are four jars, you might not need all of them, but I recommend you add all of them for now.&lt;br /&gt;
&lt;br /&gt;
If you are compiling from the console you should do something like&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\cachecleaner.jar;C:\robocode\libs\codesize.jar;C:\robocode\libs\robocode.jar;C:\robocode\libs\roborumble.jar ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set the classpath, but I really recommend using an advanced IDE like Eclipse (or whatever you prefer, ie. NetBeans). Hope it helps, and welcome to Robocode. --[[User:Zyx|zyx]] 08:55, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Actually Zyx, you don't need the cachecleaner, codesize or roborumble jars ofr compiling bots. --[[User:Rednaxela|Rednaxela]] 12:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe this is easier?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\*; ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
it load every library in &amp;lt;code&amp;gt;/libs&amp;lt;/code&amp;gt; automatically. (ripped from Robocode 1.7 startup files) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 13:14, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yes [[User:Rednaxela|Rednaxela]], you are right that for compilation there is no point to include any jar that is not robocode.jar. I didn't know that the * wildcard worked but is good to know [[User:Nat|Nat]]. But all my disinformation comes from Eclipse, I added the 4 jars there and he knows what to use :-). --[[User:Zyx|zyx]] 19:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't think the * will work for .jar files. It works for .class files only. Well, that was my experience several years ago, when I last used Windows. --[[User:Skilgannon|Skilgannon]] 19:49, 11 March 2009 (UTC)&lt;br /&gt;
* I had to test it, it works as [[User:Nat|Nat]] posted it, but if it is missing that ; after the * it tries to use the jar files as input files and of course fails. But bottom line is that it does work. --[[User:Zyx|zyx]] 00:29, 12 March 2009 (UTC)&lt;br /&gt;
* It should work because robocode 1.7 later than 1.7.0.1 use this method. I myself just add robocode.jar to eclipse :-) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 00:51, 12 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
I can create my robot without a problem but when I go to compile it, it doesn't do anything and won't let me save it. Thoughts? I can set up battles (can't save them either...) and don't have the javac file which I think may be what's causing this. If it is, where is a good place to download it? I'm using Windows XP and I don't know if it's a 32-bit or 64-bit.--[[User:Giants27|Giants27]] 21:52, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you want to get the JDK for Windows here: [http://java.sun.com/javase/6/webnotes/install/index.html#windows]. If you don't know, I'd go with 32-bit. I thought Robocode would setup the &amp;quot;jikes&amp;quot; compiler if you didn't have javac installed, but I'm not sure. Once you have the JDK installed, (I'd probably restart Robocode, then) go to Robot Editor, Compiler &amp;gt; Options &amp;gt; Reset Compiler and it should find javac. Btw, are you getting an error when you try to compile, or what happens? You might also find some good info at [[Robocode/System Requirements]] or in [[:Category:Tutorials]]. Good luck! --[[User:Voidious|Voidious]] 21:59, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
When I go to compile, nothing happens and it just sits on the robot editing screen. It did install &amp;quot;jikes&amp;quot; but for whatever reason it still does nothing when I go to compile. I'll go try to install that.--[[User:Giants27|Giants27]] 22:07, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I installed JDK from [http://java.sun.com/javase/downloads/widget/jdk6.jsp here] but, the robot editor still doesn't detect javac and I still can't save anything.--[[User:Giants27|Giants27]] 22:20, 24 May 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Giants27</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16369</id>
		<title>Talk:Robocode/My First Robot</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16369"/>
		<updated>2010-05-24T22:07:02Z</updated>

		<summary type="html">&lt;p&gt;Giants27: /* Compiling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HELP! ==&lt;br /&gt;
&lt;br /&gt;
I am an experienced 13 year old Java programmer, and I decided to try this, (it looks VERY cool) but when I try to compile the simple default program it gives many errors.  I figured out pretty quickly; it can't find the robocode package.  I need to like set the classpath, but I can't directly do this.  &amp;gt;=(  Robocode SHOULD do this on its own...&lt;br /&gt;
&lt;br /&gt;
:Ok, I figured it out on my own... It's different on a mac. [[User:Awesomeness|Awesomeness]] 01:01, 13 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Robocode can't simply do everything for you, becasuse it is a Java setting issue, if you are using Eclipse you can set it trough the Build Path Settings, on the Libraries tab, select Add External Jars, search for your Robocode instalation directory (default in Windows is C:\robocode) under that directory there should be a libs directory, there are four jars, you might not need all of them, but I recommend you add all of them for now.&lt;br /&gt;
&lt;br /&gt;
If you are compiling from the console you should do something like&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\cachecleaner.jar;C:\robocode\libs\codesize.jar;C:\robocode\libs\robocode.jar;C:\robocode\libs\roborumble.jar ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set the classpath, but I really recommend using an advanced IDE like Eclipse (or whatever you prefer, ie. NetBeans). Hope it helps, and welcome to Robocode. --[[User:Zyx|zyx]] 08:55, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Actually Zyx, you don't need the cachecleaner, codesize or roborumble jars ofr compiling bots. --[[User:Rednaxela|Rednaxela]] 12:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe this is easier?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\*; ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
it load every library in &amp;lt;code&amp;gt;/libs&amp;lt;/code&amp;gt; automatically. (ripped from Robocode 1.7 startup files) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 13:14, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yes [[User:Rednaxela|Rednaxela]], you are right that for compilation there is no point to include any jar that is not robocode.jar. I didn't know that the * wildcard worked but is good to know [[User:Nat|Nat]]. But all my disinformation comes from Eclipse, I added the 4 jars there and he knows what to use :-). --[[User:Zyx|zyx]] 19:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't think the * will work for .jar files. It works for .class files only. Well, that was my experience several years ago, when I last used Windows. --[[User:Skilgannon|Skilgannon]] 19:49, 11 March 2009 (UTC)&lt;br /&gt;
* I had to test it, it works as [[User:Nat|Nat]] posted it, but if it is missing that ; after the * it tries to use the jar files as input files and of course fails. But bottom line is that it does work. --[[User:Zyx|zyx]] 00:29, 12 March 2009 (UTC)&lt;br /&gt;
* It should work because robocode 1.7 later than 1.7.0.1 use this method. I myself just add robocode.jar to eclipse :-) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 00:51, 12 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
I can create my robot without a problem but when I go to compile it, it doesn't do anything and won't let me save it. Thoughts? I can set up battles (can't save them either...) and don't have the javac file which I think may be what's causing this. If it is, where is a good place to download it? I'm using Windows XP and I don't know if it's a 32-bit or 64-bit.--[[User:Giants27|Giants27]] 21:52, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you want to get the JDK for Windows here: [http://java.sun.com/javase/6/webnotes/install/index.html#windows]. If you don't know, I'd go with 32-bit. I thought Robocode would setup the &amp;quot;jikes&amp;quot; compiler if you didn't have javac installed, but I'm not sure. Once you have the JDK installed, (I'd probably restart Robocode, then) go to Robot Editor, Compiler &amp;gt; Options &amp;gt; Reset Compiler and it should find javac. Btw, are you getting an error when you try to compile, or what happens? You might also find some good info at [[Robocode/System Requirements]] or in [[:Category:Tutorials]]. Good luck! --[[User:Voidious|Voidious]] 21:59, 24 May 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
When I go to compile, nothing happens and it just sits on the robot editing screen. It did install &amp;quot;jikes&amp;quot; but for whatever reason it still does nothing when I go to compile. I'll go try to install that.--[[User:Giants27|Giants27]] 22:07, 24 May 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Giants27</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16367</id>
		<title>Talk:Robocode/My First Robot</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Talk:Robocode/My_First_Robot&amp;diff=16367"/>
		<updated>2010-05-24T21:52:52Z</updated>

		<summary type="html">&lt;p&gt;Giants27: /* Compiling */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HELP! ==&lt;br /&gt;
&lt;br /&gt;
I am an experienced 13 year old Java programmer, and I decided to try this, (it looks VERY cool) but when I try to compile the simple default program it gives many errors.  I figured out pretty quickly; it can't find the robocode package.  I need to like set the classpath, but I can't directly do this.  &amp;gt;=(  Robocode SHOULD do this on its own...&lt;br /&gt;
&lt;br /&gt;
:Ok, I figured it out on my own... It's different on a mac. [[User:Awesomeness|Awesomeness]] 01:01, 13 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Robocode can't simply do everything for you, becasuse it is a Java setting issue, if you are using Eclipse you can set it trough the Build Path Settings, on the Libraries tab, select Add External Jars, search for your Robocode instalation directory (default in Windows is C:\robocode) under that directory there should be a libs directory, there are four jars, you might not need all of them, but I recommend you add all of them for now.&lt;br /&gt;
&lt;br /&gt;
If you are compiling from the console you should do something like&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\cachecleaner.jar;C:\robocode\libs\codesize.jar;C:\robocode\libs\robocode.jar;C:\robocode\libs\roborumble.jar ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set the classpath, but I really recommend using an advanced IDE like Eclipse (or whatever you prefer, ie. NetBeans). Hope it helps, and welcome to Robocode. --[[User:Zyx|zyx]] 08:55, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Actually Zyx, you don't need the cachecleaner, codesize or roborumble jars ofr compiling bots. --[[User:Rednaxela|Rednaxela]] 12:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe this is easier?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javac -cp C:\robocode\libs\*; ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
it load every library in &amp;lt;code&amp;gt;/libs&amp;lt;/code&amp;gt; automatically. (ripped from Robocode 1.7 startup files) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 13:14, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yes [[User:Rednaxela|Rednaxela]], you are right that for compilation there is no point to include any jar that is not robocode.jar. I didn't know that the * wildcard worked but is good to know [[User:Nat|Nat]]. But all my disinformation comes from Eclipse, I added the 4 jars there and he knows what to use :-). --[[User:Zyx|zyx]] 19:44, 11 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't think the * will work for .jar files. It works for .class files only. Well, that was my experience several years ago, when I last used Windows. --[[User:Skilgannon|Skilgannon]] 19:49, 11 March 2009 (UTC)&lt;br /&gt;
* I had to test it, it works as [[User:Nat|Nat]] posted it, but if it is missing that ; after the * it tries to use the jar files as input files and of course fails. But bottom line is that it does work. --[[User:Zyx|zyx]] 00:29, 12 March 2009 (UTC)&lt;br /&gt;
* It should work because robocode 1.7 later than 1.7.0.1 use this method. I myself just add robocode.jar to eclipse :-) &amp;amp;raquo; &amp;lt;span style=&amp;quot;font-size:0.9em;color:darkgreen;&amp;quot;&amp;gt;[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]&amp;lt;/span&amp;gt; &amp;amp;raquo; 00:51, 12 March 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Compiling ==&lt;br /&gt;
&lt;br /&gt;
I can create my robot without a problem but when I go to compile it, it doesn't do anything and won't let me save it. Thoughts? I can set up battles (can't save them either...) and don't have the javac file which I think may be what's causing this. If it is, where is a good place to download it? I'm using Windows XP and I don't know if it's a 32-bit or 64-bit.--[[User:Giants27|Giants27]] 21:52, 24 May 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Giants27</name></author>
		
	</entry>
</feed>