• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

find & buy items in bazaar below vendor price

dowongchu99

Member
Joined
Oct 20, 2006
RedCents
91¢
I've been using this macro by Script Guy (in-game friend of mine) for a long time and decided to share it with NA.

This macro will search through a targeted Trader and output items and the Profit you would make by buying the item and selling it to a vendor.

http://www.macroquest2.com/phpBB3/viewtopic.php?f=49&t=14360

Rich (BB code):
|----------------------------------------------------------------------- 
| Program     : buylow.mac 
| Author      : Script Guy 
| Purpose     : Buy Low, Sell High, Make Plat 
| 
| Version     : 1.0 01/10/2007 - Initial version 
| 
| Useage      : /mac buylow ## 
|             : Param0 = Minimum Profit 
| 
| Example     : /mac buylow 10 - Look for items with a 10 plat profit or more 
| 
| Description : Search through a trader for items below vendor buy price 
| Credits     : Ieatacid (tribute.mac) 
|----------------------------------------------------------------------- 

#turbo 

Sub Main(float Param0, string Param1, string Buy) 
    /if (!${Target.ID} || ${Target.Distance}>20) { 
        /popup No target or target is too far away! 
        /end 
    } 

    /declare BuyVal    float local 0   | Price that the Trader is selling the item for 
    /declare SellVal   float local 0   | Price that a Vendor will give me for the item 
    /declare Profit    float local 0   | Profit from Buying Low and Selling High 
    /declare TotProfit float local 0   | Total Profit to be made from Trader 
    /declare i         int   outer     | Iteration Item counter 
    /declare ctr       int   outer 0   | Counter for number of profitable Items on Trader 
    /declare MinProfit float   local .05   | Minimum amount of Profit to determine if we should buy the item 
    /declare pp1       int   local 0   | Copper 
    /declare pp2       int   local 0   | Silver 
    /declare pp3       int   local 0   | Gold 
    /declare pp4       int   local 0   | Platinum 

    /declare found     bool  local FALSE 

    /varset MinProfit ${Param0} 

    /popup Min Profit:  ${MinProfit} 
    /delay 3s 

    /popup Retrieving data for >>> Trader ${Target.CleanName} <<< 
    /click right target 
    /delay 3s 

    /for i 1 to 80 
        /if (!${Merchant.Item[${i}].ID}) /goto :end 
        /varset pp1 ${Window[MerchantWnd].Child[itemList].List[${Window[MerchantWnd].Child[itemList].List[=${Merchant.Item[${i}]},2]},4]} 
        /varset pp2 ${Math.Calc[${Window[MerchantWnd].Child[itemList].List[${Window[MerchantWnd].Child[itemList].List[=${Merchant.Item[${i}]},2]},5]}*10]} 
        /varset pp3 ${Math.Calc[${Window[MerchantWnd].Child[itemList].List[${Window[MerchantWnd].Child[itemList].List[=${Merchant.Item[${i}]},2]},6]}*100]} 
        /varset pp4 ${Math.Calc[${Window[MerchantWnd].Child[itemList].List[${Window[MerchantWnd].Child[itemList].List[=${Merchant.Item[${i}]},2]},7]}*1000]} 
        /varset BuyVal ${Math.Calc[${pp1}+${pp2}+${pp3}+${pp4}]} 
        /varset SellVal ${Math.Calc[${Merchant.Item[${i}].Value}/1000]} 



   /if (${MinProfit}>0.0 && ${MinProfit}<1.0) { 
       /varset Profit ${Math.Calc[${Math.Calc[${SellVal}-(${SellVal}*${MinProfit})]}-${BuyVal}]} 
            /if (${Math.Calc[${SellVal}-(${SellVal}*${MinProfit})]}>${BuyVal}) { 
           /echo ${Merchant.Item[${i}].Name}:  Profit: ${Math.Calc[${SellVal}-(${SellVal}*${MinProfit})]} - ${BuyVal} = ${Profit} 
                /varcalc TotProfit ${Math.Calc[${TotProfit}+${Profit}]} 
                /varcalc ctr (${ctr}+1) 
                /varset found TRUE 
            } 
   } else { 
            /varset Profit ${Math.Calc[${SellVal}-${BuyVal}]} 
            /if (${Profit}>=${MinProfit}) { 
                /echo ${Merchant.Item[${i}].Name}:  Profit: ${SellVal} - ${BuyVal} = ${Profit} 
                /varcalc TotProfit ${Math.Calc[${TotProfit}+${Profit}]} 
                /varcalc ctr (${ctr}+1) 
                /varset found TRUE 
            } 
   } 
    /next i 

    :end 

    /popup Number of Items:  ${ctr} Total Profit: ${TotProfit} 
    /if (!${found}) /cleanup 
/return
 
find & buy items in bazaar below vendor price

Users who are viewing this thread

Back
Top
Cart