Aliases pl PL - Reetus/ClassicAssist GitHub Wiki
Lista komend makr
Utworzono na 15.12.2024 03:30:41
Wersja: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
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")