What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Elite Merchant Cushion auto spawn plugin

Darcor

Member
Joined
Oct 23, 2014
Messages
42
Reaction score
0
Could someone make a quick plugin that will just auto spawn the merchant when it disappears, this is the merchant for your house, but it auto despawn like after 20mins or so I think, currently using a macro but have to keep the window up for that so a plugin would be great so it will work in the background.
 
Simple function to include in your codes, resummon every 10minutes + 5 seconds

public void summonAuction() {
DoodadObject cushion;
cushion = getNearestDoodad("Elite Merchant's Cushion");
UseDoodadSkill("Spend 10 Labor to summon an agent.", cushion, true, 0);
Thread.Sleep(605000);
}
 
Back
Top