home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ISV Strong Games
/
ISV_STRONG_GAMES.iso
/
desktop
/
spatience
/
!SPatience
/
40
< prev
next >
Wrap
Text File
|
1992-10-16
|
1KB
|
71 lines
|
| Rules for the game of Forty thieves
| Written by J.Horsnell BSc(Hons) MSc
|
| This is a game I saw once on another machine.
| Its stacks are of the same suit descending
| variety. The game includes two packs of cards
| and thus eight foundations to collect them all.
| The pack turns one card at a time but is not
| reuseable. You are only allowed to move 1 card
| at a time but any card may be placed on an empty
| stack. This really means you may move 1 card
| plus the number of empty game stacks.
|
SCRIPT_TYPE 1
|
BEGIN "Forty thieves"
FLAGS ClickFly AnimateFly
PACKS 2
WIDTH 12 * CW + 16
HEIGHT 692 + CH
ZeroToWin 104 - CARDSIN$2
FOR stack = 0 TO 1
FOR pack = 0 TO 3
FOUNDATION
X 10 * CW + stack * CW + 12
Y 16 + pack * CH
ID 2
END
END
END
FOR stack = 0 TO 9
STACK
X stack * CW + 12
Y 16
FIRST 1,13
MAX 16
DEAL 4,1
DRAGUPTO 1 + EMPTY$1
FLAGS ClickFly JoinSS__ DeepCheck
ID 1
END
END
STACK
X 12
Y 692
DEAL 64
DEALTO 4,1
TAKEFROM 0
MAX 0
DRAGUPTO 0
FLAGS PaintBack
ID 3
END
STACK
X 12 + CW
Y 692
DEAL 0
MAX 0
DRAGUPTO 1
FLAGS PaintLeft
ID 4
END
END