Lilase/README.md

49 lines
1 KiB
Markdown
Raw Normal View History

2023-02-22 10:51:14 +01:00
<h1> Auction House Flipper - Lilase</h1>
Forge mod will automatiaclly buy item according to your configuration, and send you a webhook when it has been bought.
# Features:
2023-02-24 01:07:33 +01:00
- Auto buy any item you want, with query customised by yourself
- Auto walk to the auction house
- Auto sell after buying with profit check, so profit is ensured
2023-02-22 10:51:14 +01:00
- Can customise fetch time (the faster, the higher chance to get the item you want)
- Webhook system to send you that an item has been bought
2023-02-24 01:07:33 +01:00
- Failsafe in Limbo
2023-02-22 10:51:14 +01:00
# Changelog:
2023-02-24 01:07:33 +01:00
- v1.0.1-beta - Initial Release, with auto buy
- v1.0.2 - Added flipper, profit check, auto post
2023-02-22 10:51:14 +01:00
# Example Config:
```cfg
item1 {
S:Name=
I:Price=1000
S:Tier=ANY
S:Type=ANY
}
2023-02-24 01:07:33 +01:00
2023-02-22 10:51:14 +01:00
item2 {
S:Name=Livid Dagger
I:Price=5000000
S:Tier=LEGENDARY
S:Type=WEAPON
}
2023-02-24 01:07:33 +01:00
2023-02-22 10:51:14 +01:00
item3 {
S:Name=
I:Price=0
S:Tier=
S:Type=
}
2023-02-24 01:07:33 +01:00
2023-02-22 10:51:14 +01:00
main {
2023-02-24 01:07:33 +01:00
S:APIKey=Paste your API key here
I:AuctionHouseDelay=15
I:Multiplier=400
S:Webhook=Paste your webhook here
B:checkMultiplierBeforeBuy=false
2023-02-22 10:51:14 +01:00
}
```