Journal ko KR - Reetus/ClassicAssist GitHub Wiki

ν΄λž˜μ‹μ–΄μ‹œμŠ€νŠΈ 맀크둜 λͺ…λ Ήμ–΄

μƒμ„±λœ 2024-12-15 μ˜€μ „ 3:30:41
버전: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
Translated by Mark Hunt & Andy H.

저널

ClearJournal

λ©”μ„œλ“œ μ‹œκ·Έλ‹ˆμ²˜:

Void ClearJournal()

μ„€λͺ…:

λͺ¨λ“  저널 ν…μŠ€νŠΈλ₯Ό μ‚­μ œν•©λ‹ˆλ‹€.

μ˜ˆμ‹œ:

ClearJournal()  

InJournal

λ©”μ„œλ“œ μ‹œκ·Έλ‹ˆμ²˜:

Boolean InJournal(System.String, System.String, Int32, Int32)

νŒŒλΌλ―Έν„°

  • text: λ¬Έμžμ—΄ κ°’ - μ‚¬μš© 방법에 λŒ€ν•œ μ„€λͺ…을 λ³΄μ„Έμš”.
  • author: λ¬Έμžμ—΄ κ°’ - μ‚¬μš© 방법에 λŒ€ν•œ μ„€λͺ…을 λ³΄μ„Έμš”. (μ˜΅μ…˜)
  • hue: 아이탬 색쑰 λ˜λŠ” λͺ¨λ“  값에 -1. (μ˜΅μ…˜)
  • timeout: milliseconds μ§€μ •λœ μ‹œκ°„μ΄ˆκ³Όλ¨. (μ˜΅μ…˜)

μ„€λͺ…:

μ €λ„μ˜ ν…μŠ€νŠΈ (선택적 μ†ŒμŠ€ 이름)λ₯Ό ν™•μΈν•©λ‹ˆλ‹€.

μ˜ˆμ‹œ:

if InJournal("town guards", "system"):  

WaitForJournal

λ©”μ„œλ“œ μ‹œκ·Έλ‹ˆμ²˜:

System.ValueTuple2[System.Nullable1[System.Int32],System.String] WaitForJournal(System.Collections.Generic.IEnumerable`1[System.String], Int32, System.String)

νŒŒλΌλ―Έν„°

  • entries: λ§€κ°œλ³€μˆ˜_μ„€λͺ…_λ¬Έμžμ—΄ λ°°μ—΄.
  • timeout: milliseconds μ§€μ •λœ μ‹œκ°„μ΄ˆκ³Όλ¨.
  • author: λ¬Έμžμ—΄ κ°’ - μ‚¬μš© 방법에 λŒ€ν•œ μ„€λͺ…을 λ³΄μ„Έμš”. (μ˜΅μ…˜)

μ„€λͺ…:

Wait up the given timeout for one of any of provided array of string to appear in journal

μ˜ˆμ‹œ:

(idx, text) = WaitForJournal(['sex', 'drugs'], 5000)

if idx != None:
 print "Found text '{}' at index {}".format(text, idx)
else:
 print 'None of them were found :('  

WaitForJournal

λ©”μ„œλ“œ μ‹œκ·Έλ‹ˆμ²˜:

Boolean WaitForJournal(System.String, Int32, System.String, Int32)

νŒŒλΌλ―Έν„°

  • text: λ¬Έμžμ—΄ κ°’ - μ‚¬μš© 방법에 λŒ€ν•œ μ„€λͺ…을 λ³΄μ„Έμš”.
  • timeout: milliseconds μ§€μ •λœ μ‹œκ°„μ΄ˆκ³Όλ¨.
  • author: λ¬Έμžμ—΄ κ°’ - μ‚¬μš© 방법에 λŒ€ν•œ μ„€λͺ…을 λ³΄μ„Έμš”. (μ˜΅μ…˜)
  • hue: 아이탬 색쑰 λ˜λŠ” λͺ¨λ“  값에 -1. (μ˜΅μ…˜)

μ„€λͺ…:

저널 ν…μŠ€νŠΈκ°€ λ‚˜νƒ€λ‚  λ•ŒκΉŒμ§€ 주어진 μ‹œκ°„ μ’…λ£Œλ₯Ό κΈ°λ‹€λ¦¬μ‹­μ‹œμ˜€.

μ˜ˆμ‹œ:

if WaitForJournal("town guards", 5000, "system"):