Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void act()
- {
- // Add your action code here.
- int x1 = (int)(Math.random() * 600 + 1);
- int y1 = (int)(Math.random() * 400 + 1);
- int z1 = (int)(Math.random() * 500 + 1);
- //TEAM ONE BAY-BEE
- if (z1 > 498)
- {
- Dinosaur d6 = new Dinosaur();
- addObject(d6, x1, y1);
- }
- }
- public void act()
- {
- // Add your action code here.
- int x = (int)(Math.random() * 50 + 1);
- int y = (int)(Math.random() * 30 + 1);
- move(x);
- move (-y);
- turn(y);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement