Macros ko KR - Reetus/ClassicAssist GitHub Wiki
ํด๋์์ด์์คํธ ๋งคํฌ๋ก ๋ช ๋ น์ด
์์ฑ๋ 2024-12-15 ์ค์ 3:30:41
๋ฒ์ : 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
Translated by Mark Hunt & Andy H.
๋งคํฌ๋ก
IsRunning
๋ฉ์๋ ์๊ทธ๋์ฒ:
Boolean IsRunning(System.String)
ํ๋ผ๋ฏธํฐ
- name: ๋งคํฌ๋ก ์ด๋ฆ.
์ค๋ช :
์คํ์ค_๋ช ๋ น_์ค๋ช
์์:
if IsRunning('macro'):
PlayCUOMacro
๋ฉ์๋ ์๊ทธ๋์ฒ:
Void PlayCUOMacro(System.String)
ํ๋ผ๋ฏธํฐ
- name: ๋งคํฌ๋ก ์ด๋ฆ.
์ค๋ช :
Plays the specified CUO macro name
์์:
PlayCUOMacro('Paperdoll')
PlayMacro
๋ฉ์๋ ์๊ทธ๋์ฒ:
Void PlayMacro(System.String, System.Object[])
ํ๋ผ๋ฏธํฐ
- name: ๋งคํฌ๋ก ์ด๋ฆ.
- args: Comma seperated list of parameters.
์ค๋ช :
์ฃผ์ด์ง ์ด๋ฆ์ ๋งคํฌ๋ก๋ฅผ ์ฌ์ํฉ๋๋ค.
์์:
# Play another macro
PlayMacro("beep")
# Play another macro passing parameters to it
PlayMacro("beep", 1, "moo")
# In the played macro, args[0] will be 1 and args[1] will be "moo"
Replay
๋ฉ์๋ ์๊ทธ๋์ฒ:
Void Replay(System.Object[])
ํ๋ผ๋ฏธํฐ
- args: Comma seperated list of parameters.
์ค๋ช :
ํ์ฌ ๋งคํฌ๋ก ์ฌ์ํฉ๋๋ค.
์์:
Replay()
Stop
๋ฉ์๋ ์๊ทธ๋์ฒ:
Void Stop(System.String)
ํ๋ผ๋ฏธํฐ
- name: ๋งคํฌ๋ก ์ด๋ฆ. (์ต์ )
์ค๋ช :
ํ์ฌ ๋งคํฌ๋ก๋ฅผ ์ค์งํฉ๋๋ค.
์์:
# Stop the current macro
Stop()
# Stop a macro by name
Stop("Background Macro")
StopAll
๋ฉ์๋ ์๊ทธ๋์ฒ:
Void StopAll()
์ค๋ช :
์คํ์ค์ธ ๋ชจ๋ ๋งคํฌ๋ก๋ฅผ ์ค์งํฉ๋๋ค.
์์:
StopAll()