[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]
Single Comment
The <b>change-owner</b> command is actually only executed when the <b>add</b> is performed. If you want to move to an opposing piece, take it over, and deposite somewhere else, something like this should work:
<pre>
(define take-over-and-dump (
$1 ; go to enemy piece.
from ; start moving it instead.
a1 ; take it where you want it.
change-owner ; now it's mine!
add
))
</pre>