Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Non-Forge
  • Off-topic
  • Community Developers Needed
The update for 1.13 is being worked on - please be patient. (Updated 02/19/19)
Sign in to follow this  
Followers 1
GamezMatter

Community Developers Needed

Started by GamezMatter, January 25

1 post in this topic

GamezMatter    0

GamezMatter

GamezMatter    0

  • Tree Puncher
  • GamezMatter
  • Members
  • 0
  • 1 post
  • Report post
Posted January 25 (edited)

(This is my first time posting so sorry if it's in the wrong topic.) 

Staff needed for GamezMatter Community. 

What is GamezMatter?

We plan to be the one-stop place for gamers to use. Basically as a gamer we use multiple platforms, Reddit and Facebook to connect with communities and talk over text, Discord to voice chat and talk with our friends, gaming news websites such as IGN to stay up to date with all our favorite games, g2a and steam as a market place for games and people to sell/trade in-game items, and twitch and youtube for watching and uploading gameplay. While all these websites are fully developed with a fanbase they have many flaws that affect their practicality and core functionality and with all of these separately owned websites it makes it very inefficient to view content not to mention they are all connected using different accounts with some of the content not even being custom tailored to you and what you like. That's where GamezMatter comes in. We plan to be a social media platform for gamers by gamers. Our platform will allow users to do everything those other websites can with a custom tailored experience just for gaming. That means you will just need one account to use all the services with seamless integration and be shown things you like. GamezMatter will not only be a social network for users to share their own content and game servers but we will also host official GamezMatter servers for the community. An example of this would be “Hytale Empire” which is a GamezMatter server for the upcoming hyped game Hytale created by Hypixel Studios. Hytale Empire will be a Hytale custom modded server for Hytale players. If the server has game modes that are original and fun along with its unique name, it is destined to attract players of all kind which can be profitable through micro-transactions (not the pay to win kind) and ads (similar to Minecraft servers).

Who are we looking for?

We are looking for gamers of all talents. From people who can be our bloggers for the game news to developers. As of right now, our main focus is looking for people who are skilled in graphic design talent but mainly programming knowledge in game or web development in python, javascript, java, and/or C++. Really we are looking for anyone that can help make us a reality. Our main focus is getting Hytale Empire up and running due to the newness of the game, the foundations of the server are confirmed to be written in Java with the interactions in the game most likely using Javascript. As of right now we don't have the funds to pay anyone but by joining you will become one of the founding staff and head of the division you are most talented in (a contract will be created so you and we won't be screwed over in any way) and through playing our cards right and advertising the community will grow which will result in you earning payment for all work done along with work you do from then on. By helping us now you will receive special treatment and be considered a higher-up staff for making everything a reality. Come help make this thought a reality and join our community staff today. 

Listed below is my contact info and some flaws with the websites listed above.



Other platform flaws.

Facebook: Filled with clutter and unnecessary things gamers don’t care about. It was never built for gamers.

Youtube: Major disconnection with their community in general yet alone their gaming community and flawed copyright system.

Twitch: Biased moderation and flawed display for live streaming. Doesn’t offer a chance to have live streamers videos bumped to get them fame without having a bunch of views.

Reddit: difficulty in finding new subReddit's are near impossible for the average person who isn’t a Redditor (you have to hunt them down and some can have the same uses as others)

News Websites like IGN: News can be biased and aren’t custom tailored to what you like and just throw everything at you.

Discord: Not many flaws here but one of them could be how it’s similar to Reddit and you have to hunt public servers down on 3rd party websites.

 

 


If you’re interested reach me on discord at GamezMatter#2000 or join our server here https://discord.gg/tveHPX6

Also you can reach me with my email gamezmatter2000@gmail.com 

Edited January 26 by GamezMatter

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
Followers 1
Go To Topic Listing Off-topic

  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • FlufffyDragon
      Has it become more tedious to mod in the latest updates?

      By FlufffyDragon · Posted 4 minutes ago

      Oh, so there was some truth behind that lol.
    • DavidM
      Has it become more tedious to mod in the latest updates?

      By DavidM · Posted 10 minutes ago

      That is controversial. However, the Forge developers worked hard to make the process of modding easier, so you don't need to worry about Minecraft making it hard.   Good luck, and most importantly, have fun😉.
    • Krevik
      [1.13.2] Registries limits?

      By Krevik · Posted 21 minutes ago

      BlockBase and ItemBase are used to register block and items easier, the code is easier to read, than vanilla one - aren't some conventions pointing that the code should be easy to read? Without them I would have to call Block.Properties.create, every time I create new Block. The code is pretty long then, so I created some more simple constructor.   They're all registred in RegistryHelper.
        @SubscribeEvent public static void registerBlocks(final RegistryEvent.Register<Block> event){ final IForgeRegistry<Block> registry = event.getRegistry(); for(Block block: KBlocks.blockRegistryList){ registry.register(block); } } @SubscribeEvent public static void registerItems(final RegistryEvent.Register<Item> event){ final IForgeRegistry<Item> registry = event.getRegistry(); for(ItemBlock itemBlock:KBlocks.itemBlocksRegistryList){ final Block block = itemBlock.getBlock(); final ResourceLocation registryName = Preconditions.checkNotNull(block.getRegistryName(), "Block %s has null registry name", block); ItemBlock itemBlock1 = (ItemBlock) new ItemBlock(block,new Item.Properties().group(itemBlock.getGroup())).setRegistryName(registryName); registry.register(itemBlock1); } for(Item item: KItems.itemsToRegister){ registry.register(item); } registry.register(new ItemBlock(KBlocks.KATHARIAN_PORTAL,new Item.Properties().group(KathairisItemGroups.kathairis_building_blocks)).setRegistryName(KBlocks.KATHARIAN_PORTAL.getRegistryName().toString())); } Yes, register method are being called, cause as I said most of blocks works, just some of them are skipped. Even if I try to register them manually, they're not succesfully registred
    • FlufffyDragon
      Has it become more tedious to mod in the latest updates?

      By FlufffyDragon · Posted 22 minutes ago

      No I meant minecraft may have made it more tedious.   Anyways thanks for clearing something up both of you. It's been a while and I've heard a few things from a few people, some wrong some right. Can't wait to actually start coding mods.
    • DavidM
      [1.13.2] Schedule Code to be Ran Later

      By DavidM · Posted 37 minutes ago

      Thanks.
  • Topics

    • FlufffyDragon
      5
      Has it become more tedious to mod in the latest updates?

      By FlufffyDragon
      Started 1 hour ago

    • Krevik
      2
      [1.13.2] Registries limits?

      By Krevik
      Started 12 hours ago

    • DavidM
      2
      [1.13.2] Schedule Code to be Ran Later

      By DavidM
      Started 51 minutes ago

    • DavidM
      1
      [1.13.2] Detect Block Updates

      By DavidM
      Started 1 hour ago

    • ButterAleks
      1
      Need help making custom bone-meal in Minecraft 1.12.2

      By ButterAleks
      Started 1 hour ago

  • Who's Online (See full list)

    • LTNightshade
    • yuusha
    • Trhod177
    • Choonster
    • DavidM
    • FlufffyDragon
    • BatHeart
    • tokuhausu
    • LexManos
    • WindsOfBoreas
    • V0idWa1k3r
    • ReedSpencer
    • matieusz
    • desht
    • heyitsmenobodyy
    • Animefan8888
  • All Activity
  • Home
  • Non-Forge
  • Off-topic
  • Community Developers Needed
  • Theme
  • Contact Us

Copyright © 2017 ForgeDevelopment LLC Powered by Invision Community