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 - Plasmoid

Pages: [1]
1
Bot Tavern / Mutualism in bots?
« on: November 23, 2013, 01:12:22 PM »
Is it possible to make bots with mutualistic relationships? Like a bot that can't make it's own energy joins/bonds with a veg bot that can share energy with whatever it bonds with? The bot that can't make it's own energy would then use the energy defend itself and the veg bots?
Would someone like to give it a try and test if something like that would be able to work? (I'm new to DB so I'd be lucky to make a simple working bot XD)
Also even if that's not possible, could a different type of mutualistic relationship happen?

2
Newbie / New to darwinbots please help!
« on: November 22, 2013, 08:28:32 AM »
Hello c: I'm new to darwinbots and I've tried my best to put a bot together but for some reason, when I run a simulation it just... POOF. It dies :/ Because I'm new to this I have no idea what on earth happens to them. It's a modified Animal-Minimalis which I tried to make using the tutorial wiki. Could someone be kind enough to help me fix this problem?
If someone could stop my little babies from exploding I'd be very grateful :'c

' Gene 1 Food Finder
cond
 *.eye5 0 >
 *.refeye *.myeye !=
start
 *.refveldx .dx store
 *.refvelup 30 add .up store
stop

' Gene 2 Eat Food
cond
 *.eye5 50 >
 *.refeye *.myeye !=
start
8 .shoot store
 *.refvelup .up store
stop

' Gene 3 Avoiding Family
cond
 *.eye5 0 =
 *.refeye *.myeye = or
start
 314 rnd .aimdx store
stop

' Gene 4 Poison
cond
 *.poison 500 <
start
 50 .strpoison store
stop

' Gene 5 Shell
cond
 *.shell 250 <
start
 100 .mkshell store
stop

' Gene 6 Reproduce
cond
 *.nrg 15000 >
start
 10 .repro store
stop

' Gene 7 Waste
cond
*.waste 40 >
start
.backshot inc
-4 .shoot store
*.waste .shootval store
stop

' Gene 8 Backshoot
cond
*.shflav 0 !=
*.shflav -2 !=
start
1256 *.shang sub .aimshoot store
8 .shootval store
-6 .shoot store
0 .shflav store
stop

' Gene 9 Slime
cond
 *.slime 300 <
start
 100 .mkslime store
stop

'Gene 10 Antivirus
cond
 *.mkvirus 0 !=
start
 *.mkvirus .delgene store
stop
end

Pages: [1]