Difference between revisions of "Translations:Manual:Introduction/208/ru"

From Mudlet
Jump to navigation Jump to search
(Created page with "Чтобы отправить сразу несколько действий, используйте sendAll(): <syntaxhighlight lang="...")
 
(Updating translation from gettext import)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Чтобы отправить сразу несколько действий, используйте [[Manual:Networking_Functions#sendAll|sendAll()]]:
+
Для отправки последовательности действий используйте [[Manual:Networking_Functions#sendAll|sendAll()]]:
<syntaxhighlight lang="lua">sendAll("атаковать, "колдовать магическую стрелу")</syntaxhighlight>
+
<syntaxhighlight lang="lua">sendAll("attack", "cast magic missile")</syntaxhighlight>

Latest revision as of 01:00, 23 June 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Manual:Introduction)
To send many actions, use [[Manual:Networking_Functions#sendAll|sendAll()]]:
<syntaxhighlight lang="lua">sendAll("attack", "cast magic missile")</syntaxhighlight>

Для отправки последовательности действий используйте sendAll():

sendAll("attack", "cast magic missile")