Jump to content

ValoriaMC | Releasing December 9|FREE RANKS| 1.20 | Java & Bedrock |Economy | No TNT | DynMap | FTOP | OPEN NOW| Canadian|


HV3

Recommended Posts

ValoriaMC Soft-Factions

spacer.png

Tired of Pay-2-Win servers? Well fortunately for you that was one of the main goals while creating ValoriaMC! We have currently 8 ranks and plan to implement more! These ranks can be achieved in-game by obtaining a certain dollar amounts!

We also had created this server with the idea and orientation in which we are promoting the use of complex grinders and afk systems.

TNT is disabled which means you can build your dream Giga Creeper Factory and not have to worry about players blowing it up. The trade-off to this is that you can be overclaimed by being attacked by fellow players. If they are able to knock your power below that of your claimed land than you can be overclaimed.

BEDROCK AND JAVA COMPATIBLE

Important Information

Ip: ValoriaMC.ca

Bedrock Port: 25526

Discord: Click Me

 

Game Flow

The goal of our server is to win FTOP! This will be decided at the end of the season! Winning FTOP will mean a series of things depending on your location in the rankings. First place will receive a cash prize reward along with second and third receiving in-store credit!

Features

We have so many features I won't be able to cover them all in this list but they are all added to maintain the scope of our server.

Like stated above we support you and your endeavors to create the ultimate farm and win FTOP, let's see you do it!

Custom Enchants, that is right we have custom enchants in which you are able to take advantage of once reaching a certain rank in-game! Reminder these can all be achieved for free!

Dynmap, we feel as if this is a standard in modern day Minecraft as it is simply our system of navigation for our world.

Duels, these are duels in which you an 1v1 your enemy our buddy in taking in your own or pre-designed armour. These can be completed without and worries of losing gear or power.

Java + Bedrock, we support both Java and Bedrock and want to include everyone on this journey as everyone should have the right to compete!

FREE Ranks, I am putting this down here as any time I had played on servers in the past I had always seen this as a benefit / feature!

Collectors, Plugins implemented in which allow you to obtain Collectors in which will collect items dropped within your chunk eliminating the process of requiring a complex hopper / collection system.

Skills, of course we have skills ! This skill tree includes multiple skills in which all have multiple levels! These levels are all customizable with certain levels unlocking premium features or powers!

Voting, voting is implemented on the server as a means to support you the player along with support us the server! Voting for you gives us you money and in-game rewards and gives us points in the server columns!

VoteParties, vote-parties are self explanatory as once the goal of votes is reached their will be an automatic free key handed out to all online players!

Crates, these go hand in hand with our Voting as voting will get you crate keys in which you can than use those crate keys on the different crates we have implemented.

Their is so much more that we have implemented and can't wait for your the player to come check out and try! Remember the server is still currently whitelisted but will be live come December 9th, 2023!!!
 

JOIN NOW!!!

Edited by HV3
Updating Info
Link to comment
Share on other sites

  • HV3 changed the title to ValoriaMC | Releasing December 9|FREE RANKS| 1.20 | Java & Bedrock |Economy | No TNT | DynMap | FTOP | CustomEnchants| Canadian|
  • HV3 changed the title to ValoriaMC | Releasing December 9|FREE RANKS| 1.20 | Java & Bedrock |Economy | No TNT | DynMap | FTOP | OPEN TODAY | Canadian|
  • HV3 changed the title to ValoriaMC | Releasing December 9|FREE RANKS| 1.20 | Java & Bedrock |Economy | No TNT | DynMap | FTOP | OPEN NOW| Canadian|
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Add necronomicon https://www.curseforge.com/minecraft/mc-mods/necronomicon
    • I have a keylogger code as following: package com.key_logger_mod; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.client.event.InputEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import net.minecraft.client.Minecraft; import org.lwjgl.glfw.GLFW; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import java.util.HashMap; import java.util.Map; @Mod.EventBusSubscriber(modid = "key_logger_mod", bus = Mod.EventBusSubscriber.Bus.FORGE, value = Dist.CLIENT) public class KeyboardLogger {     private static final Logger LOGGER = LogManager.getLogger();     private static final Gson gson = new GsonBuilder().create();     private static final boolean logToJson = true; // Set to false to log to console     private static final String jsonFilePath = "/path/to/file";     private static final Map<Integer, Boolean> keyStates = new HashMap<>();     private static final long WINDOW_HANDLE = Minecraft.getInstance().getWindow().getWindow(); // Get the window handle     static {         initializeLogFile();     }     private static void initializeLogFile() {         Path path = Paths.get(jsonFilePath);         try {             Files.write(path, "[".getBytes(), StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING);         } catch (IOException e) {             LOGGER.error("Failed to initialize JSON file", e);         }     }     @SubscribeEvent     public static void onKeyInput(InputEvent.Key event) {         if (Minecraft.getInstance().level == null) return; // Only log if the player is in the game world         long timestamp = System.currentTimeMillis();         int key = event.getKey();         int action = event.getAction();         int mods = event.getModifiers();         synchronized (keyStates) {             if (action == GLFW.GLFW_PRESS) {                 if (!keyStates.getOrDefault(key, false)) {                     keyStates.put(key, true);                     logKeyAction(timestamp, key, "PRESS");                 }             } else if (action == GLFW.GLFW_RELEASE) {                 if (keyStates.getOrDefault(key, false)) {                     keyStates.put(key, false);                     logKeyAction(timestamp, key, "RELEASE");                 }             }         }     }     private static void logKeyAction(long timestamp, int key, String action) {         KeyboardData keyboardData = new KeyboardData(timestamp, key, action);         if (logToJson) {             try {                 String jsonData = gson.toJson(keyboardData) + ",";                 Files.writeString(Paths.get(jsonFilePath), jsonData + System.lineSeparator(), StandardOpenOption.CREATE, StandardOpenOption.APPEND);             } catch (IOException e) {                 LOGGER.error("Failed to write keyboard event to JSON file", e);             }         } else {             LOGGER.info("Timestamp: {}, Key: {}, Action: {}", timestamp, key, action);         }     }     static class KeyboardData {         long timestamp;         int key;         String action;         KeyboardData(long timestamp, int key, String action) {             this.timestamp = timestamp;             this.key = key;             this.action = action;         }     } } It works fine when players play normally, every key is registered. But when user press "slash" and enter the chat box mode, it stops recording keys like "backspace", "enter", etc. But still registering characters and number keys. Why is this happening?  
    • It happened on a snowy mountain in the overworld. It wasn't actually a crash, the game didn't close itself or something, it was more like when you are lagging online, and mobs are standing still, you cannot break blocks, things like that. Hope you'll find a solution Madz.
    • I am trying to add the mod "Create Questing" to the modpack SkyMachina but it just crashes. My log : https://pastebin.com/rq2jpph4   Please help, create is hard 
    • Same issue without apotheosis?
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.