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

danpost's Comments

Back to danpost's profile

Would be nice to be able to use the 'return' statement.
There seems to be a problem with saving the code and scores. It appears to be getting user info ok, thought.
The Smoke class should extend the ScrollActor class. That, and you using the wrong x and y to place your smoke into the world (in the ship class). The 'makeSmoke' method should be like this: private void makeSmoke() { count--; if (count == 0) { ScrollWorld sw = (ScrollWorld) getWorld(); getWorld().addObject ( new Smoke(), sw.getCameraX(), sw.getCameraY()); count = 2; } } You may want to add a 'setPaintOrder' statement in your subclass of ScrollWorld. Oh, and move your call to 'makeSmoke' inside the 'up' key detection clause
Yeah. Well, I cannot very well keep the results on Greenfoot's storage server available for the new poll. ?? can I ?? :/
I think either Greenfoot's UserInfo storage is not accessable (not because of you not being logged in) or a bug has cropped up within Greenfoot. It is acting very strange. Resetting fixes the 'not logged in' part; but an error occurs when you then 'start' the scenario (which never happened before).
I cheated and placed an X where an O already was.
@ronzhi, please start a discussion and explain in detail what you attempting and how it is not working the way you want, giving the exact error message, and what code you are using (including the InfoWorld class constructors, since you are creating a new instance of that class).
@JetLennit, see the discussion called 'On "Private Messaging" by danpost' at: http://www.greenfoot.org/topics/1938
@Game/maniac, help looks fine to me (I do not get that)! And it is supposed to get harder as the level number increases. The higher levels are sometimes impossible; but by resetting, you will eventually get one that can be finished.