Difference between revisions of "Thread:Talk:RoboRumble/Enter The Competition/Properties file?/reply (2)"

From Robowiki
Jump to navigation Jump to search
m (Reply to Properties file?)
 
m
Line 4: Line 4:
 
Every time I jar my bot I put updated .properties file with newly regenerated  robot.version and uuid fields. Looks like the rest of it is not checked by robocode.  Note that my bots are listed with eem.EvBot marker when I put them for competition. Below is my template.
 
Every time I jar my bot I put updated .properties file with newly regenerated  robot.version and uuid fields. Looks like the rest of it is not checked by robocode.  Note that my bots are listed with eem.EvBot marker when I put them for competition. Below is my template.
  
======================
+
 
 +
<nowiki>
 
#Robot Properties
 
#Robot Properties
 
#Sat Aug 11 01:30:45 EDT 2012
 
#Sat Aug 11 01:30:45 EDT 2012
Line 14: Line 15:
 
uuid=55ff1c5b-0c40-432d-adb5-a5f7658a4aed
 
uuid=55ff1c5b-0c40-432d-adb5-a5f7658a4aed
 
robot.classname=eem.EvBot
 
robot.classname=eem.EvBot
 +
</nowiki>
 +
 
=================
 
=================

Revision as of 17:49, 22 October 2013

I second TopQuark. I do not like to use gui for my projects especisally if simple makefile does the job. So while ago I looked inside of the .properties file.

It is not that complicated and apparently not all fields of it are checked. Every time I jar my bot I put updated .properties file with newly regenerated robot.version and uuid fields. Looks like the rest of it is not checked by robocode. Note that my bots are listed with eem.EvBot marker when I put them for competition. Below is my template.


#Robot Properties #Sat Aug 11 01:30:45 EDT 2012 robot.description=Simple predictor for fire and naive evasion robocode.version=1.6.2 robot.java.source.included=true robot.version=v1.2 robot.author.name=beaming uuid=55ff1c5b-0c40-432d-adb5-a5f7658a4aed robot.classname=eem.EvBot

=====