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

  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • Mods Latest Topics
  • All Activity
  • Home
  • Forge Mods
  • Mods

Mods

Various mods with boards that are not so busy. Ones that get busy may get promoted to their own multi-board section, or dead ones will be removed.
Sign in to follow this  
Followers 4

Subforums

Glitchfiend
Subforums:
  • Biomes O' Plenty
135
Cannot create world
By Cadiboo
November 17, 2018
Minecraft++
31
[1.4.7]Minecraft++
By diesieben07
Saturday at 02:54 PM
Greg's Mods
[url]http://www.cosc.canterbury.ac.nz/greg.ewing/minecraft/mods/GregsProspecting/[/url]
95
Why doesn't gregblock work…
By DavidM
August 1
SanAndreasP's Mods
307
Error
By portalfan04
July 23, 2016
OverMods
13
how to doawnloed mods
By FriendlySurvival
September 11, 2018
Outdated or WIP Mods
13
i keep on getting the same…
By PeterGriffin4436
July 16, 2018
NetZCraft
0
No posts here yet
Noppes' Mods
263
Blood Block Not Working
By xxSw1ft
November 15
  • Start new topic

576 topics in this forum

  • Sort By
    • Recently Updated
    • Title
    • Start Date
    • Most Viewed
    • Most Replies
    • Custom
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 24  
Dragon Mounts:Reborn
By tdude0317, 1 hour ago
0
19
tdude0317
1 hour ago
Why is my 1.12.2 modded minecraft crashing with optifine?
By FoxytheDJ2, Sunday at 05:48 PM
3
208
FoxytheDJ2
Sunday at 08:23 PM
Dan mods
By DaNiLkA009DG, November 29
1
94
DaemonUmbra
November 29
mon mods
By soso, November 25
1
719
DaemonUmbra
November 26
[1.12.2] Hunter x Hunter mod (need modelers)
By eatthenight, September 11
3
2290
Cormorant
November 16
More craft 1.12.2
By FireahmedgamerYT, November 8
1
1388
DavidM
November 8
Spelunkcraft (1.12.2 Mod)
By LaDestitute, October 18
0
2757
LaDestitute
October 18
RL Craft Chunk loading
By Phinlorian, October 7
1
2782
Phinlorian
October 14
Explorercraft - Infection Expansion V3.2.4 - Minecraft 1.14.4
By Zathrox, June 3
6
9710
Zathrox
October 8
Help Downloading Mods
By SpiritsFromAfar, September 25
0
2831
diesieben07
September 25
Custom modpack needing Java developers and artists
By SEGA_FREAK, September 21
0
1200
SEGA_FREAK
September 21
Multi Villages Mod?
By Fumanyu, September 21
0
1932
Fumanyu
September 21
[Above 1.6.4] Does a mod with this description exist?
By socky110, September 14
0
2518
socky110
September 14
My Forge 1.12.2 doesn't work.
By UniversePhoenix, August 19, 2018
6
2165
diesieben07
September 12
Add more mods
By figh, September 9
5
1039
diesieben07
September 10
A second overworld Dimension
By Green, September 6
1
1167
diesieben07
September 6
Where should I go to find someone to update a mod?
By Carson740, September 2
1
1354
n3twoik
September 4
How can i Add Mods on 1.12.2 Please help im a noob
By erpeden1, August 12
4
2455
DaemonUmbra
August 30
how do i download a mod
By isr_pinky, August 28
1
1818
DaemonUmbra
August 28
Redbull Mod
By McSpank, August 26
0
1168
McSpank
August 26
minecraft updated and everything disappeared
By yxsun, August 24
6
1027
DaemonUmbra
August 25
Minecraft 1.11.2 mods but it's actully 1.10.2?
By CorruptedEntity, August 23
3
1481
CorruptedEntity
August 24
FaddishFob8
By Iseespookycat_yt, August 24
6
1320
DaemonUmbra
August 24
Pixelmon not working
By countedcupid, August 11
3
2621
DaemonUmbra
August 15
[1.11.2 | 1.12] WorldProtector
By Mosca42, September 27, 2017
2
18732
Magenta
August 12
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 24  
Sign in to follow this  
Followers 4


  • Posts

    • JetCobblestone
      [1.14] layout of a modpack

      By JetCobblestone · Posted just now

      Right. I'mt not good enough at java yet to be able to just look at the source and figure out what I can do yet, and I don't know all the commands I can use, but I'm sure I'll learn. The tutorials you sent me look really good!
    • solitone
      Distinguish singleplayer vs. multiplayer

      By solitone · Posted 16 minutes ago

      So doesn’t it cause the server to crash, in contrast to what Draco18s said?
    • shadowmaster530
      Unable to register Item texture can someone help?

      By shadowmaster530 · Posted 43 minutes ago

      So I am currently coding in a item and can’t get its texture to properly connect. Here is my code:   package assets.testmod.textures.items;   import com.shadowmaster.testmod.reference.Reference; import net.minecraft.item.Item; import net.minecraft.ItemStack;  import net.minecraftforge.fml.relauncher.Side;  import net.minecraftforge.fml.relauncher.SideOnly;     public class ItemSTM extends Item{      public ItemSTM(){            super();      }      @Override      public String getUnlocalizedName(){            return String.format(“item.%s%s”, Reference.MOD_ID.toLowerCase() + “:”, getUnwrappedUnlocalizedName(super.getUnlocalizedName()));      }        @Override      public String getUnlocalizedName(ItemStack itemStack){            return String.format(“item.%s%s”, Reference.MOD_ID.toLowerCase() + “:”, getUnwrappedUnlocalizedName(super.getUnlocalizedName()));      }        @Override      @SideOnly(Side.CLIENT)       public void registerIcons(IIconRegister iconRegister){             itemIcon = iconRegister.registerIcon(this.getUnlocalizedName().substring(getUnlocalizedName().indexOf(“.”) + 1);   \* This is the piece having the issue but I can’t figure out why or how to fix it *\       }      protected String getUnwrappedUnlocalizedName(String unlocalizedName){           return unlocalizedName.substring(unlocalizedName.indexOf(“.”) + 1);      } }
    • tdude0317
      Dragon Mounts:Reborn

      By tdude0317 · Posted 1 hour ago

      Hello there, I am the Lead developer for a WIP mod named Dragon Mounts:Reborn. Some of you may have heard of Dragon Mounts or Dragon mounts 2, both of which have been stopped. Dragon Mounts:Reborn is a spiritual successor  to these two mods and we are hoping to make it bigger and better. We are looking for anybody willing to help with the mod, especially coders. Please, if you have any interest joining our team, join our discord to learn more,meet the rest of us, and hopefully join us. https://discord.gg/RhgkQjp  
    • DavidM
      Distinguish singleplayer vs. multiplayer

      By DavidM · Posted 1 hour ago

      That code from the original mod is not going to work regardless of the side it is on, as spawning ItemEntity in the world must be done on the server side. However, the Minecraft class (used in your if statement) is client side only.   In your case, you might want to look at how proxies work.
  • Topics

    • solitone
      4
      Distinguish singleplayer vs. multiplayer

      By solitone
      Started 11 hours ago

    • shadowmaster530
      0
      Unable to register Item texture can someone help?

      By shadowmaster530
      Started 42 minutes ago

    • tdude0317
      0
      Dragon Mounts:Reborn

      By tdude0317
      Started 1 hour ago

    • DragonITA
      2
      [1.14.4] Add a Tab to the Player Inventory Gui in Survival Modus

      By DragonITA
      Started 9 hours ago

    • saxon564
      1
      [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

      By saxon564
      Started 2 hours ago

  • Who's Online (See full list)

    • JetCobblestone
    • vaartis
    • Cerandior
    • KittRiderTV
    • solitone
    • SerpentDagger
    • Lea9ue
    • bsrgin
  • All Activity
  • Home
  • Forge Mods
  • Mods
  • Theme
  • Contact Us
  • Discord

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