Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion streamerbot/3.api/1.sub-actions/core/globals/global-get.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ parameters:
It is recommended to use a **different name** than the global variable name
::

::warning{variant=link}
::warning
This is the **name** of the destination variable, which means it should not be wrapped in `%` symbols unless you specifically want to use the **value** of a local variable in the **name** of your destination variable
::

Expand Down
1 change: 1 addition & 0 deletions streamerbot/3.api/3.csharp/.parameters/core/platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ description: |
- `Platform.Twitch`
- `Platform.YouTube`
- `Platform.Trovo`
- `Platform.Kick`
value: Platform.Twitch
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: connection
description: |
Default: `0`

The index of the WebSocket Client

Zero-indexed based on the order you see in `Servers/Clients > WebSocket Clients`<br>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
---
name: connection
description: |
The index of the WebSocket Server

Zero-indexed based on the order you see in `Servers/Clients > WebSocket Servers`<br>
e.g. The first server in the list is `0`, the second server in the list is `1`, and so on...
default: 0
---
default: 0
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Add a user, by username (login name), to a group
version: 0.2.3
parameters:
- name: userName
import: core/username
import: core/users/username
- name: platform
import: core/platform
- name: groupName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Remove a user, by username (login name), from a group
version: 0.2.3
parameters:
- name: userName
import: core/username
import: core/users/username
- name: platform
import: core/platform
- name: groupName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Check if a user, by username (login name), is a member of a group
version: 0.2.3
parameters:
- name: userName
import: core/username
import: core/users/username
- name: platform
import: core/platform
- name: groupName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ parameters:
JSON must be stringified.
default: '"Hello, world!"'
- name: connection
import: core/websocket/custom-servers/connection
import: websocket/custom-servers/connection
example: |
using System;
public class CPHInline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parameters:
- name: rewardId
import: twitch/rewards/id
- name: userName
import: core/username
import: core/users/username
example: |
using System;
public class CPHInline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: GetTwitchUserVar
description: Get the value of a user global variable for a specific Twitch user, by username
parameters:
- name: userName
import: core/username
import: core/users/username
- name: varName
import: core/globals/name
- name: persisted
Expand Down
Loading