Agents 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)
Agenti
Autoloot
Podpis metody:
Void Autoloot(System.Object)
Parametry
- obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".
Popis:
Causes autoloot to check a particular container, even when not enabled, and bypassing the corpse type check
Příklad:
Autoloot("found")
Autolooting
Podpis metody:
Boolean Autolooting()
Popis:
Returns True if currently checking corpse / autolooting items.
Příklad:
if Autolooting():
ClearTrapPouch
Podpis metody:
Void ClearTrapPouch()
Popis:
Clears the items in the trap pouch agent...
Příklad:
ClearTrapPouch()
Counter
Podpis metody:
Int32 Counter(System.String)
Parametry
- name: Název agenta.
Popis:
Vrátí počet daného počítadla.
Příklad:
Counter("bm")
Dress
Podpis metody:
Void Dress(System.String)
Parametry
- name: Název agenta. (Volitelný)
Popis:
Oblékne všechny předměty definované v agentu oblékání.
Příklad:
Dress("Dress-1")
DressConfig
Podpis metody:
Void DressConfig()
Popis:
Přidá všechny oblečené předměty do dočasného seznamu, který je po vypnutí klienta smazán.
Příklad:
DressConfig()
Dressing
Podpis metody:
Boolean Dressing()
Popis:
Vrátí True pokud agent oblékání právě obléká nebo svléká.
Příklad:
if Dressing():
Organizer
Podpis metody:
Void Organizer(System.String, System.Object, System.Object)
Parametry
- name: Název agenta.
- sourcecontainer: Serial entinty jako číslo nebo hex, nebo alias jako např. "self". (Volitelný)
- destinationcontainer: Serial entinty jako číslo nebo hex, nebo alias jako např. "self". (Volitelný)
Popis:
Spustí agenta organizování.
Příklad:
Organizer("Organizer-1")
Organizing
Podpis metody:
Boolean Organizing()
Popis:
Vrátí True pokud právě běží agent organizování.
Příklad:
if Organizing():
SetAutolootContainer
Podpis metody:
Void SetAutolootContainer(System.Object)
Parametry
- obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".
Popis:
Nastaví kontejner pro autoloot agenta.
Příklad:
SetAutolootContainer("backpack")
SetOrganizerContainers
Podpis metody:
Void SetOrganizerContainers(System.String, System.Object, System.Object)
Parametry
- entryname: Název agenta.
- sourcecontainer: Serial entinty jako číslo nebo hex, nebo alias jako např. "self". (Volitelný)
- destinationcontainer: Serial entinty jako číslo nebo hex, nebo alias jako např. "self". (Volitelný)
Popis:
Nastaví zdroj a cíl pro daný organizér
Příklad:
SetOrganizerContainers("Organizer-1", "backpack", "bank")
SetScavenger
Podpis metody:
Void SetScavenger(System.String)
Parametry
- onoff: "on" nebo "off". (Volitelný)
Popis:
Enable/Disable/Toggle the Scavenger agent
Příklad:
SetScavenger("off")
SetTrapPouch
Podpis metody:
Void SetTrapPouch(System.Object)
Parametry
- obj: Serial entinty jako číslo nebo hex, nebo alias jako např. "self".
Popis:
Adds the specified item to the trap pouch agent item list...
Příklad:
ClearTrapPouch()
if FindType(0xe79, -1, 'backpack'):
Cast('Magic Trap', 'found')
SetTrapPouch('found')
SetVendorBuyAutoBuy
Podpis metody:
Void SetVendorBuyAutoBuy(System.String, System.String)
Parametry
- listname: Název seznamu.
- onoff: "on" nebo "off". (Volitelný)
Popis:
Zapne nebo vypne automatické nakupování od daného vendora...
Příklad:
# zapnout
SetVendorBuyAutoBuy("regs", "on")
# vypnout
SetVendorBuyAutoBuy("regs", "off")
# přepne on/off
SetVendorBuyAutoBuy("regs")
StopDress
Podpis metody:
Void StopDress()
Popis:
Stops the dress agent is it is currently running
Příklad:
StopDress()
StopOrganizer
Podpis metody:
Void StopOrganizer()
Popis:
Stops the organizer agent if currently running
Příklad:
StopOrganizer()
Undress
Podpis metody:
Void Undress(System.String)
Parametry
- name: Název agenta.
Popis:
Svlékne všechny předměty definované v agentu oblékání.
Příklad:
Undress("Dress-1")
UseTrapPouch
Podpis metody:
Void UseTrapPouch()
Popis:
Uses the first item in the Trap Pouch agent list...
Příklad:
UseTrapPouch()