Skip to content

Commit

Permalink
updated markdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
neonerz committed Jul 29, 2020
1 parent c911f25 commit ab8af53
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 32 deletions.
39 changes: 31 additions & 8 deletions final.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,39 @@
### @flyoutOnly 1
### @hideIteration true
### @codeStart players set @s makecode 0
### @codeStop players set @s makecode 1

### @flyoutOnly false
### @hideIteration true
### @explicitHints 1

## Step 1
Welcome your Agent!
## Hidden in Plain Sight

# Hidden in Plain Sight
The final goon is hiding amongst the gala attendees. Help Wonder Woman find and apprehend him.

```ghost
player.onChat("search", function () {
**Blocks Available:**
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
*Locate goon <direction>* - Return a boolean (*true* | *false*) of whether the goon is found in the specified direction.
*Apprehend goon <direction>* - Instruct Wonder Woman to apprehend the goon.
*repeat <number> times* - Repeat code the specified number of times.
*if / then* - Checks if a condition is *true* and then does something if so.
*while <boolean>* - Repeated run the code while the boolean is *true*.
*not <boolean>* - Switches the operation of a condition. Example: *while <true>* vs. *while not <true>*

})
```ghost
ww.moveWW(Direction.Forward, 0)
ww.locateGoon(Direction.Forward)
ww.apprehendGoon(Direction.Forward)
for (let index = 0; index < 4; index++) {
}
if () {
}
while (true) {
}
!(false)
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
```
```
25 changes: 17 additions & 8 deletions sneak_1.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
### @flyoutOnly 1
### @hideIteration true
### @codeStart players set @s makecode 0
### @codeStop players set @s makecode 1

### @flyoutOnly false
### @hideIteration true
### @explicitHints 1

## Step 1
Welcome your Agent!
## Laser Sneak

# Laser Sneak Part 1
Help Wonder Woman navigate through the room without tripping any lasers.

```ghost
player.onChat("search", function () {
**Blocks Available:**
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
*repeat <number> times* - Repeat code the specified number of times.

})
```ghost
ww.moveWW(Direction.Forward, 0)
for (let index = 0; index < 4; index++) {
}
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
```
```
25 changes: 17 additions & 8 deletions sneak_2.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
### @flyoutOnly 1
### @hideIteration true
### @codeStart players set @s makecode 0
### @codeStop players set @s makecode 1

### @flyoutOnly false
### @hideIteration true
### @explicitHints 1

## Step 1
Welcome your Agent!
## Laser Sneak

# Laser Sneak Part 2
This room is a bit more difficult. Help Wonder Woman get through this room without triggering the alarm.

```ghost
player.onChat("search", function () {
**Blocks Available:**
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
*repeat <number> times* - Repeat code the specified number of times.

})
```ghost
ww.moveWW(Direction.Forward, 0)
for (let index = 0; index < 4; index++) {
}
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
```
```
27 changes: 19 additions & 8 deletions sneak_3.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
### @flyoutOnly 1
### @hideIteration true
### @codeStart players set @s makecode 0
### @codeStop players set @s makecode 1

### @flyoutOnly false
### @hideIteration true
### @explicitHints 1

## Step 1
Welcome your Agent!
## Laser Sneak

# Laser Sneak Part 2
In this room Wonder Woman will need to sneak up behind the goon and get the painting piece from him. You'll still need to make sure she avoids tripping the lasers.

```ghost
player.onChat("search", function () {
**Blocks Available:**
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
*Apprehend goon <direction>* - Instruct Wonder Woman to apprehend the goon.
*repeat <number> times* - Repeat code the specified number of times.

})
```ghost
ww.moveWW(Direction.Forward, 0)
ww.apprehendGoon(Direction.Forward)
for (let index = 0; index < 4; index++) {
}
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
```
```

0 comments on commit ab8af53

Please sign in to comment.