diff --git a/public/scripts/templates/macros.html b/public/scripts/templates/macros.html
index dbb50db80..44a108afd 100644
--- a/public/scripts/templates/macros.html
+++ b/public/scripts/templates/macros.html
@@ -72,6 +72,7 @@
Local variables = unique to the current chat
Global variables = works in any chat for any character
+Scoped variables = works in STscript
- {{getvar::name}} – replaced with the value of the local variable "name"
- {{setvar::name::value}} – replaced with empty string, sets the local variable "name" to "value"
@@ -83,4 +84,6 @@
- {{addglobalvar::name::value}} – replaced with empty string, adds a numeric value of "increment" to the global variable "name"
- {{incglobalvar::name}} – replaced with the result of the increment of value of the global variable "name" by 1
- {{decglobalvar::name}} – replaced with the result of the decrement of value of the global variable "name" by 1
+ - {{var::name}} – replaced with the value of the scoped variable "name"
+ - {{var::name::index}} – replaced with the value of item at index (for arrays / lists or objects / dictionaries) of the scoped variable "name"