Skip to content

Commit

Permalink
Made README more descriptive I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
odtheking committed May 3, 2024
1 parent 2b4b277 commit b8743f1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
Odin is a forge mod for Hypixel Skyblock on the minecraft version 1.8.9
<h1 align = "center">
Odin
</h1>

The mod contains two versions which are two separate builds. Utilizing Gradle MultiProject functionality enables us to develop both versions within the same repository while still developing two different versions. If you have any questions regarding the mod, please feel free to ask in the Discord server.
<div align="center">

[![discord badge](https://img.shields.io/discord/1041616706327552000?label=discord&color=9089DA&logo=discord&style=for-the-badge)](https://discord.gg/2nCbC9hkxT)
[![made with kotlin](https://img.shields.io/badge/Made%20With-Kotlin-orange?style=for-the-badge&logo=kotlin&logocolor=white)](https://kotlinlang.org/)
</div>

Odin is a forge mod for Hypixel Skyblock on the minecraft version 1.8.9. The mod specializes in Kuudra & Dungeons and offers a bunch of additional features for all parts of Hypixel Skyblock. The mod is also designed to be as lightweight as possible to ensure that it does not impact the game's performance.

The mod contains two versions which are two separate builds. Utilizing Gradle MultiProject functionality enables us to develop two separate versions of the mod within the same repository while keeping the unique additions to each version separate. If you have any questions regarding the mod, please feel free to ask in the Discord server.

To open the main menu use `/od`, `/odin` or `/odinclient` in chat.
For extensive command help use `/od help` in chat.

We have an installation guide which you can access clicking [here](https://odtheking.github.io/Odin/installation_guide).

Suggestions and bug reports are welcome, please use the [Discord](https://discord.gg/2nCbC9hkxT) for that.

For an organized feature list check the website [here](https://odtheking.github.io/Odin/feature_list_legit).
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private void lockPlayerLooking(EntityPlayerSP instance, float x, float y) {
}
}

@Inject(method = "updateCameraAndRender", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/entity/EntityPlayerSP;setAngles(FF)V", ordinal = 1), locals = LocalCapture.PRINT)
@Inject(method = "updateCameraAndRender", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/entity/EntityPlayerSP;setAngles(FF)V", ordinal = 1), locals = LocalCapture.CAPTURE_FAILSOFT)
private void updateCameraAndRender(float partialTicks, long nanoTime, CallbackInfo ci, boolean flag, float f, float f1, float f2, float f3) {
if (Camera.INSTANCE.getEnabled()) Camera.INSTANCE.updateCameraAndRender(f2, f3);
}
Expand Down

0 comments on commit b8743f1

Please sign in to comment.