Skip to content

Aliases cs CZ

Reetus edited this page Sep 2, 2024 · 98 revisions

Seznam příkazů ClassicAssist

Generováno na 02.09.2024 22:46:49
Verze: 4.425.19+0c26057dbb7e7e285dbbb7378d1639f9d9112e29
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")  
Clone this wiki locally