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
  • Site News (non-forge)
  • New mods added to the site
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
OvermindDL1

New mods added to the site

By OvermindDL1, July 23, 2012 in Site News (non-forge)

  • Reply to this topic

Recommended Posts

OvermindDL1    333

OvermindDL1

OvermindDL1    333

  • World Shaper
  • OvermindDL1
  • Members
  • 333
  • 1439 posts
Posted July 23, 2012

I added a few new mods:

  • Let you disable signatures per post, good for if you link to your mod but do not want your signature being visible on the mod board itself.
  • Thank you system, at the top-right of each post, to let you thank a person for their help.
  • Image shadow box, so giant images posted to a thread start off at 800x### and when clicked on will expand to size and also show in a shadowbox that you can click anywhere else to exit out of.
  • A Team page to list who is in what group, lets you see who the Forge coders are, the Forge Modders are, the excellent wiki authors are all at a glance.
  • A simple blog system so anyone of the modders group can use.  Useful if you do not have your own website or you just want a central place to post quick and rapid modding or status updates or whatever you wish, thus you do not need to create a whole new thread for it.  It supports comments (disableable), categories, and a few other minor things.
  • Membergroup prefixes, I am uncertain about keeping this one, thoughts? (removed for now)
  • As well as a hide BBC code, it will hide the content inside of it until someone replies to that thread, do not abuse it or bans can be handed out.

Any questions or so then ask.

  • Quote

Share this post


Link to post
Share on other sites

atrain99    68

atrain99

atrain99    68

  • World Shaper
  • atrain99
  • Forge Modder
  • 68
  • 1502 posts
Posted July 23, 2012

I'm not sure I like the prefixes either.

  • Quote

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Share this post


Link to post
Share on other sites

OvermindDL1    333

OvermindDL1

OvermindDL1    333

  • World Shaper
  • OvermindDL1
  • Members
  • 333
  • 1439 posts
Posted July 23, 2012

Yeah, I removed them.

  • Quote

Share this post


Link to post
Share on other sites

Elusivehawk    23

Elusivehawk

Elusivehawk    23

  • Dragon Slayer
  • Elusivehawk
  • Forge Modder
  • 23
  • 760 posts
Posted July 24, 2012

Yeah, I removed them.

 

Thanks, for a moment there I was wondering if that was a bug.

  • Quote

Share this post


Link to post
Share on other sites

Elusivehawk    23

Elusivehawk

Elusivehawk    23

  • Dragon Slayer
  • Elusivehawk
  • Forge Modder
  • 23
  • 760 posts
Posted July 24, 2012

Sorry to double post, but frankly this has nothing to do with the above post.

 

Anywho, quick question about blogs: Let's say I'm developing a game that has little to nothing to do with the Forge, or Minecraft period; Could I post development updates of it on my blog?

  • Quote

Share this post


Link to post
Share on other sites

OvermindDL1    333

OvermindDL1

OvermindDL1    333

  • World Shaper
  • OvermindDL1
  • Members
  • 333
  • 1439 posts
Posted July 24, 2012

Sure, I care not, besides it has categories so you can separate everything as you wish.

  • Quote

Share this post


Link to post
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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • DARKHAWX
      [1.16] InputEvent.KeyInputEvent never fired

      By DARKHAWX · Posted 8 minutes ago

      Hey there,   I'm trying to setup a basic keybinding, but I can't seem to get the event to fire. Here's my code for subscribing to the event:   @Mod.EventBusSubscriber public class ModKeyInputs { @SubscribeEvent public void onKeyInput(InputEvent.KeyInputEvent event) { if (ModKeyBindings.OPEN_DIVINE_FAVOUR_RELATIONSHIP.isPressed()) { Minecraft.getInstance().displayGuiScreen(new DivineFavourRelationshipsScreen(Minecraft.getInstance().player)); } } }   Now I've put a breakpoint in the method there at the start, and I can never get it to fire. Am I subscribing to this event incorrectly?   As a side note, is there much difference between using @Mod.EventBusSubscriber on a class versus MOD_EVENT_BUS.register(ModKeyInputs.class); in the constructor of the main mod class?
    • Tavi007
      Question about itemstack capabilities of crafting results

      By Tavi007 · Posted 9 minutes ago

      just two maps and two strings. I use json files, so anyone can override them with datapacks. Basically each item, that should have default values, also has a corresponding json file. (if an item does not have a corresponding json file, then it will get default default values.)   The information in the files are loaded into a Map<ResourceLocation, DataFromJson> once when the server starts, so i can get them whenever i need them. When the attach event (or the item craft event) trigger i resolve the resourceLocation, get the DataFromJson and then set the itemstack capability. As long as the Map doesn't get humongous, this method shouldn't be a performance issure.
    • StormyRiley1
      When I generate a world it stays at 100%

      By StormyRiley1 · Posted 13 minutes ago

      https://drive.google.com/file/d/1uhUglwuMq_nroPQpDWXsBxggv9MwzXyS/view?usp=sharing there you go
    • diesieben07
      When I generate a world it stays at 100%

      By diesieben07 · Posted 20 minutes ago

      The debug.log from the logs folder.
    • StormyRiley1
      When I generate a world it stays at 100%

      By StormyRiley1 · Posted 21 minutes ago

      Which log
  • Topics

    • DARKHAWX
      0
      [1.16] InputEvent.KeyInputEvent never fired

      By DARKHAWX
      Started 8 minutes ago

    • Tavi007
      2
      Question about itemstack capabilities of crafting results

      By Tavi007
      Started 43 minutes ago

    • StormyRiley1
      4
      When I generate a world it stays at 100%

      By StormyRiley1
      Started 12 hours ago

    • Fizedi
      0
      Loot table change for chest in plains house

      By Fizedi
      Started 40 minutes ago

    • diseasedworm
      1
      A problem occurred running the Server launcher.java.lang.reflect.InvocationTargetException

      By diseasedworm
      Started 4 hours ago

  • Who's Online (See full list)

    • randomdude12300
    • red-pxl
    • StormyRiley1
    • Tavi007
    • Beethoven92
    • DARKHAWX
    • Fizedi
    • Choonster
    • CookieLukas
    • forgnog
    • diesieben07
    • discens
    • Tessa
  • All Activity
  • Home
  • Non-Forge
  • Site News (non-forge)
  • New mods added to the site
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community