Difference between revisions of "Translations:Manual:Introduction/204/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)
<syntaxhighlight lang="lua">
-- this code will let you go north immediately, then go east after 2 seconds 
send("n")
tempTimer(2, [[ send("e") ]])
</syntaxhighlight>
-- 이 코드는 즉시 북쪽으로 이동한 다음, 2초 후에 동쪽으로 이동합니다. 
send("n")
tempTimer(2, [[ send("e") ]])