Skip to content
Merged

What #24

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 11 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<h1 align="center">Genyo Addon</h1>
<p align="center"><i>❤꧁ღ⊱♥ I have brain damge ♥⊱ღ꧂❤</i></p>
<p align="center" style="font-size: 16px;">Shoreline port into <strong><a href="https://github.com/MeteorDevelopment/meteor-client">Meteor</a></strong> plus other <strong>GENYO magic</strong> :D</p>
<p align="center" style="font-size: 16px;">Shoreline port into <strong><a href="https://github.com/MeteorDevelopment/meteor-client">Meteor 1.21.4</a></strong> plus other <strong>GENYO magic</strong> :D</p>

<div align="center">
<a href="https://github.com/wuritz/genyo-addon/releases">
Expand All @@ -25,15 +25,15 @@
</a>
</div>

# Best addon ever
## Best addon ever

You don't need anything more, we have everything you've ever wanted. Also things you've never wanted.<br />
[Check out the website.](https://genyo.dev)

International version: **Genyo Addon**<br>
*written for **Meteor 1.21.4***

# Features ✨
## Features ✨

📋 Check out the [full list of features](https://genyo.dev/features) on our website. 📋

Expand All @@ -43,34 +43,22 @@ Five categories of modules:
- Movement
- Visual
- World

## How to use ❓

- Yes
- Also
- Hulkenberg.

# Problem? ⛔
## Problem?

[Join Discord](https://discord.gg/dwuAuXKQ) for support. <br />
<a href="https://discord.gg/dwuAuXKQ">
<img src="https://img.shields.io/discord/1398445342827085884?style=flat&logo=Discord&label=Discord&color=035efc">
</a>

*⚠️ keep in mind that we aren't developing this thing 24/7 ⚠️*

### License

**YOLO License** 🥝🐦
## License

I love kiwi. ── ⋆˚୨🥝୧⋆。˚ !!
[YOLO License](https://github.com/wuritz/genyo-addon/blob/master/LICENSE) - i guess

### Credits
## Credits

<dl>
<dt>Thanks to:</dt>
<dd>- meteor for being awesome</dd>
<dd>- Credit to <strong>"John Genyo"</strong>, the founder of <em>Genyo Corporations</em></dd>
<dd>- also <a href="https://github.com/Skitttyy/shoreline-client">Shoreline</a> for being shorelineistic</dd>
<dd>- and other clients lol</dd>
<dd> - meteor for being awesome</dd>
<dd> - Credit to <strong>"John Genyo"</strong>, the founder of <em>Genyo Corporations</em></dd>
<dd> - also <a href="https://github.com/Skitttyy/shoreline-client">Shoreline</a> for being shorelineistic</dd>
<dd> - and other clients lol</dd>
</dl>
3 changes: 3 additions & 0 deletions src/main/java/com/genyo/Genyo.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ private void initModules(Modules modules) {
//modules.add(new AutoOminous());
modules.add(new FastLatency());
modules.add(new FastPlace());
modules.add(new AutoWeb());
modules.add(new AutoCrawlTrap());
modules.add(new BasePlace());
}

private void initHUD(Hud hud) {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/genyo/systems/modules/PlacerModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public class PlacerModule extends GenyoModule {
add(Blocks.ENDER_CHEST);
}};

protected final Setting<Boolean> multitaskConfig = settings.getDefaultGroup().add(new BoolSetting.Builder()
.name("Multitask")
protected final Setting<Boolean> multitask = settings.getDefaultGroup().add(new BoolSetting.Builder()
.name("multitask")
.description("Allows mining while using items")
.defaultValue(false)
.build()
);

protected final Setting<Boolean> strictDirectionConfig = settings.getDefaultGroup().add(new BoolSetting.Builder()
.name("Strict Direction")
protected final Setting<Boolean> strictDirection = settings.getDefaultGroup().add(new BoolSetting.Builder()
.name("strict-direction")
.description("Places on visible sides only")
.defaultValue(false)
.build()
Expand Down
Loading