NEWHORIZON MOD
A Java Mindustry<V6.0> mod for Android and PC.
Powered by Yuria.
Update Frequency
During this term (from March to June) I can only update this mod on weekends.
Community
Server
n2.yd.gameworldmc.cn:20074
For foreigners (foreign countries relative to China)
Most of the players in the server may speak Chinese when you log in.
Well, you may feel it is impossible to communicate with them because as I know, many of the players in the Chinese Mindustry community (especially in my place) do not use English often or are not fluent in it just like me. However, I believe there must be players who are good at English that are willing to translate what you say to others, then translate what is replied to you.
But if that doesn't happen, making everything function right and not demolishing buildings at will are enough. I believe every player can get along well with one another as long as no one blows up a reactor or breaks someone else's blueprint.
Don't forget to invite your friends to try this mod, because you guys can use the amount of non-Chinese speaking players to turn the situation. Also if Chinese players don't quit, this may be a fantastic chance for them to learn English (Maaaaaaaybeeeeeee).
Have a nice day.
Caution
MOD DOES NOT SUPPORT IOS
If you are using a PC, mod requires jdk 14
installed, or maybe other versions of jdk (at least 8).
If you downloaded from Action
, unzip the Mod.zip file first, then install the mod in-game;
Mod is unstable (mainly for phones, which have some UI and loading problems) and is WORK IN PROGRESS.
All code is here and completely open source so no code that has safety problems could be hidden.
Here are the Requirements
override code, which I believe it wouldn't cause conflict between multiple mods. Still, I give a setting to disable the override.
public class NHOverride{
/*Override detail code...*/
private static void addReq(Block target, ItemStack... items){
ItemStack[] newReq = new ItemStack[items.length + target.requirements.length];
int i;
for(i = 0; i < target.requirements.length; i++){
newReq[i] = target.requirements[i];
}
for(i = 0; i < items.length; i++){
newReq[i + target.requirements.length] = items[i];
}
target.requirements = newReq;
Arrays.sort(target.requirements, Structs.comparingInt((j) -> j.item.id));
}
private static void removeReq(Block target, Item... items){
Seq<ItemStack> req = new Seq<>(ItemStack.class);
req.addAll(target.requirements);
for(Item item : items){
req.each(itemReq -> itemReq.item == item, req::remove);
}
target.requirements = req.shrink();
}
}
In Game Settings
This mod adds a new setting dialog when starting the game. By choose the available setting, you can activate the in-game debug panel and advance load, which creates outline icons and unit full icons automatically. However, the advance load now causes a stuck problem when the game is loaded on a phone. So, for your gaming experience, I made it false by default. If you are confident with your device, activate it. If you find that your device cannot afford it, open the mod file folder and find the "new-horizon" folder. Then, open the properties file in it, change the "@active.advance-load*" to false, and open the game again.
However, when the mod is deleted, the setting file will not be deleted automatically, so before I solve this problem, you may have to delete it yourself.
MOD Guide
Block Guide
Scalable Turret & Upgrade Block
Example:
- Turret: End of Era
- Upgrader: End of Era Upgrader
Use Steps:
-
Click the
Upgrader
. -
Click target turret, which must be
Scalable
.if everything goes correctly, you will see the link sign between the two buildings.
-
Click the
Upgrader
. -
Click button
Upgrade
. if everything goes correctly, you will see the table of all the upgrade options.
- Upgrade needs resources. The upgrader can take resources directly from the
Core
.Nice and simple, right?
- Make the turret function correctly just like other turrets.
Mass Deliverer
- Deliverer: Mass Deliverer
Use Steps:
-
Click the building.
-
Select the mode
input
oroutput
. Ifinput
, choose the item you want to take on the table.You can choose multiple items at the same time.
-
Select the target just like with a
Mass Driver
.
Jump Gate
- JumpGate: Senior Jump Gate; Junior Jump Gate
Use Steps:
- Click the building.
- Click the
Spawn
button. Then you will see the spawn dialog. - Select the plus icon to summon the unit.
- Spawning units requires resource, which the jump gate can take the resource directly from the
Core
. - To place the
Senior Jump Gate
, theJunior Jump Gate
is required as a base. - A new auto-spawn system has been added since 1.7.8, which allows you to spawn specific unit when wave passed by. This also works for enemies, so you guys can use it to make some interesting maps.
Player Jump Gate
- PlayerJumpGate: Quickly transports a player from one position to another.
Use Steps:
- Click the building.
- Make sure the building isn't locked (You can get and switch the mode through the left button), then tap another
Player Jump Gate
to link. - Make sure you are using a flying unit. Get close to the building, then click the button
Teleport
to teleport to the linked building.
- Has cooldown time.
- Requires power to function.
- Available in the server.
Hyperspace Folding Gate & Gravity Gully
- Hyperspace Folding Gate: Transports a group of units from one side to another.
Use Steps:
- Click the Hyperspace Folding Gate.
- Click the
Select Destination
button, then click the screen. A cross will appear on the position you clicked. Click the cross again to set the destination. - Click the
Select Units
button, then click the screen. Drag the mouse or click the other diagonal point to select all friendly units within a rectangle. Click the button with the arrow icon below the select rectangle to confirm. - Click the
Transport Units
button.
- Has cooldown time.
- Requires power and other items to function.
- Available in the server.
Commandable Block
- Commandable Block: Active Defence Blocks.
Use Steps:
- Click the Commandable Block.
- Click the
Select Destination
button, then click the screen. A cross will appear on the position you clicked. Click the cross again to set the destination. - Click the
Up Open
button, Corresponding blocks of the same kind will make feedback actions.
- Has cooldown time.
- Requires power and other items to function.
- Available in the server.