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

Report as inappropriate.

Demoniso
Demoniso presents ...

2010/7/9

FROGGER

Clone of the famous classic game FROGGER
(Hint: Get error by pushing 2 keys at once. Working on that...)

10053 views / 1752 in the last 7 days

Tags: game with-source

This scenario is a member of: INF303


open in greenfoot
Your browser does not support the canvas tag.
Green-FootGreen-Foot

2010/7/15

Hey brother, in your frog. Instead of all that mumbo, jumbo you had written up replace it with this **CODE** import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) public class Frog extends Mover { public void act() { checkKeyPress(); } public void checkKeyPress() { if(Greenfoot.isKeyDown("left")) { setLocation(getX() - 5, getY()); } if(Greenfoot.isKeyDown("right")) { setLocation(getX() + 5, getY()); } if(Greenfoot.isKeyDown("up")) { setLocation(getX() , getY() - 5); } if(Greenfoot.isKeyDown("down")) { setLocation(getX(), getY() + 5); } } } Way to easy haha. Goodluck.
smcgeesmcgee

2015/11/23

In your wonderful program each time the frog dies the counter adds two points. I've looked throughout the code but have been unable to find how to edit that feature so the counter only adds two points each time the frog dies. Thanks for any help on this problem.

Want to leave a comment? You must first log in.

Who likes this?

No votes yet.