Moderator: MacroQuest Developers
Code: Select all
#include common/bazaarbuy.inc
#include common/buy.inc
#include common/gogetitem.inc
Sub Main
/declare ItemToBuy string inner
/declare HighestPriceToPay int inner
/declare TotalYouWant int inner
:start
/varset ItemToBuy "Mudflow Stone"
/varset HighestPriceToPay 1000000
/varset TotalYouWant 1
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy mudflow stone for 1kpp
/varset ItemToBuy "sphalerite"
/varset HighestPriceToPay 1000000
/varset TotalYouWant 1
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy saphalerite for 1kpp
/varset ItemToBuy "Tourmaline"
/varset HighestPriceToPay 1000000
/varset TotalYouWant 1
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy tourmaline for 1kpp
/varset ItemToBuy "sphalerite"
/varset HighestPriceToPay 1000000
/varset TotalYouWant 1
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy sphalerite for 1kpp
/varset ItemToBuy "Dust of Discord"
/varset HighestPriceToPay 500000
/varset TotalYouWant 8
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy dust of discord for 500pp
/varset ItemToBuy "Pyrilen Plasma"
/varset HighestPriceToPay 1000000
/varset TotalYouWant 1
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy pyrilen plasma for 1kpp
/varset ItemToBuy "slugworms"
/varset HighestPriceToPay 200000
/varset TotalYouWant 20
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy slugworms for 200pp
/varset ItemToBuy "Discordant Scoriae"
/varset HighestPriceToPay 500000
/varset TotalYouWant 20
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy discordant scoriae for 500pp
/delay 600s
/goto :start
/return
Code: Select all
/varset ItemToBuy "Dust of Discord"
/varset HighestPriceToPay 500
/varset TotalYouWant 8
/call BazaarBuy ${ItemToBuy} ${HighestPriceToPay} ${TotalYouWant}
|should buy dust of discord for 500pp