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

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

Latest revision as of 01:05, 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)
# In the data field titled "1" write the following '''perl regex''' type pattern: <syntaxhighlight lang="lua">^The skeleton drops (.+)\.$</syntaxhighlight>
# Make sure to change the dropdown menu for this line to "perl regex" as well
# In the big script box below write the following lua code: <syntaxhighlight lang="lua">send("take " .. matches[2])</syntaxhighlight>
  1. "1"이라는 데이터 필드에 다음과 같은 perl regex 타입 패턴을 작성하세요:
    ^The skeleton drops (.+)\.$
  2. 이 줄의 드롭다운 메뉴도 "perl regex"로 변경하세요.
  3. 아래 큰 스크립트 상자에 다음 lua 코드를 작성하세요:
    send("take " .. matches[2])