2006-10-10 10:02:03 +02:00
|
|
|
import random
|
|
|
|
|
2006-10-09 18:03:35 +02:00
|
|
|
from sugar.simulator import Bot
|
|
|
|
|
2006-10-10 10:02:03 +02:00
|
|
|
for i in range(0, 8):
|
2006-10-09 18:03:35 +02:00
|
|
|
bot = Bot()
|
2006-10-09 18:29:54 +02:00
|
|
|
|
2006-10-10 10:02:03 +02:00
|
|
|
bot.wait(random.randint(10, 20))
|
2006-10-10 00:35:37 +02:00
|
|
|
bot.join_activity('giraffes')
|
2006-10-09 18:29:54 +02:00
|
|
|
bot.change_activity('giraffes')
|
|
|
|
|
2006-10-09 18:03:35 +02:00
|
|
|
bot.start()
|
2006-10-10 10:02:03 +02:00
|
|
|
|
|
|
|
for i in range(0, 6):
|
|
|
|
bot = Bot()
|
|
|
|
|
|
|
|
bot.wait(random.randint(10, 20))
|
|
|
|
bot.join_activity('nekkhamma')
|
|
|
|
bot.change_activity('nekkhamma')
|
|
|
|
|
|
|
|
bot.start()
|