diff --git a/doc/manual_DE.lua b/doc/manual_DE.lua index aca5671..c6a3caf 100644 --- a/doc/manual_DE.lua +++ b/doc/manual_DE.lua @@ -1731,6 +1731,11 @@ techage.manual_DE.aText = { " - 'b2a' Bewege Block von B nach A\n".. " - 'move' Bewege Block auf die andere Seite\n".. "\n".. + "Über das Schraubenschlüssel-Menü kann auf die Betriebsart 'move xyz' umgeschaltet werden. Nach der Umschaltung werden folgende techage Kommandos unterstützt:\n".. + "\n".. + " - 'move2' Beim Kommando muss zusätzlich die Flugstrecke als x\\,y\\,z Vektor angegeben werden.\nBeispiel Lua Controller: '$send_cmnd(MOVE_CTLR\\, \"move2\"\\, \"0\\,12\\,0\")'\n".. + " - 'reset' Block/Blöcke zurück in Startposition bewegen\n".. + "\n".. "*Wichtige Hinweise:*\n".. "\n".. " - Sofern mehrere Blöcke bewegt werden sollen\\, muss der Block\\, der die Spieler/Mobs mitnehmen soll\\, beim Antrainieren als erstes angeklickt werden.\n".. diff --git a/doc/manual_EN.lua b/doc/manual_EN.lua index 59bd74d..a1dc60d 100644 --- a/doc/manual_EN.lua +++ b/doc/manual_EN.lua @@ -1736,6 +1736,11 @@ techage.manual_EN.aText = { " - 'b2a' Move block from B to A.\n".. " - 'move' Move block to the other side\n".. "\n".. + "You can switch to the 'move xyz' operating mode via the wrench menu. After switching\\, the following techage commands are supported: \n".. + "\n".. + " - 'move2' With the command\\, the flight route must also be specified as an x\\,y\\,z vector.\nExample Lua Controller: '$send_cmnd(MOVE_CTLR\\, \"move2\"\\, \"0\\,12\\,0\")'\n".. + " - 'reset' move block(s) back to start position\n".. + "\n".. "*Important instructions:*\n".. "\n".. " - If several blocks are to be moved\\, the block that is to take the players/mobs must be clicked first when training.\n".. diff --git a/manuals/manual_ta4_DE.md b/manuals/manual_ta4_DE.md index c534aa7..a6806f5 100644 --- a/manuals/manual_ta4_DE.md +++ b/manuals/manual_ta4_DE.md @@ -585,6 +585,12 @@ Der Move Controller unterstützt folgende techage Kommandos: - `b2a` Bewege Block von B nach A - `move` Bewege Block auf die andere Seite +Über das Schraubenschlüssel-Menü kann auf die Betriebsart `move xyz` umgeschaltet werden. Nach der Umschaltung werden folgende techage Kommandos unterstützt: + +- `move2` Beim Kommando muss zusätzlich die Flugstrecke als x,y,z Vektor angegeben werden. + Beispiel Lua Controller: `$send_cmnd(MOVE_CTLR, "move2", "0,12,0")` +- `reset` Block/Blöcke zurück in Startposition bewegen + **Wichtige Hinweise:** - Sofern mehrere Blöcke bewegt werden sollen, muss der Block, der die Spieler/Mobs mitnehmen soll, beim Antrainieren als erstes angeklickt werden. diff --git a/manuals/manual_ta4_EN.md b/manuals/manual_ta4_EN.md index d15f18f..20ef988 100644 --- a/manuals/manual_ta4_EN.md +++ b/manuals/manual_ta4_EN.md @@ -576,6 +576,12 @@ The Move Controller supports the following techage commands: - `b2a` Move block from B to A. - `move` Move block to the other side +You can switch to the `move xyz` operating mode via the wrench menu. After switching, the following techage commands are supported: + +- `move2` With the command, the flight route must also be specified as an x,y,z vector. + Example Lua Controller: `$send_cmnd(MOVE_CTLR, "move2", "0,12,0")` +- `reset` move block(s) back to start position + **Important instructions:** - If several blocks are to be moved, the block that is to take the players/mobs must be clicked first when training. diff --git a/manuals/ta4_lua_controller_EN.md b/manuals/ta4_lua_controller_EN.md index 5387272..11b9e71 100644 --- a/manuals/ta4_lua_controller_EN.md +++ b/manuals/ta4_lua_controller_EN.md @@ -406,7 +406,7 @@ Please note, that this is not a technical distinction, only a logical. | "a2b" | nil | TA4 Move Controller command to move the block(s) from position A to B | | "b2a" | nil | TA4 Move Controller command to move the block(s) from position B to A | | "move" | nil | TA4 Move Controller command to move the block(s) to the opposite position | -| "move2" | x,y,z | TA4 Move Controller command to move the block(s) by the given
x/y/z-distance. Valid ranges for x, y, and z are -100 to 100. | +| "move2" | x,y,z | TA4 Move Controller command to move the block(s) by the given
x/y/z-distance. Valid ranges for x, y, and z are -100 to 100.
Example: `$send_cmnd("1674", "move2", "0,4,0")` | | "reset" | nil | Reset TA4 Move Controller (move block(s) to start position) | | "left" | nil | TA4 Turn Controller command to turn the block(s) to the left | | "right" | nil | TA4 Turn Controller command to turn the block(s) to the right |