2023-02-19 23:16:37 +01:00
# ViaFabricPlus
2023-02-19 23:17:33 +01:00
Clientside ViaVersion, ViaLegacy and ViaAprilFools implementation with clientside fixes for Fabric
2023-02-24 14:55:38 +01:00
### This project has nothing to do with the original ViaFabric and is therefore also not compact
## Contact
If you encounter any issues, please report them on the
[issue tracker ](https://github.com/FlorianMichael/ViaFabricPlus/issues ).
If you just want to talk or need help with ViaFabricPlus feel free to join my
[Discord ](https://discord.gg/BwWhCHUKDf ).
2023-02-20 01:04:09 +01:00
2023-02-21 02:02:06 +01:00
## Why?
2023-02-24 14:55:38 +01:00
ViaFabricPlus implements ViaLegacy/ViaAprilFools clientside and adds a ton of fixes that improve the game experience, < br >
2023-02-26 21:59:01 +01:00
as does [multiconnect ](https://github.com/Earthcomputer/multiconnect ) from Earthcomputer.
2023-02-24 15:06:06 +01:00
### Important: The focus on ViaFabricPlus is on client side fixes, so reporting bugs and contributing is welcome.
2023-02-24 14:55:38 +01:00
## Dependencies
| Dependency | Download |
|----------------|------------------------------------------------------------|
| ViaVersion | https://github.com/ViaVersion/ViaVersion |
| ViaBackwards | https://github.com/ViaVersion/ViaBackwards |
| Snake YAML | https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.33 |
| ViaLegacy | https://github.com/RaphiMC/ViaLegacy |
| ViaAprilFools | https://github.com/RaphiMC/ViaAprilFools |
| MC-Structs | https://github.com/Lenni0451/MCStructs |
| ViaLoadingBase | https://github.com/FlorianMichael/ViaLoadingBase |
2023-02-21 02:02:06 +01:00
2023-02-24 15:06:06 +01:00
## Setting up a Workspace
ViaFabricPlus uses Gradle, to make sure that it is installed properly you can check [Gradle's website ](https://gradle.org/install/ ).
1. Clone the repository using `git clone https://github.com/FlorianMichael/ViaFabricPlus` .
2. CD into the local repository.
3. Run `./gradlew genSources` .
4. Open the folder as a Gradle project in your preferred IDE.
5. Run the mod.
2023-02-23 19:43:25 +01:00
## Values
2023-02-24 14:55:38 +01:00
Values are optional settings that can turn fixes on and off, originally they were used for debugging< br >
2023-02-23 19:43:25 +01:00
![](/image/values.png)
2023-02-26 22:36:22 +01:00
## Addons
2023-02-26 22:07:15 +01:00
To make a ViaFabricPlus addon you just have to implement the ViaFabricPlusAddon interface in your main class:
2023-02-24 14:55:38 +01:00
```java
package net.example;
2023-02-24 15:06:06 +01:00
public class ViaFabricPlusExampleAddon implements ViaFabricPlusAddon {
2023-02-24 14:55:38 +01:00
@Override
2023-02-26 21:59:01 +01:00
public void onLoad() {
// called after ViaVersion and Minecraft is initialized
2023-02-24 14:55:38 +01:00
}
@Override
public void onChangeVersion(ComparableProtocolVersion protocolVersion) {
// called when the user changes the target version in the gui
}
}
```
To load the addon you have to specify the addon main class as entrypoint in your *fabric.mod.json* :
```json
{
"entrypoints": {
"viafabricplus": [
"net.example.ViaFabricPlusExampleAddon"
]
}
}
```
2023-02-26 22:36:22 +01:00
### General API
In case you need an event as soon as the idle packet is skipped in the < = 1.8, you can do that: < br >
```java
public class Example {
static {
IdlePacketExecutor.registerIdlePacketSkipExecute(() -> {
// Called when the idle packet is skipped
});
}
}
```
In case you need the release version of a material, you can do that:
```java
public class Example {
static {
final ProtocolRange range = ItemReleaseVersionDefinition.getItemMap().get(Items.WRITABLE_BOOK); // If an item does not appear in the item map, it has always existed
// The Range class then contains all versions in which the item occurs.
// You can find out how the Range class works in the ViaLoadingBase README.
// https://github.com/FlorianMichael/ViaLoadingBase
}
}
```
To get the current Maximum Chat Length you can do this:
```java
public class Example {
static {
final int maxLength = ChatLengthDefinition.getMaxLength();
}
}
```
2023-02-26 21:59:01 +01:00
To create a setting group, you can simply use the SettingGroup class:
```java
public class ExampleSettingGroup extends SettingGroup {
public final static ExampleSettingGroup INSTANCE = new ExampleSettingGroup();
public final BooleanSetting testValue = new BooleanSetting("Test", false);
public ExampleSettingGroup() {
super("Example");
2023-02-26 22:07:15 +01:00
ViaFabricPlus.getClassWrapper().loadGroup(this); // should be in your onLoad method
2023-02-26 21:59:01 +01:00
}
}
```
2023-02-24 15:18:20 +01:00
## Alternatives
- [ClientViaVersion ](https://github.com/Gerrygames/ClientViaVersion ): Discontinued 5zig plugin.
- [multiconnect ](https://www.curseforge.com/minecraft/mc-mods/multiconnect ): Fabric mod for connecting to older
versions: down to 1.11 (stable) and 1.8 (experimental).
2023-02-24 23:49:49 +01:00
- [ViaFabric ](https://www.curseforge.com/minecraft/mc-mods/viafabric ): Client-side and server-side ViaVersion implementation for Fabric
2023-02-24 15:18:20 +01:00
2023-02-24 14:55:38 +01:00
## WARNING
**I cannot guarantee that this mod is allowed on every (or even any) server. This mod may cause problems with anti cheat
plugins. USE AT OWN RISK**