sugar-toolkit-gtk3/tests/simulator/demo/others.py

22 lines
347 B
Python
Raw Normal View History

2006-10-10 10:02:03 +02:00
import random
from sugar.simulator import Bot
2006-10-10 10:02:03 +02:00
for i in range(0, 8):
bot = Bot()
2006-10-09 18:29:54 +02:00
2006-10-10 10:02:03 +02:00
bot.wait(random.randint(10, 20))
bot.join_activity('giraffes')
2006-10-09 18:29:54 +02:00
bot.change_activity('giraffes')
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()