Difference between revisions of "Translations:Manual:Introduction/193/ko"

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(No difference)

Latest revision as of 01:06, 17 February 2024

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)
'''Mud syntax''': ''get coins from corpse'' and also ''get coins from corpse 3''.
'''Alias Pattern''': '''^gcc(?:\s(\d+))?$''' (can accept simply ''gcc'' and also ''gcc 3'' for example).
<syntaxhighlight lang="lua">
send("get coins from corpse " .. (matches[2] or "") )
</syntaxhighlight>

Mud syntax: get coins from corpse and also get coins from corpse 3. Alias Pattern: ^gcc(?:\s(\d+))?$ (can accept simply gcc and also gcc 3 for example).

send("get coins from corpse " .. (matches[2] or "") )