If you don't mind the player getting a free, static, roll on the very first turn, you could also change:
IF di = 1 THEN INPUT " The turn is over, press enter...", wate$
To:
IF di = 1 THEN INPUT " The turn is over, press enter...", wate$ ELSE RANDOMIZE TIMER
The first roll would be predictable when the game starts, but since it's not going to be 1, you'd randomize timer to make all the rolls afterwards difficult to predict.
Can drop 1 more line that way, as well.