Agents pl PL - Reetus/ClassicAssist GitHub Wiki

Lista komend makr

Utworzono na 15.12.2024 03:30:41
Wersja: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
Aru (ŁCh)

Agenci

Autoloot

Sygnatura metody:

Void Autoloot(System.Object)

Parametry

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

Opis:

Causes autoloot to check a particular container, even when not enabled, and bypassing the corpse type check

Przykład:

Autoloot("found")  

Autolooting

Sygnatura metody:

Boolean Autolooting()

Opis:

Returns True if currently checking corpse / autolooting items.

Przykład:

if Autolooting():  

ClearTrapPouch

Sygnatura metody:

Void ClearTrapPouch()

Opis:

Clears the items in the trap pouch agent...

Przykład:

ClearTrapPouch()  

Counter

Sygnatura metody:

Int32 Counter(System.String)

Parametry

  • name: Nazwa agenta.

Opis:

Zwraca obecną liczbę z licznika podanego agenta zliczania (Counter Agent).

Przykład:

Counter("bm")  

Dress

Sygnatura metody:

Void Dress(System.String)

Parametry

  • name: Nazwa agenta. (Opcjonalny)

Opis:

Zakłada wszystkie przedmioty z wybranego agenra ubioru (Dress Agent).

Przykład:

Dress("Dress-1")  

DressConfig

Sygnatura metody:

Void DressConfig()

Opis:

Dodaje wszystkie założone przedmioty to temporalnej listy, która nie jest persystentna. Po zamknięciu klienta lista jest niszczona.

Przykład:

DressConfig()  

Dressing

Sygnatura metody:

Boolean Dressing()

Opis:

Zwraca "true" jeżeli agent ubioru obecnie wykonuje czynność zakładania/zdejmowania.

Przykład:

if Dressing():  

Organizer

Sygnatura metody:

Void Organizer(System.String, System.Object, System.Object)

Parametry

  • name: Nazwa agenta.
  • sourcecontainer: identyfikator lub liczba lub hex albo alias np 'self'. (Opcjonalny)
  • destinationcontainer: identyfikator lub liczba lub hex albo alias np 'self'. (Opcjonalny)

Opis:

Wykonuje wybranego agenta organizacji.

Przykład:

Organize("Organizer-1")  

Organizing

Sygnatura metody:

Boolean Organizing()

Opis:

Zwraca "true" jeżeli obecnie jest uruchomiony agnet organizacji.

Przykład:

if Organizing():  

SetAutolootContainer

Sygnatura metody:

Void SetAutolootContainer(System.Object)

Parametry

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

Opis:

Ustawia kontener przechowywania obiektów dla agenta autoloot.

Przykład:

SetAutolootContainer("backpack")  

SetOrganizerContainers

Sygnatura metody:

Void SetOrganizerContainers(System.String, System.Object, System.Object)

Parametry

  • entryname: Nazwa agenta.
  • sourcecontainer: identyfikator lub liczba lub hex albo alias np 'self'. (Opcjonalny)
  • destinationcontainer: identyfikator lub liczba lub hex albo alias np 'self'. (Opcjonalny)

Opis:

Ustaw źródło i cel dla konkretnej nazwy organizera

Przykład:

SetOrganizerContainers("Organizer-1", "backpack", "bank")  

SetScavenger

Sygnatura metody:

Void SetScavenger(System.String)

Parametry

  • onoff: "on" lub "off". (Opcjonalny)

Opis:

Enable/Disable/Toggle the Scavenger agent

Przykład:

SetScavenger("off")  

SetTrapPouch

Sygnatura metody:

Void SetTrapPouch(System.Object)

Parametry

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

Opis:

Adds the specified item to the trap pouch agent item list...

Przykład:

ClearTrapPouch()

if FindType(0xe79, -1, 'backpack'):
    Cast('Magic Trap', 'found')
    SetTrapPouch('found')  

SetVendorBuyAutoBuy

Sygnatura metody:

Void SetVendorBuyAutoBuy(System.String, System.String)

Parametry

  • listname: Nazwa listy.
  • onoff: "on" lub "off". (Opcjonalny)

Opis:

Włącza lub wyłącza autokupowanie z podanej nazwy listy zakupów dla wybranego vendora

Przykład:

# set on
SetVendorBuyAutoBuy("regs", "on")
# set off
SetVendorBuyAutoBuy("regs", "off")
# default will toggle
SetVendorBuyAutoBuy("regs")  

StopDress

Sygnatura metody:

Void StopDress()

Opis:

Stops the dress agent is it is currently running

Przykład:

StopDress()  

StopOrganizer

Sygnatura metody:

Void StopOrganizer()

Opis:

Stops the organizer agent if currently running

Przykład:

StopOrganizer()  

Undress

Sygnatura metody:

Void Undress(System.String)

Parametry

  • name: Nazwa agenta.

Opis:

Zdejmij wszystkie przedmioty podanego agenta ubioru.

Przykład:

Undress("Dress-1")  

UseTrapPouch

Sygnatura metody:

Void UseTrapPouch()

Opis:

Uses the first item in the Trap Pouch agent list...

Przykład:

UseTrapPouch()