برچسب: checkers

  • How could an online Checkers players to use AI to cheat in real-time?


    I’ve been playing Checkers on CardGames.io, and I’ve noticed some players make perfect moves instantly, almost as if they’re using a bot or AI to assist them.
    I understand that AI solvers for Checkers (like Chinook or web-based tools) require you to input the current board state before they return the optimal move. But this takes time — so how are these players seemingly:

    • Reading the board state immediately
    • Sending it to a solver
    • And executing the move without any delay

    How could a player be getting AI solver moves so quickly?

    For example, are they using browser extensions, scripts, or something else to automate the reading of the board and feeding it to an engine? How technically difficult would it be to pull off without the site detecting it?



    Source link

  • American checkers largest possible number of legal move choices from any board position


    I want to know what is the maximum number of legal move choices from any board position, in the game of checkers, assuming official rules.

    I’m creating a program that plays checkers, and for performance reasons, I need to know in advance the largest number of legal moves. I expect it to be quite low, like under 50, but just making a guess is not an option for me.

    I searched for this, but couldn’t find an answer. Maybe I missed something.

    Edit:

    Thinking for a moment, I think (one of) the largest theoretical number(s) of legal moves might be where all 12 pieces are kings, like in the position W:WK5,K6,K7,K8,K13,K14,K15,K16,K21,K22,K23,K24:BK30, which has 42 legal moves. That position is not valid and is not possible to occur. I’m more interested though in the largest possible moves from a valid checkers position. An upper bound might be fine.



    Source link