# Snake - Multiplayers Version ###### tags: `BookMode` `Tutor` `Minecraft` `Ching` `Snake` [TOC] ## Project Description ![Alt Text](https://media.giphy.com/media/BDph8QrTwRE4s2EXf7/giphy.gif) Build snake game, allowing 3 players to play ## Required Steps ### Body's Related Functions - [x] Create a list to hold its body's position > snake3 = [ ] - [x] Create snake's body > createBody3(x,y) ### Direction Functions - [x] Set up a direction variable to initialize snake's direction. > dir3 = "Right" ,"Left" ,"Up" ,"Down" - [x] Set up 4 fuctions and 4 screen.onkey() to control the diection of snake's movement. > (1) u3( ) > (2) d3( ) > (3) l3( ) > (4) r3( ) > > Four screen.onkey() for controling the 4 functions with 4 specific keys. ### Movement Functions - [x] Help snake to know which direction to move > move3() - [x] Update snake's positions in a given period of time. > update3() ### Start your own game ^^ - [ ] Put all the required functions into your startGame() functions > global variable: running() > functions: createBody3(), update3()