buyAuto — различия между версиями

Материал из Руководство по OpenKore
Перейти к: навигация, поиск
(Новая страница: «Этот блочный параметр конфига, который можно упоминать в конфиге несколько раз, позволяет…»)
 
Строка 21: Строка 21:
  
 
; maxAmount (<amount>)
 
; maxAmount (<amount>)
: Этот атрибут хранит максимальное желаемое количество предмета определнного параметром конфига, которое должно находиться в инвентаре. This option specifies the maximum amount of item in inventory that you need. Kore will buy an amount equal to the difference between the specified maximum amount and the current amount in inventory.
+
: Максимальное количество предмета в инвентаре, OpenKore будет докупать недостающее количество предмета у неписи.
  
  

Версия 02:14, 13 февраля 2010

Этот блочный параметр конфига, который можно упоминать в конфиге несколько раз, позволяет настроить автоматическую скупку предметов у неписей.

Правописание

buyAuto [<item name>] {
        maxAmount (<amount>)
        minAmount [<amount>]
        npc (<map name> <x> <y>)
        distance [<number>]
        standpoint [<map name> <x> <y>]
        zeny [<amount>]

        # Self Conditions
}

Описание атрибутов


buyAuto [<item name>]
В параметре конфига пишется имя предмета, который нужно автоматически скупать у неписей.


maxAmount (<amount>)
Максимальное количество предмета в инвентаре, OpenKore будет докупать недостающее количество предмета у неписи.


minAmount [<amount>]
If this option is set, this specifies the minimum amount of item in inventory before the auto-buy sequence is automatically triggered. Kore will go to the NPC when the number of the specified items left in inventory is less than or equal to this amount.
Note:
  • If you don't want Kore to automatically go back to town to buy this item, but you DO want Kore to buy this item when it's in town for another reason, then leave minAmount empty.
  • Once Kore is in auto-buy sequence, Kore will automatically check the rest of the buyAuto blocks if you need to buy the items specified in those blocks.


npc (<map name> <x> <y>)
This option specifies the location of a buy/sell NPC that sells the item. This NPC must have the item available for purchase.


distance (<number>)
This option specifies how far Kore will stand from the item buy/sell NPC during auto-buy.


standpoint [<map name> <x> <y>]
If this option is set, Kore will stand on the specified location when buying this item instead of anywhere near the item buy/sell NPC itself. The attribute distance will be ignored.


zeny [<range>]
If this option is set, the item will only be bought if your zeny is within the specified range.


Examples

  • Go to town to buy 70 Orange Potions when there are no more in the inventory.
buyAuto Orange Potion {
	maxAmount 70
	minAmount 0
	npc morocc 147 102
	distance 8
}
  • Buy 100 Red Potions when Kore is in a town
buyAuto Red Potion {
	maxAmount 100
	minAmount
	npc morocc 147 102
	distance 8
}