mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
22 lines
635 B
Python
22 lines
635 B
Python
# This file is distributed under the terms of the GNU General Public license.
|
|
# Copyright (C) 2008 Alistair Riddoch (See the file COPYING for details).
|
|
|
|
from atlas import *
|
|
from random import *
|
|
from cyphesis.editor import create_editor
|
|
from physics import Quaternion
|
|
from physics import Vector3D
|
|
from math import *
|
|
|
|
import time
|
|
|
|
|
|
def default(host='', account='', password='', **args):
|
|
# Spray the world with rubbish
|
|
|
|
m = create_editor(host, account, password)
|
|
|
|
for i in range(10000):
|
|
m.make('oak', pos=(uniform(-500, 300), uniform(-500, 300), 0))
|
|
m.delete(m.look_for(type='oak').id)
|
|
time.sleep(0.1)
|