From 64ba22a762839407ef9ff6474237880a2c44c3be Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 6 Jun 2022 09:03:19 -0300 Subject: [PATCH] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index 52bbe4d4..bacd1b55 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -14,11 +14,17 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b ## General Bots BASIC reference -| Instruction / Usage | Description | -| ------------------------------------------------------------- | --------------------------------------------------------------------------- | -| HEAR _variable_ | Hears something from the person into a _variable_ for later use. | +| Instruction / Usage | Description | Example | +| ------------------------------------------------------------- | --------------------------------------------------------------------------- |----| +| HEAR _variable_ | Hears something from the person into a _variable_ for later use. | + +HEAR name +TALK "Your name is " + name. + + +| | confirm _variable_ (Comming soon) | Waits for confirmation like 'yes', 'y', 'yeah' and return true or false | -| TALK _message_ | Talk the specified _message_ to the person. | +| TALK _message_ | Talk the specified _message_ to the person. | TALK "Hello world." | | GENERATE A PASSWORD | Creates a new password into the system variable **password** for later use. | | CREATE A BOT FARM USING _params_ | Deploys a new bot farm to the cloud. | | WAIT _seconds_ | Wait a number of seconds before continuing the conversation. |