Jump to content

☠☠☠ PvPDistrict.Net☠☠☠ ➨ 24/7➨Griefing➨Raiding➨PvP➨Voting ➨ Join Today! It is FR


JayDosDeflector

Recommended Posts

Hello! In this thread, I´m just going to describe a little bit about our server and explain why it is so different from others. To start off, this is a Factions server. The Factions gamemode consists that you must learn how to team up with friends and create your very own group or "Faction" and as a team, you attempt to raid and take down other factions on your quest to becoming the strongest and richest players on the server. Now, I would like to inform you about the different factors this server give you. Our spawn, it is a detailed yet simple spawn to navigate around, with all the necessary things you might need to develop as a player. What we have in our spawn (Sexy screenshots included)

 

I. The spawn itself

- http://prntscr.com/56yfio

- http://prntscr.com/56yg8m

- http://prntscr.com/56ygmp

 

II. Trading Rooms

- http://prntscr.com/56yh7y

 

III. Enchanting Table (30 Levels YAY!)

- http://prntscr.com/56yiha

 

IV. AFK Jumper

- http://prntscr.com/56yj6i

 

V. Shop

- http://prntscr.com/56ymli

 

Now, hopefully, you are wondering why the hell I saved the Shop for the last screenshot, when it is the most vital, important part of Factions. For starters, we are strong believers that having a fair equal economy is key to lead to a server were people aren´t fifty times overpowered than other players. Well, you have come to the correct server if you are looking for a stable economy. For those who like grinding and making the server lag out, we apologize, but spawners are not achievable at shop, due to the fact that there are several servers that do have spawners in shop and SilkTouchSpawners and it completley messes up the economy. The PvPDistrict economy, is a farm/mining based economy, were, if you wish to seek for a grinder and maybe grind some levels or bones/rotten flesh you can. We´ve made it exploit free, meaning, that it is nearlly impossible to find an exploit. The player who finds an exploit will get free gold rank. For the picture i´ve shown you, that is only one third of the shop, it extends deeper down and further back behind.

 

 

Donations; This is a deliquate yet exciting topic to talk about. Yes, we do have donor ranks, packages, kits and items. All specified on the donation store which there is a link at the bottom of the page. The donor ranks have some epic commands and over powered kits, which might unfortunatley give unfair advantages to other players who simply do not have the capability or resources to financially support the server. In all due honesty, the donor perks is a way to motivate you in keeping the gears of PvP District turning, as in paying for the server to be online is NOT free. However, not to worry, we have monthly contests in which you have the ability of getting ranks and perks for FREE. You might be wondering, how? Well, it´s quite simple; voting. Basically, what voting does is bumping up the server´s rankings in different websites (MC-Index, Minecraft Servers, PMC etc.). The server benefits with this because it simply gets more players to join the server. So, for example, August´s voting contest could be the top 5 voters get 25$ dollar gift cards. Or, if you vote 100 times, you get Bedrock Rank (topest rank) and so on. You can be aware about the contests at the server forums, the place were I will post latest news about the server!

 

 

This is basically it, the review of the server. I beg you, the instant you join PLEASE do not ask for Staff/any other rank. I guarantee you will not get it just by asking here, or in any other server. We do NOT need builders, all the builds are made by myself or my in real life friends. Thanks for reading and I hope you enjoy your stay on the server! Have a good one!

 

 

Important IP´S and URL´S

 

Server IP: PvPDistrict.Net

 

Server Forums: http://pvpdistrict.enjin.com/home#

 

Donation Store: http://pvp-district.buycraft.net/

Link to comment
Share on other sites

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

    • i tried downloading the drivers but it says no AMD graphics hardware
    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • As the title says i keep on crashing on forge 1.20.1 even without any mods downloaded, i have the latest drivers (nvidia) and vanilla minecraft works perfectly fine for me logs: https://pastebin.com/5UR01yG9
    • Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this :  The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) :  The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock :   Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item :    @Override     public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) {         if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) {             BlockPos blockPos = pContext.getClickedPos();             BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos));             if (secondBlockPos != null) {                 createFrozenBlock(pContext, secondBlockPos);             }             createFrozenBlock(pContext, blockPos);             return InteractionResult.SUCCESS;         }         return super.useOn(pContext);     }     public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) {         BlockState oldState = pContext.getLevel().getBlockState(blockPos);         BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null;         CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null;         if (oldBlockEntity != null) {             pContext.getLevel().removeBlockEntity(blockPos);         }         BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData);         pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock);     }     public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) {         BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState();         ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData);         return FrozenBlock;     }  
    • It is an issue with quark - update it to this build: https://www.curseforge.com/minecraft/mc-mods/quark/files/3642325
  • Topics

×
×
  • Create New...

Important Information

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