- Joined
- Feb 6, 2007
- RedCents
- 1,683¢
I was becoming curious how much plat I was making selling vender trash. I blame this curiosity entirely on Razkle, thank you for making me curious Raz.
Anyway, I added a simple routine to Maskio's SellStuuf.mac to total up how much plat I received, see attached macro.
Anyway, I added a simple routine to Maskio's SellStuuf.mac to total up how much plat I received, see attached macro.
Rich (BB code):
| added a plat counter that will display the total amount plat earned selling
| Sellstuff.mac v1.0 by Maskoi 11/27/2010
| Target the vendor you want to sell to and type /mac sellstuff
| Required Ninjadvloot.inc v1.8 and a loot.ini file with items marked as sell
#include Ninjadvloot.inc
#Event plattotal "#*#You receive #1# platinum#*#"
Sub Main
/declare Ptotal int outer 0
/call SetupAdvLootVars
/call DoLootStuff sell
:sell
/doevents
/if (${Target.ID} && ${Target.Distance}<25) /goto :sell
/echo You just made ${Ptotal} plat selling vender trash
/return
Sub Event_plattotal(S0,S1)
/varcalc Ptotal ${Ptotal}+${S1}
/return

