Skip to content

Movement 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.

이동

Follow

메서드 시그니처:

Void Follow(System.Object)

파라미터

  • obj: 정수 또는 16진수 형식의 실제 시리얼, 또는 "self"와 같은 이름 문자열. (옵션)

설명:

Instructs ClassicUO to follow the specified alias/serial, supply no parameter to cancel

예시:

if FindObject('enemy'):
 Follow('enemy')
 Attack('enemy')
else:
 Follow() # stop following
Pause(1000)  

Following

메서드 시그니처:

Boolean Following()

설명:

Returns True if currently following a target

예시:

if not Following():
 Follow('enemy')  

Pathfind

메서드 시그니처:

Boolean Pathfind(System.Object)

파라미터

  • obj: 정수 또는 16진수 형식의 실제 시리얼, 또는 "self"와 같은 이름 문자열.

설명:

클라이언트에게 주어진 좌표(coordinates)/Entity에 대한 경로 찾기를 요청합니다.

예시:

#Pathfind to coordinates
Pathfind(1438, 1630, 20)

#Pathfind to entity
SetEnemy(0x3c9)
Pathfind('enemy')

# Cancel pathfind in progress
Pathfind(-1)  

Pathfind

메서드 시그니처:

Boolean Pathfind(Int32, Int32, Int32)

파라미터

  • x: X 좌표.
  • y: Y 좌표.
  • z: Z 좌표.

설명:

클라이언트에게 주어진 좌표(coordinates)/Entity에 대한 경로 찾기를 요청합니다.

예시:

#Pathfind to coordinates
Pathfind(1438, 1630, 20)

#Pathfind to entity
SetEnemy(0x3c9)
Pathfind('enemy')

# Cancel pathfind in progress
Pathfind(-1)  

Pathfinding

메서드 시그니처:

Boolean Pathfinding()

설명:

Returns True if ClassicUO is currently pathfinding

예시:

Pathfind('enemy')
Pause(25) # there is a delay between calling Pathfind() and Pathfinding() being True

while Pathfinding():
 Pause(50)
 
HeadMsg("die scum", "self")  

Run

메서드 시그니처:

Boolean Run(System.String)

파라미터

  • direction: 방향 예시) "서쪽". 참조: Direction

설명:

동쪽 방향으로 달린다.

예시:

Run("east")  

SetForceWalk

메서드 시그니처:

Void SetForceWalk(Boolean)

설명:

포스 걷기 설정

예시:

SetForceWalk(True)  

ToggleForceWalk

메서드 시그니처:

Void ToggleForceWalk()

설명:

포스 걷기 토글

예시:

ToggleForceWalk()  

Turn

메서드 시그니처:

Void Turn(System.String)

파라미터

  • direction: 방향 예시) "서쪽". 참조: Direction

설명:

동쪽 방향으로 돕니다.

예시:

Turn("east")  

Walk

메서드 시그니처:

Boolean Walk(System.String)

파라미터

  • direction: 방향 예시) "서쪽".

설명:

동쪽 방향으로 걷습니다.

예시:

Walk("east")  

타입

Direction

  • North
  • Northeast
  • East
  • Southeast
  • South
  • Southwest
  • West
  • Northwest
  • Invalid
Clone this wiki locally