Difference between revisions of "Translations:Manual:Introduction/107/en"

From Mudlet
Jump to navigation Jump to search
(Importing a new version from external source)
 
(Importing a new version from external source)
 
Line 1: Line 1:
# In data field "0" write: <syntaxhighlight lang="lua">^(.+) drops (.+)\.$</syntaxhighlight>
+
# In data field "1" write: <syntaxhighlight lang="lua">^(.+) drops (.+)\.$</syntaxhighlight>
 
# Select '''perl regex''' type pattern again
 
# Select '''perl regex''' type pattern again
 
# Below write the lua code: <syntaxhighlight lang="lua">send("take " .. matches[3])</syntaxhighlight>
 
# Below write the lua code: <syntaxhighlight lang="lua">send("take " .. matches[3])</syntaxhighlight>

Latest revision as of 23:30, 14 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)
# In data field "1" write: <syntaxhighlight lang="lua">^(.+) drops (.+)\.$</syntaxhighlight>
# Select '''perl regex''' type pattern again
# Below write the lua code: <syntaxhighlight lang="lua">send("take " .. matches[3])</syntaxhighlight>
  1. In data field "1" write:
    ^(.+) drops (.+)\.$
  2. Select perl regex type pattern again
  3. Below write the lua code:
    send("take " .. matches[3])