Check out Grant Acedrex, our featured variant for April, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Single Comment

@ Gerd Degens[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Thu, Feb 29 03:07 AM UTC in reply to H. G. Muller from Wed Feb 28 07:30 PM:
                    case "piececount":
                        $temp = array();
                        foreach ($space as $p) {
                            if (($p != "@") && ($p != "-"))
                                $temp[$p] = isset($temp[$p]) ? $temp[$p] + 1 : 1;
                        }
                        array_push ($output,  $temp);
                        break;