What are you saying?How do you set the bot's starting direction?How do you get the bot to turn in game??How do you put the bot file into the AI folder???
Fixing orientationIf you are lucky that your bot faces the same way as the bot you are replacing you are done here and your bot should start fighting with the AI of the bot you replaced. If you didn't make your bot facing the same way as the bot you are replacing you can you will need to edit the Bindings.py file to tell the game which way your bot should face.To edit Bindings.py to correct facing of an AI bot go to the \Robot Arena 2\AI folder and back up the existing Bindings.py (This is very important. It is easy to induce typos in this file and the game is very unforgiving if you do.) Open up the Bindings.py with Notepad or your favorite text editor that does not change formatting (i.e. turn off Word Wrap). Go to the line of the bot you are replacing with your bot. In this example it would be the Maelstrom line in Team #0 Maelstrom does not have a 'nose' command because he is facing the default direction. Depending on the facing of your bot (Trial and error here, hard to describe how to tell which setting to use) you would add to the list.append line for the bot you are replacing (Maelstrom in this example) in the same style of many of the other bot lines in the Bindings.py (Note: Position between the {} is your choice but try to do similar to other lines: 'nose':math.pi/2, or 'nose':math.pi, or 'nose':-math.pi/2, If you built your bot on an oblique angle there are more exotic settings to adjust for that, but that is a more advanced tutorial about radians. Basically many computer physics models do not use Degrees, they use Radians where 0 (or PI*2) Radians = 0 (360) Degrees, PI/2 Radians = 90 Degrees, PI Radians = 180 Degrees, PI*3/2 (or -PI/2) Radians = 270 Degrees Save your changes to Bindings.py and if you didn't induce any typos your bot should now start facing the right direction as an AI. If not, you did make the backup of Bindings.py, didn't you? If you need to adjust the nose command again or start over copy the backed up Bindings.py to Bindings.py and try again or edit the one you have been adjusting. This is a good way to get your Bot AIed by using an existing AI line and get it inserted in a pack for testing.Let me know if there are any questions on these instructions or if there is interest to learn more...StarcoreIt's easy enough to look on the wiki you know.