Skip to content

Instantly share code, notes, and snippets.

@dustinlakin
Created July 28, 2012 23:33
Show Gist options
  • Save dustinlakin/3195267 to your computer and use it in GitHub Desktop.
Save dustinlakin/3195267 to your computer and use it in GitHub Desktop.
Diablo 3 AH bot Search
new Searchable("Armor", "Ring", 60, 60, 27000000, new List<Stat>()
{
new Stat("Dexterity", randomRounded(90,100,5)),
new Stat("Critical Hit", randomRounded(3,3,1)),
new Stat("Critical Damage", randomRounded(25,25,1))
});
new Searchable("Armor", "Gloves", 60, 60, 10000000, new List<Stat>()
{
new Stat("Attack Speed", randomRounded(6,7,1)),
new Stat("Critical Hit", randomRounded(5,6,1)),
new Stat("Critical Damage", randomRounded(30,30,1))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment