Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- If ChessGame.ColourPicked = PieceColour.White Then
- PieceBoard = {{-3, -5, -4, -2, -1, -4, -5, -3},
- {-6, -6, -6, -6, -6, -6, -6, -6},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {6, 6, 6, 6, 6, 6, 6, 6},
- {3, 5, 4, 2, 1, 4, 5, 3}}
- ElseIf ChessGame.ColourPicked = PieceColour.Black Then
- PieceBoard = {{3, 5, 4, 1, 2, 4, 5, 3},
- {6, 6, 6, 6, 6, 6, 6, 6},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0, 0, 0},
- {-6, -6, -6, -6, -6, -6, -6, -6},
- {-3, -5, -4, -1, -2, -4, -5, -3}}
- End If
Add Comment
Please, Sign In to add comment