🕸📝Fergus Duniho wrote on Fri, Dec 17, 2010 12:00 AM UTC:
Okay, the problem on my end is that the extendmove command is not yet working properly in solitaire mode. But my tests indicate that it is working properly in correspondence mode.
The problem on your end is that putting extendmove as the final command in the postmove code creates an infinite loop. It's not a proper use of the command. It should only be used within a conditional statement that checks whether it needs to be called. In this Chess game between myself and my alter ego, extendmove is the only command, occurring in post-move1 by itself. It does not turn the board around, but it creates an infinite loop in which White can keep moving one piece after another but is never able to send the move to his opponent. You can try it yourself.
Okay, the problem on my end is that the
extendmove
command is not yet working properly in solitaire mode. But my tests indicate that it is working properly in correspondence mode.The problem on your end is that putting
extendmove
as the final command in the postmove code creates an infinite loop. It's not a proper use of the command. It should only be used within a conditional statement that checks whether it needs to be called. In this Chess game between myself and my alter ego,extendmove
is the only command, occurring in post-move1 by itself. It does not turn the board around, but it creates an infinite loop in which White can keep moving one piece after another but is never able to send the move to his opponent. You can try it yourself.