summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-08-17 02:09:38 +0300
committerAndrei Karas <akaras@inbox.ru>2016-08-17 02:09:38 +0300
commit9f86b6cbe21f8ca3a1d06b1353f071cf5b23d08b (patch)
treee2e800fe0927299577a1008fd7fd0ced4a0d5b26
parenta4671dd478e58c7653e34d2cec17bc5786c63d28 (diff)
downloaddocs-9f86b6cbe21f8ca3a1d06b1353f071cf5b23d08b.tar.gz
docs-9f86b6cbe21f8ca3a1d06b1353f071cf5b23d08b.tar.bz2
docs-9f86b6cbe21f8ca3a1d06b1353f071cf5b23d08b.tar.xz
docs-9f86b6cbe21f8ca3a1d06b1353f071cf5b23d08b.zip
Add getlabel and tolabel into evol script commands file.s20160820
-rw-r--r--server/scripts/evol_script_commands.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/server/scripts/evol_script_commands.txt b/server/scripts/evol_script_commands.txt
index 21f3131..3e70ae6 100644
--- a/server/scripts/evol_script_commands.txt
+++ b/server/scripts/evol_script_commands.txt
@@ -883,3 +883,22 @@ Example:
setfakecells 25, 45, 29, 50, 0; // allow
---------------------------------------
+
+*getlabel label
+
+Get label and return int.
+
+Example:
+ .@var = getlabel(OnInit);
+
+---------------------------------------
+
+*tolabel num
+
+Get number and return label.
+
+Example:
+ goto tolabel(.@var);
+
+---------------------------------------
+