Aliases cs CZ - Reetus/ClassicAssist GitHub Wiki

Seznam příkazů ClassicAssist

Generováno na 15.12.2024 3:30:41
Verze: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
PoodyCZ(Dorchaide)

Aliasy

FindAlias

Podpis metody:

Boolean FindAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Vrátí True pokud se alias nebo serial nachází na herní obrazovce.

Příklad:

if FindAlias("mount"):  

GetAlias

Podpis metody:

Int32 GetAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Získá hodnotu daného aliasu.

Příklad:

GetAlias("mount")  

GetPlayerAlias

Podpis metody:

Int32 GetPlayerAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Gets the value of the given alias name, for the current player.

Příklad:

GetPlayerAlias("mount")  

PromptAlias

Podpis metody:

Int32 PromptAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Vyzve ve hře kurzorem výběr hodnoty pro daný alias.

Příklad:

PromptAlias("mount")  

PromptMacroAlias

Podpis metody:

Int32 PromptMacroAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Vyzve ve hře kurzorem výběr hodnoty pro daný alias, který bude platný pouze v tomto makru.

Příklad:

PromptMacroAlias("mount")  

PromptPlayerAlias

Podpis metody:

Int32 PromptPlayerAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Prompt with an in-game target cursor to supply value for given alias name, for the current player.

Příklad:

PromptPlayerAlias("mount")  

SetAlias

Podpis metody:

Void SetAlias(System.String, System.Object)

Parametry

  • aliasname: Název aliasu.
  • obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".

Popis:

Nastaví hodnotu pro daný alias.

Příklad:

SetAlias("mount", 0x40000001)  

SetMacroAlias

Podpis metody:

Void SetMacroAlias(System.String, System.Object)

Parametry

  • aliasname: Název aliasu.
  • obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".

Popis:

Nastaví hodnotu pro daný alias, ta je platná pouze pro toto makro.

Příklad:

SetMacroAlias("mount", 0x40000001)  

SetPlayerAlias

Podpis metody:

Void SetPlayerAlias(System.String, System.Object)

Parametry

  • aliasname: Název aliasu.
  • obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".

Popis:

Sets the value of the given alias name, for the current player.

Příklad:

SetPlayerAlias("mount", 0x40000001)  

UnsetAlias

Podpis metody:

Void UnsetAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Odstraní hodnotu daného aliasu.

Příklad:

UnsetAlias("mount")  

UnsetPlayerAlias

Podpis metody:

Void UnsetPlayerAlias(System.String)

Parametry

  • aliasname: Název aliasu.

Popis:

Removes the alias name given, for the current player.

Příklad:

UnsetPlayerAlias("mount")