# Maze Explorer Script - edit parameters below ROWS = 15 COLS = 25 CELL_SIZE = 40 WALL_PROB = 0.2 # Player settings PLAYER_X = 1 PLAYER_Y = 1 PLAYER_COLOR = "blue" # Answer blocks ANSWER1_X = 22 ANSWER1_Y = 2 ANSWER1_CORRECT = false ANSWER1_COLOR = "yellow" ANSWER2_X = 2 ANSWER2_Y = 12 ANSWER2_CORRECT = true ANSWER2_COLOR = "green" ANSWER3_X = 12 ANSWER3_Y = 7 ANSWER3_CORRECT = false ANSWER3_COLOR = "yellow" # Colors WALL_COLOR = "gray" PATH_COLOR = "white" # Messages WIN_MESSAGE = "You win! 🎉" LOSE_MESSAGE = "Boom! Wrong answer! 💥"
Reset Script