This site requires JavaScript, please enable it in your browser!
Greenfoot back
8BITBOSSGAMES

8BITBOSSGAMES

Shawnee high school, Shawnee

8BITBOSSGAMES's scenarios

This user has not made any scenarios.

8BITBOSSGAMES's collections

This user has no collections

Recent Comments

8BITBOSSGAMES

2017/6/9

Im new to greenfoot and I need help. I'm making a bullet hell game and I want to create patterns but I don't know how to make a bullet clone itself. This is what I have: [code] Public class bullet extends enemy { Public void act() { Int patternChoice = greenfoot.getRandomNumber(3); If ( patternChoice = 1) { for (int i = 1; i < 361; i++) { [/code] Pattern 1 is going to be a simple spiral that turns 360 degrees. Please tell me what I do!