pre v1.0.24

This commit is contained in:
NK 2023-03-01 00:08:57 +00:00
parent 45bd2cf6b2
commit 3076623644
4 changed files with 47 additions and 31 deletions

View file

@ -14,6 +14,27 @@ Forge mod will automatiaclly buy item according to your configuration, and send
- Auto ungrab mouse when sniping/flipping
- Auto movement during sniping so hypixel won't send to afk
# 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
```
# Changelog:
- v1.0.1-beta - Initial Release, with auto buy
- v1.0.2 - Added flipper, profit check, auto post
@ -23,31 +44,37 @@ Forge mod will automatiaclly buy item according to your configuration, and send
auto skip confirmation screen, with GUI showing coord fps and time and more error catching
however config still broken, keep using Lilase.cfg first. Will fix config and discord in next update
some movement during sniping so hypixel won't send to afk
- v1.0.22 - More lines in GUI, flipped, posted, sniped
- v1.0.22 - Fatal bug fixed (before it will crash when open controls gui), also added title for process
- v1.0.23 - More lines in GUI, flipped, posted, sniped
- v1.0.24 -
remove the use of org.json dependency
fixing flipper could not be started when item is sniped
making send auction to be toggleable
added blacklist for sniping
# To Do Features:
- Console client??
- Page flipper for specific items(query)
- Wither Impact in lore check
- Blue omelette in lore check
- Cookie compatible
- pre api?
- upper bound and lower bound for sniping as upper bound is specified right now
# Example Config:
```cfg
item1 {
S:Name=
I:Price=1000
S:Tier=ANY
S:Type=ANY
}
item2 {
S:Name=Livid Dagger
I:Price=5000000
S:Tier=LEGENDARY
S:Type=WEAPON
}
item3 {
S:Name=
I:Price=0
S:Tier=
S:Type=
blacklist1 {
S:Name=Rune
I:Price=1
S:Tier=ANY
S:Type=ANY
}
main {

View file

@ -64,8 +64,6 @@ repositories {
dependencies {
compileOnly("cc.polyfrost:oneconfig-$platform:0.2.0-alpha+")
shade("org.json:json:20220924")
if (platform.isLegacyForge) {
compileOnly("org.spongepowered:mixin:0.7.11-SNAPSHOT")
shade("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+")

View file

@ -1,6 +1,6 @@
mod_name = Lilase
mod_id = lilase
mod_version = 1.0.23
mod_version = 1.0.24
essential.defaults.loom=0

View file

@ -30,7 +30,7 @@ import static me.night0721.lilase.features.ah.AHConfig.RECONNECT_DELAY;
public class Lilase {
public static final String MOD_NAME = "Lilase";
public static final String MODID = "Lilase";
public static final String VERSION = "1.0.23";
public static final String VERSION = "1.0.24";
public static final Minecraft mc = Minecraft.getMinecraft();
public static AuctionHouse auctionHouse;
public static AHConfig config;
@ -65,18 +65,9 @@ public class Lilase {
if (clock.passed()) {
clock.schedule(RECONNECT_DELAY * 1000L);
FMLClientHandler.instance().connectToServer(new GuiMultiplayer(new GuiMainMenu()), new ServerData(" ", "mc.hypixel.net", false));
}
}
}
/*
TODO: Priority on buying
TODO: Console client??
TODO: Page flipper
TODO: Percentage calculator
TODO: Blacklist
TODO: Wither Impact in lore check
TODO: Blue omelette in lore check
TODO: Discord Embed improve, tell profit and profit percentage
*/
}
// Cesium: #ab84ff
// Potassium: #deb4d1