Skip to content

Commit

Permalink
Feat/v0.16.4 (#71)
Browse files Browse the repository at this point in the history
16.4
  • Loading branch information
TheMrTeapot authored Apr 9, 2024
1 parent 259e7be commit 1e6f033
Show file tree
Hide file tree
Showing 45 changed files with 2,734 additions and 1,863 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ todo-notes
# keep .gitkeep files
!/**/.gitkeep
.botconfig
src-tauri/target/release/bundle/msi/Neuz_0.13.0_x64_en-US.msi
/src-tauri/target/**/*

.idea/*
.vs/*
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ Date format: `DD/MM/YYYY`
[@slyker]: https://github.com/slyker
<!-- /maintainers -->

**0.16.4**
> Released on 05.04.2024
- Farming
- Perform better due to all changes in code base
- Fix motion pickup
- Added toggle to prioritize aggros or just the closest mob
- AOE attack, configurable with number of mobs to attack
- Removes (temporary?) prevent already attacked feature
- Support
- Party leader selection when in a party (needs to be enabled in settings)
- Self buffing and healing **ONLY WHILE IN A PARTY** (yes! My RM can now be buffed and healed properly)
- AOE healing
- Fix issues where buffs were not properly triggered
- UI
- Slots
- Alphabetical order for slots
- Added party slots
- Added AOE skill and heal slots
- Misc
- Better main loop management increasing performances
- Rework eval api
- Rework client_stats adding a bunch of states : is_mover, is_on_screen, target_distance and more.
- Changed cloud detection max_x distance
- Fixes Azria issue (was crashing)
- Changes updater redirection page

**0.16.3**
> Released on 24.3.2023
- Support
Expand Down
10 changes: 10 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

Contributions:
- Autoshout behavior
- Multiple window
- Various fixes and enhancements

## [genoxalmighty](https://github.com/genoxalmighty)

Expand All @@ -25,3 +27,11 @@ Contributions:

Contributions:
- Support buff fix + small QOL feature.

## [TheMrTeapot](https://github.com/TheMrTeapot)

Contributions:
- Self buff
- AOE
- Fix Azria crash
- Various fixes and enhancements
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- [FAQ](#faq)

# Download

[![Build release](https://github.com/MadrigalStreetCartel/neuz/actions/workflows/main.yml/badge.svg)](https://github.com/MadrigalStreetCartel/neuz/actions/workflows/main.yml)
- Latest version: [Download][download]
- Older versions (Windows only): [Release Archive](./releases)

Expand Down Expand Up @@ -66,6 +66,7 @@ Before pushing:
Use farming automation if you're trying to level up your character or farm sets, quest items, penya, etc.

Works best if you're in a densely populated farming area.
It will also use an AOE attack skill (if configured) when the bot is close to the target.

### Requirements

Expand All @@ -81,10 +82,21 @@ For optimal performance (optional and not necessarily needed):
3. Take a look at #How-To channel on discord for a full setup tutorial.

## Support Automation
##### Stand-alone support:
- Fill the slots as desired (Heal spell for the target you wanna heal, Food/Pills for yourself).
- Target the character you want to follow in game.
- Press Z to follow character
- Engage


##### Party support:
It will follow the party leader by automatically selecting it from the party window, to make it work:
- Enable the "Is it in a party?" toggle under settings
- Position the party window names list in the top right corner and shrink it as much as possible from sides and below
- Make sure to close all party windows before engaging.
- Engage.
It will also use F1 + C (action slot) to self-buff based on the "interval between buffs" timer.

## Slot Configuration

| Slot Symbol | Flyff Equivalent | Description |
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "cross-env BROWSER=none react-scripts start",
"start": "cross-env BROWSER=none RUST_BACKTRACE=1 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tauri": "tauri"
"tauri": "tauri",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"fmt": "cd ./src-tauri && cargo fmt && cd .."
},
"eslintConfig": {
"extends": [
Expand Down
Loading

0 comments on commit 1e6f033

Please sign in to comment.