Smart Technology - Codemao
Floor 4 - Computer Room
Outline
Outline
1
Ex07_01 - Cat and Food
2
Ex07_02 - Hammer
3
Codemao Platform
Change language
Change to English
Ex07_1 - Cat and Food
Tasks:
Follow the cursor
1.
Foods generate every second
2.
Increasing cat size after food has been eaten
3.
Setup the scene
1.
Remove the default background
2.
3.
Import black background
4.
Hide victory, black background and like character
5.
Set the cat as Left-Right
Ex07_1 - Cat and Food
1.
When game starts
Control the Cat
Ex07_1 - Cat and Food
1.1.
Forever to loop
1.1.1
Point towards to mouse cursor
1.1.2
Moving 20 steps
1.1.3
Changing costume to keep jumping
1.1.4
Wait for 0.001 for avoid jumping too fast
Chasing the mouse pointer
Ex07_1 - Cat and Food
1.
When game starts
Foods
1.1.
Forever to loop
1.1.1
Create clone of myself
1.1.2
Wait for 1 second to avoid cloning too much
2.
When I start as clone
2.1.
Show it in the scene
2.2.
Go to a random position after cloning
2.3.
Forever to loop
2.3.1.
Check if myself touching the cat
2.3.1.1
Hide myself if touched
Ex07_1 - Cat and Food
1.
When game starts
Cat
1.1.
Forever to loop
1.1.1.
Check if myself touching the like character
1.1.1.1.
Change size by increasing 10
1.1.1.2.
Change foods variable by increasing 1
1.1.2.
Check if foods is equal to 10
1.1.2.1.
Make victory show
1.1.2.2.
Make the black ground show
1.1.2.3.
Stop the game
Download your program and name it as 01_YourName_Ex07_1.bcm4
Ex07_1 - Cat and Food
Ex07_2 - Hammer
Setup the scene
1.
Remove the default block program in background
2.
Import skull
3.
Import hammer
Ex07_2 - Hammer
1.
When game starts
Hammer
1.1.
Forever to loop
1.1.1.
Go to mouse pointer
1.1.2.
Check if mouse is pressed
1.1.2.1.
Switch costume to hammer-2
Ex07_2 - Hammer
1.1.3.
Else
1.1.3.1.
Switch costume to hammer-1
Ex07_2 - Hammer
1.
When game starts
Skull
1.1.
Forever to loop
1.1.1.
Wait 1 ~ 3 seconds randomly
1.1.2.
Switch costume to skull-2
1.1.3.
Wait 0.5 ~ 2 seconds randomly
1.1.4.
Switch back to costume to skull-1
2.
When game starts
2.1.
Forever to loop
2.1.1.
Check if the current costume name of myself is equal to "skull-2"
2.1.1.1.
Check if mouse is pressed and myself touching the hammer
2.1.1.1.1.
Stop other scripts in this sprite
2.1.1.1.2.
Switch costume to explosion
2.1.1.1.3.
Fade out during 1 second
Ex07_2 - Hammer
1.
When game starts
Skull
1.1.
Forever to loop
1.1.1.
Wait 1 ~ 3 seconds randomly
1.1.2.
Switch costume to skull-2
1.1.3.
Wait 0.5 ~ 2 seconds randomly
1.1.4.
Switch back to costume to skull-1
2.
When game starts
2.1.
Forever to loop
2.1.1.
Check if the current costume name of myself is equal to "skull-2"
2.1.1.1.
Check if mouse is pressed and myself touching the hammer
2.1.1.1.1.
Stop other scripts in this sprite
2.1.1.1.2.
Switch costume to explosion
2.1.1.1.3.
Fade out during 1 second
Skull
Copy Skull
(-346, -401)
(-142, -401)
(67, -401)
Ex07_2 - Hammer
Download your program and name it as 01_YourName_Ex07_2.bcm4
Ex07_2 - Hammer