Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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. else if(answer===4){
  15. text("Yes",185,229);
  16. }
  17. else if(answer===1){
  18. text("NO",185,229);
  19. }
  20. else if(answer===5){
  21. text("Try Again",185,200);
  22. }
  23.  
  24. <script type="text/javascript">
  25. // code in here
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement