Lilase/.github/README.md

92 lines
3.2 KiB
Markdown
Raw Normal View History

2023-02-22 10:51:14 +01:00
<h1> Auction House Flipper - Lilase</h1>
2023-03-06 20:29:10 +01:00
<div style="text-align: center;">
<img align="center" src="https://cdn.discordapp.com/attachments/842014909264953354/1082373275038003210/lilase.png" width="300" />
</div>
# Introduction:
A simple Forge mod will automatiaclly buy item according to your configuration, and send you a webhook when it has been bought.
If you have any questions please join [Discord Server](https://night0721.me/discord) for support
For how to use, see **[here](https://github.com/night0721/lilase#how-to-use)**
2023-02-22 10:51:14 +01:00
# 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-25 04:12:49 +01:00
- Auto reconnect to server when disconnected
- Auto skip confirmation screen
2023-02-26 20:15:50 +01:00
- GUI showing coordinates, fps and clock and stats like auctions bought, sniped, flipped
2023-02-25 04:12:49 +01:00
- Auto ungrab mouse when sniping/flipping
2023-02-25 04:16:27 +01:00
- Auto movement during sniping so hypixel won't send to afk
2023-03-08 19:42:16 +01:00
- Cookie Compatible
- Configurable bed spam delay
- Modules toggleable in game
- Check maximum profit percentage before buying so duped items won't be bought
2023-02-22 10:51:14 +01:00
2023-03-01 01:08:57 +01:00
# How to use:
1. Download the latest version of Lilase from [here](https://github.com/night0721/Lilase/releases)
2. Put it into %APPDATA%/.minecraft/mods
3. Start forge 1.8.9
4. Go to %APPDATA%/.minecraft/config
5. Open Notepad/Notepad++/Visual Studio Code/or any IDE you like to edit Lilase.cfg
6. Fill item(s) you want to buy, only fill if you need to, don't randomly put something at only one field
7. Note: You can create as many item as you want, just copy and paste the item section and change the number(the highest number will have the last priority on checking auctions, vice versa)
8. save the file and press END key to start auction house sniper(or change it in control settings)
9. For example configuration, see [here](https://github.com/night0721/Lilase#example-config)
# **IMPORTANT INFO**
List of things you can put in Tier section
```
ANY, COMMON, UNCOMMON, RARE, EPIC, LEGENDARY, MYTHIC, DIVINE, SPECIAL, VERY_SPECIAL
```
List of things you can put in Type section
```
ANY, WEAPON, ARMOR, ACCESSORIES, CONSUMABLES, BLOCKS, MISC
```
2023-02-22 10:51:14 +01:00
# Changelog:
2023-03-08 13:25:05 +01:00
[ChangeLog](https://github.com/night0721/Lilase/blob/master/.github/CHANGELOG.md)
2023-03-01 01:08:57 +01:00
# To Do Features:
- Console client??
- Page flipper for specific items(query)
- Wither Impact in lore check
- Blue omelette in lore check
- pre api?
2023-02-22 10:51:14 +01:00
# Example Config:
```cfg
item1 {
S:Name=Livid Dagger
I:Price=5000000
S:Tier=LEGENDARY
S:Type=WEAPON
}
2023-03-01 01:08:57 +01:00
blacklist1 {
S:Name=Rune
I:Price=1
S:Tier=ANY
S:Type=ANY
2023-02-22 10:51:14 +01:00
}
2023-03-08 19:42:16 +01:00
2023-02-22 10:51:14 +01:00
main {
2023-03-08 19:42:16 +01:00
S:APIKey=Paste your api key here
2023-03-02 03:48:42 +01:00
B:SendMessageToWebhook=true
2023-02-24 01:07:33 +01:00
S:Webhook=Paste your webhook here
2023-03-08 19:42:16 +01:00
I:ReconnectDelay=20
I:AuctionHouseDelay=9
B:BedSpawn=true
I:BedSpawnDelay=100
B:OnlySniper=false
2023-03-02 03:48:42 +01:00
B:checkProfitPercentageBeforeBuy=false
2023-03-08 19:42:16 +01:00
B:checkMaxiumProfitPercentageBeforeBuy=false
I:MaximumProfitPercentage=1000
I:MinimumProfitPercentage=400
B:GUI=false
I:GUI_COLOR=-65536
2023-02-22 10:51:14 +01:00
}
2023-03-08 19:42:16 +01:00
2023-02-22 10:51:14 +01:00
```