Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. fill(0, 0, 0);
  2. ellipse(200, 200, 375, 375);
  3. fill(60, 0, 255);
  4. triangle(200, 104, 280, 280, 120, 280);
  5. fill(255, 255, 255);
  6. var answer = floor(random(1, 5));
  7. if (answer === 2) {
  8. text("NOT YET", 176, 200);
  9. }
  10. else if( answer===3)
  11. {
  12. text("IMPLEMENTED", 159, 229);
  13.  
  14. }
  15.  
  16. else if(answer===4){
  17. text("Yes",185,229);
  18. }
  19. else if(answer===1){
  20. text("NO",185,229);
  21. }
  22. else if(answer===5){
  23. text("Try Again",185,200);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement