Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tj3

Pages: 1 2 [3]
31
DNA - General / Determining if other bots are under influence of venom
« on: March 17, 2010, 08:29:47 PM »
Is there a way to determine if another bot is under the influence of venom? I haven't found any information about it anywhere on the wiki...

32
Darwinbots3 / How to start helping?
« on: March 17, 2010, 07:59:03 PM »
Hi. I found out about DB a week or so ago, and am very interested in it. I am a decent C# programmer, and have experience in 2D and 3D development with XNA, so I think I could help with development of Darwinbots 3. I was just wondering how I could get started with this, since I'd really like to help.

33
Evolution and Internet Sharing Sims / Internet Mode
« on: March 17, 2010, 05:03:38 PM »
I got that far, but it always crashes a few seconds later, when the timer on that window goes to 0. Are there any settings I need to change to get it to work?

34
Evolution and Internet Sharing Sims / Internet Mode
« on: March 16, 2010, 06:20:56 PM »
Could someone please explain this to me? I just found out about DB a week ago or so, and I'm not really sure how it works.

35
The Gene depository / Enemy Evaluation
« on: March 16, 2010, 06:16:36 PM »
This is a cool way to evaluate enemies I figured out. It is a simple way to determine whether you or the enemy has more kills. It takes age into account, also.

[div class=\'codetop\']CODE[div class=\'codemain\' style=\'height:200px;white-space:pre;overflow:auto\']cond
*.robage *.kills div *.refage *.refkills div <
start
'attack code
else
*.maxvel .dn store
stop

36
DNA - General / Best numbers
« on: March 15, 2010, 04:57:22 PM »
Hi. I just found out about DB a few days ago, and haven't really made any good bots yet. Im working on a basic bot now, and I was just wondering if somebody could tell me some good "numbers" to use in it, for things like storing poison, slime, and shell, storing to body, and reproducing. If someone could give me some examples or general rules to use, that would be great!

37
Newbie / Hello...
« on: March 13, 2010, 02:10:14 PM »
Thanks! The poison worked great, and gave it a huge advantage.
And the idea to only mrepro with over 100 population was a really smart idea! Im really glad the community is so helpful here.

38
Newbie / Hello...
« on: March 12, 2010, 10:22:54 PM »
Hi.... I just got darwinbots and it's great. I just made my first bot. Its just a basic bot, but it is actually pretty good. Here's the code. If you could help me make it better that would be great!

Code: [Select]
'Animal_Simpilisis
'A basic but powerful animal bot.
'It will find food and reproduce.

def speciesid 101

' Gene 1 Species ID
cond
*.robage 0 =
start
99 .speciesid store
.speciesid .memloc store
stop

' Gene 2 Follow food
cond
 *.eye5 0 >
*.memval *.speciesid !=
start
 *.refveldx .dx store
 *.refvelup 30 add .up store
stop

' Gene 3 Find food
cond
*.eye5 0 =
*.memval *.speciesid =
or
start
157 314 rnd sub .aimdx store
10 .up store
stop

' Gene 4 Eat food
cond
 *.eye5 50 >
*.memval *.speciesid !=
start
-1 .shoot store
 *.refvelup .up store
stop

' Gene 5 Eliminate waste
cond
*.waste 100 >
start
1 .backshot store
-4 .shoot store
*.waste .shootval store
stop

' Gene 6 Reproduction
cond
*.nrg 20000 >
*.eye5 50 <
start
25 .mrepro store
stop

end

Pages: 1 2 [3]