Search:

Type: Posts; User: newmanj8

Search: Search took 0.08 seconds.

  1. Replies
    5
    Views
    1,170

    Re: Need a win aspect in connect four game

    {
    if (checkWin() == true) {
    gameOn = false;
    PFont font = loadFont("IskoolaPota-48.vlw");
    textFont(font, 80);
    if (winner == 4) {
    shadowtext("Red Wins!", width/4,...
  2. Replies
    5
    Views
    1,170

    Re: Need a win aspect in connect four game

    The code sets up a connect four board with a mouse listener that when clicked highlights the empty spaces red or black you have to win four chips in a row vertically horizontally or diagonally. I use...
  3. Replies
    5
    Views
    1,170

    Need a win aspect in connect four game

    I want to have the game stop when you connect four and have the screen say what color one and the click to reset. This is what I have so far.



    <color yellow = color (255, 217, 0);
    color red =...
Results 1 to 3 of 3