Skip to content

Aliases pl PL

Reetus edited this page Sep 2, 2024 · 240 revisions

Lista komend makr

Utworzono na 02.09.2024 22:46:49
Wersja: 4.425.19+0c26057dbb7e7e285dbbb7378d1639f9d9112e29
Aru (ŁCh)

Aliasy

FindAlias

Sygnatura metody:

Boolean FindAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Zwraca "true" jeśli podany alias zostanie znaleziony na ekranie. Zwraca false w przypadku nie znalezienia.

Przykład:

if FindAlias("mount"):  

GetAlias

Sygnatura metody:

Int32 GetAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Zwraca wartość podanego aliasu.

Przykład:

GetAlias("mount")  

GetPlayerAlias

Sygnatura metody:

Int32 GetPlayerAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

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

Przykład:

GetPlayerAlias("mount")  

PromptAlias

Sygnatura metody:

Int32 PromptAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Wybiera za pomocą wbudowego w grę kursora szukania i przypisuje do podanego aliasu.

Przykład:

PromptAlias("mount")  

PromptMacroAlias

Sygnatura metody:

Int32 PromptMacroAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Prompt with an in-game target cursor to supply value for given alias name, alias is valid only in the current macro.

Przykład:

PromptMacroAlias("mount")  

PromptPlayerAlias

Sygnatura metody:

Int32 PromptPlayerAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

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

Przykład:

PromptPlayerAlias("mount")  

SetAlias

Sygnatura metody:

Void SetAlias(System.String, System.Object)

Parametry

  • aliasname: Nazwa aliasu.
  • obj: identyfikator lub liczba lub hex albo alias np 'self'.

Opis:

Ustawia wartość podanego aliasu.

Przykład:

SetAlias("mount", 0x40000001)  

SetMacroAlias

Sygnatura metody:

Void SetMacroAlias(System.String, System.Object)

Parametry

  • aliasname: Nazwa aliasu.
  • obj: identyfikator lub liczba lub hex albo alias np 'self'.

Opis:

Ustawia wartość podanego aliasu w obrębie skryptu.

Przykład:

SetMacroAlias("mount", 0x40000001)  

SetPlayerAlias

Sygnatura metody:

Void SetPlayerAlias(System.String, System.Object)

Parametry

  • aliasname: Nazwa aliasu.
  • obj: identyfikator lub liczba lub hex albo alias np 'self'.

Opis:

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

Przykład:

SetPlayerAlias("mount", 0x40000001)  

UnsetAlias

Sygnatura metody:

Void UnsetAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Usuwa podany alias.

Przykład:

UnsetAlias("mount")  

UnsetPlayerAlias

Sygnatura metody:

Void UnsetPlayerAlias(System.String)

Parametry

  • aliasname: Nazwa aliasu.

Opis:

Removes the alias name given, for the current player.

Przykład:

UnsetPlayerAlias("mount")  
Clone this wiki locally