File size: 355 Bytes
87b3b3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Mines highlighting
## JustBlackBird

```javascript
    map.setSquareColor(x, y, '#000');
```

## Jhack (giacgbj)

```javascript
    map.setSquareColor(x, y, '')
```


## Agamemnus

Reposition:
```javascript
    for (var x = 0; x < 2; x++) {
        for (var y = 0; y < 20; y++) {
            map.placeObject (x, y, 'mine')
        }
    }
    break
```