summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-05 16:56:50 +0000
committerAndrei Karas <akaras@inbox.ru>2016-09-05 16:56:50 +0000
commit3c2af22cef34c4c6a4b5616ecc1e68faddb63f8a (patch)
tree7225e4cb53dc36abb518517e0705a591cfe8e7b3
parent344c04b4bb1efb296799ce3109490c8c83066021 (diff)
parentaf7ed77089da7766b15b7de743b757b8181964c2 (diff)
downloaddocs-3c2af22cef34c4c6a4b5616ecc1e68faddb63f8a.tar.gz
docs-3c2af22cef34c4c6a4b5616ecc1e68faddb63f8a.tar.bz2
docs-3c2af22cef34c4c6a4b5616ecc1e68faddb63f8a.tar.xz
docs-3c2af22cef34c4c6a4b5616ecc1e68faddb63f8a.zip
Merge branch 'slide' into 'master' s20160911
add documentation for the `slide` buildin See merge request !2
-rw-r--r--server/scripts/evol_script_commands.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/server/scripts/evol_script_commands.txt b/server/scripts/evol_script_commands.txt
index 108147c..5d5a6c9 100644
--- a/server/scripts/evol_script_commands.txt
+++ b/server/scripts/evol_script_commands.txt
@@ -918,3 +918,14 @@ Example:
---------------------------------------
+*slide x, y;
+
+Moves a player within the same map.
+If warping players on a map where they already are, you should always prefer
+slide over warp, as warp makes the client reload and re-render the whole map
+while slide just tells the client to reposition the character.
+
+Example:
+ slide 25, 194;
+
+---------------------------------------