User prompt
There should be only 4 players in one time. Player count should not increase
User prompt
Decrease the enemies speed by 0.08 seconds
User prompt
Increase the speed of the shooter when moving left and right. Also decrease the enemies speed by 0.7 seconds
User prompt
Decrease the speed of the enemies by 0.004 seconds and the enemies should not come on the very side on the screen
User prompt
Only 6 enemies should come at a time. They number of enemies should not increase everytime
User prompt
Decrease the speed of the enemies by 0.005 seconds. And don't increase the speed everytime. The speed of enemies should stay the same
User prompt
Decrease the speed of the enemies by 0.0003 seconds
User prompt
Decrease the enemies speed and the speed of the player should increase everytime by 0.002 seconds
User prompt
Increase the movement of the shooter by 0.00001 second s everytime
User prompt
Increase the bullets speed by 0.00001 seconds everytime
User prompt
The speed of the enemies should not increase everytime
User prompt
Make it that only 6 enemies come at a time. The amount of enemies should not increase everytime only their speed should increase
User prompt
Make it that only 1 enemy comes at a time
User prompt
Make it that only 2 enemies come at a time
User prompt
Decrease the speed each time the enemy comes a little bit
User prompt
Make it that only 3 enemies appear at a time
User prompt
Remove the shooting button and make it THAT the player only shoots when the screen is touched
User prompt
The player should not move to the right when the shooting button is pressed
User prompt
The player should not move the right side whenever I shoot
User prompt
Add the shooting button
User prompt
Remove the shooting button
User prompt
The shooter should not throw bullets himself
User prompt
Make a specific button on the bottom right which the player will press to shoot
User prompt
The player should only shoot when the screen is touched
User prompt
The shooting speed should only increase by 0.00002s everytime
===================================================================
--- original.js
+++ change.js
@@ -172,9 +172,9 @@
player.x = x;
};
// Add keyboard event listener for arrow keys
LK.on('keydown', function (event) {
- if (event.key == "ArrowRight" && !shootingButton.down) {
+ if (event.key == "ArrowRight") {
player.x += player.speed;
}
if (event.key == "ArrowLeft") {
player.x -= player.speed;