Skip to content

Macros ko KR

Reetus edited this page Sep 2, 2024 · 240 revisions

클래식어시스트 매크로 명령어

생성된 2024-09-02 오후 10:46:49
버전: 4.425.19+0c26057dbb7e7e285dbbb7378d1639f9d9112e29
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()  
Clone this wiki locally