├── .gitignore ├── LICENSE.txt ├── README.md ├── bazaarbot ├── Agent.hx ├── Economy.hx ├── Good.hx ├── Market.hx ├── MarketData.hx ├── Offer.hx ├── agent │ ├── BasicAgent.hx │ ├── Inventory.hx │ ├── InventoryData.hx │ ├── Logic.hx │ ├── LogicHScript.hx │ └── LogicScript.hx └── utils │ ├── ArrayUtil.hx │ ├── DestroyUtil.hx │ ├── EconNoun.hx │ ├── History.hx │ ├── HistoryLog.hx │ ├── MarketReport.hx │ ├── Quick.hx │ ├── Signal.hx │ └── TradeBook.hx ├── examples └── doran_and_parberry │ ├── Assets │ ├── nme.png │ ├── nme.svg │ ├── scripts │ │ ├── best_job.hs │ │ ├── blacksmith.hs │ │ ├── farmer.hs │ │ ├── miner.hs │ │ ├── refiner.hs │ │ └── woodcutter.hs │ └── settings.json │ ├── example.hxproj │ ├── project.xml │ └── source │ ├── DoranAndParberryEconomy.hx │ ├── Main.hx │ ├── MarketDisplay.hx │ └── jobs │ ├── LogicBlacksmith.hx │ ├── LogicFarmer.hx │ ├── LogicGeneric.hx │ ├── LogicMiner.hx │ ├── LogicRefiner.hx │ └── LogicWoodcutter.hx └── haxelib.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/README.md -------------------------------------------------------------------------------- /bazaarbot/Agent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/Agent.hx -------------------------------------------------------------------------------- /bazaarbot/Economy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/Economy.hx -------------------------------------------------------------------------------- /bazaarbot/Good.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/Good.hx -------------------------------------------------------------------------------- /bazaarbot/Market.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/Market.hx -------------------------------------------------------------------------------- /bazaarbot/MarketData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/MarketData.hx -------------------------------------------------------------------------------- /bazaarbot/Offer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/Offer.hx -------------------------------------------------------------------------------- /bazaarbot/agent/BasicAgent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/BasicAgent.hx -------------------------------------------------------------------------------- /bazaarbot/agent/Inventory.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/Inventory.hx -------------------------------------------------------------------------------- /bazaarbot/agent/InventoryData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/InventoryData.hx -------------------------------------------------------------------------------- /bazaarbot/agent/Logic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/Logic.hx -------------------------------------------------------------------------------- /bazaarbot/agent/LogicHScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/LogicHScript.hx -------------------------------------------------------------------------------- /bazaarbot/agent/LogicScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/agent/LogicScript.hx -------------------------------------------------------------------------------- /bazaarbot/utils/ArrayUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/ArrayUtil.hx -------------------------------------------------------------------------------- /bazaarbot/utils/DestroyUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/DestroyUtil.hx -------------------------------------------------------------------------------- /bazaarbot/utils/EconNoun.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/EconNoun.hx -------------------------------------------------------------------------------- /bazaarbot/utils/History.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/History.hx -------------------------------------------------------------------------------- /bazaarbot/utils/HistoryLog.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/HistoryLog.hx -------------------------------------------------------------------------------- /bazaarbot/utils/MarketReport.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/MarketReport.hx -------------------------------------------------------------------------------- /bazaarbot/utils/Quick.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/Quick.hx -------------------------------------------------------------------------------- /bazaarbot/utils/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/Signal.hx -------------------------------------------------------------------------------- /bazaarbot/utils/TradeBook.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/bazaarbot/utils/TradeBook.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/nme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/nme.png -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/nme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/nme.svg -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/best_job.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/best_job.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/blacksmith.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/blacksmith.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/farmer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/farmer.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/miner.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/miner.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/refiner.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/refiner.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/scripts/woodcutter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/scripts/woodcutter.hs -------------------------------------------------------------------------------- /examples/doran_and_parberry/Assets/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/Assets/settings.json -------------------------------------------------------------------------------- /examples/doran_and_parberry/example.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/example.hxproj -------------------------------------------------------------------------------- /examples/doran_and_parberry/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/project.xml -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/DoranAndParberryEconomy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/DoranAndParberryEconomy.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/Main.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/MarketDisplay.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/MarketDisplay.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicBlacksmith.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicBlacksmith.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicFarmer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicFarmer.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicGeneric.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicGeneric.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicMiner.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicMiner.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicRefiner.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicRefiner.hx -------------------------------------------------------------------------------- /examples/doran_and_parberry/source/jobs/LogicWoodcutter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/examples/doran_and_parberry/source/jobs/LogicWoodcutter.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsiusprime/bazaarBot/HEAD/haxelib.json --------------------------------------------------------------------------------