Merge branch 'master' of https://github.com/GeneralBots/BotBook into master
This commit is contained in:
commit
2766c220c3
2 changed files with 17 additions and 13 deletions
|
@ -22,14 +22,22 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b
|
||||||
| GENERATE A PASSWORD | Creates a new password into the system variable **password** for later use. |
|
| 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. |
|
| 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. |
|
| WAIT _seconds_ | Wait a number of seconds before continuing the conversation. |
|
||||||
| _variable_ = GET CELL "_file_.xlsx", "_A1:A1_" (Comming soon) | Gets the value of the cell specified in range address |
|
| _variable_ = GET "_file_.xlsx", "_A1:A1_" | Gets the value of the cell specified in range address |
|
||||||
| SET CELL "_file_.xlsx", "_A1:A1_", 42 (Comming soon) | Gets the value of the cell specified in range address |
|
| SET "_file_.xlsx", "_A1:A1_", 42 | Gets the value of the cell specified in range address |
|
||||||
| _variable_ = GET "https://server/query" (Comming soon) | Gets the value of the cell specified in range address |
|
| _variable_ = GET "https://server/query" | Gets the value of the cell specified in range address |
|
||||||
| POST "https://", _data_ (Comming soon) | Gets the value of the cell specified in range address |
|
| POST "https://", _data_ | Gets the value of the cell specified in range address |
|
||||||
| wait _seconds_ (Comming soon) | Wait a number of seconds before continuing the conversation. |
|
| wait _seconds_ | Wait a number of seconds before continuing the conversation. |
|
||||||
|
| HEAR _variable_ AS EMAIL | |
|
||||||
|
| HEAR _variable_ AS DATE | |
|
||||||
|
| HEAR _variable_ AS NAME | |
|
||||||
|
| HEAR _variable_ AS INTEGER | |
|
||||||
|
| HEAR _variable_ AS BOOLEAN | |
|
||||||
|
| HEAR _variable_ AS HOUR | |
|
||||||
|
| HEAR _variable_ AS MONEY | |
|
||||||
|
| HEAR _variable_ AS MOBILE | |
|
||||||
|
| HEAR _variable_ AS ZIPCODE | |
|
||||||
|
| HEAR _variable_ AS "Abacate", "Maçã", "Morango" | Displays the specified menu and waits for this input until user select one of them. |
|
||||||
|
| HEAR _variable_ AS LANGUAGE | |
|
||||||
|
|
||||||
## How To
|
## How To
|
||||||
|
|
||||||
|
|
|
@ -30,12 +30,8 @@ Copy and paste on a PowerShell prompt with elavated privileges and when VSCode i
|
||||||
``` powershell
|
``` powershell
|
||||||
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
|
|
||||||
## Automatic installation by PowerShell
|
|
||||||
|
|
||||||
Execute the commands in sequence:
|
|
||||||
|
|
||||||
cinst git --confirm
|
cinst git --confirm
|
||||||
cinst nodejs --confirm --version=10.19.0
|
cinst nodejs --confirm --version=14.10.1
|
||||||
cinst vscode --confirm
|
cinst vscode --confirm
|
||||||
npm install windows-build-tools -g
|
npm install windows-build-tools -g
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue