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

  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • General Discussion Latest Topics
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)

General Discussion

Feel free to talk about anything and everything related to Minecraft Forge in this board.
Sign in to follow this  
Followers 2
  • Start new topic

2474 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 99  
Microsoft buys Mojang/Minecraft ... FAQ for Forge Team/LexManos
By Aridhol, September 15, 2014
1 2
38
150264
Aridhol
July 19, 2018
Dark Theme adjustment
By Curle, June 27, 2020
2
198
Curle
19 hours ago
2 Different servers, but the same world.
By Hafdey, Tuesday at 09:30 PM
1
0
diesieben07
Tuesday at 10:14 PM
Question
By Yahkoi8906, January 10
1
0
diesieben07
January 10
Minecraft
By rreppond10@gmail.com, January 9
1
0
DaemonUmbra
January 9
[1.12.2] Rendering ImageIO.read() to the world in runtime?
By tf2_mandeokyi, January 9
1
0
DaemonUmbra
January 9
Mods as Microservices
By tuskiomi, January 8
0
0
tuskiomi
January 8
Cant launch forge
By Octoo_, January 8
1
0
diesieben07
January 8
Help me a bit
By yousuf, January 6
7
0
yousuf
January 6
What happened to the spoiler button?
By GenElectrovise, December 28, 2020
2
0
GenElectrovise
December 29, 2020
Font
By ZakiChel, December 22, 2020
3
0
ZakiChel
December 22, 2020
Opening 1.15.2 World In 1.12.2?
By LouieBrown, December 18, 2020
1
0
diesieben07
December 18, 2020
installer
By starshipUK, December 18, 2020
1
0
diesieben07
December 18, 2020
Modding Question
By Sputnik, December 17, 2020
1
0
diesieben07
December 17, 2020
Is forge a client?
By Lunobi, December 15, 2020
1
0
DaemonUmbra
December 15, 2020
Forum Registration Doesn't Know About Withers
By naqaden, September 25, 2018
1
2120
sherrijackson
December 10, 2020
why is forge modding so darn hard
By Crazy_sheep, December 5, 2020
1 2
45
0
diesieben07
December 7, 2020
Minecraft Server Not Running Mods VER 1.15.2
By ZombiexReaperx, December 6, 2020
5
0
ZombiexReaperx
December 6, 2020
Confused On How This Works
By Zenri, December 6, 2020
11
0
Zenri
December 6, 2020
Minecraft Server Not Running Mods
By ZombiexReaperx, December 6, 2020
3
0
diesieben07
December 6, 2020
Deprecation policy on forum, move posts instead of locking
By WorldsEnder, December 6, 2020
3
0
diesieben07
December 6, 2020
Minecraft mod launch limiting?
By AstralSeyyah, December 5, 2020
3
0
diesieben07
December 6, 2020
Best way to find custom biomes?
By foonicular, December 2, 2020
1
0
Beethoven92
December 2, 2020
I can't find the windows installer for 1.16.1
By Inz0ne, December 1, 2020
1
0
diesieben07
December 1, 2020
How was Forge created, as well as others?
By jonathanpecany, November 26, 2020
2
0
jonathanpecany
November 26, 2020
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 99  
Sign in to follow this  
Followers 2


  • Posts

    • DrakenXI
      [1.16.4] setBlockState with out send update event.

      By DrakenXI · Posted 7 minutes ago

      Thanks for your reply. You gave me another idea for a solution.   19 :  1 will cause a block update. 2 will send the change to clients. 16 will prevent neighbor reactions (e.g. fences connecting, observers pulsing). That what I found in Minecraft source for "setBlockState" Function. 🤨    
    • Somonestolemyusername
      [1.15.2] How Would I make a custom bow?

      By Somonestolemyusername · Posted 11 minutes ago

      all i has in it is  package com.vicken.mod3.entities.projectiles; import com.vicken.mod3.util.RegistryHandler; import net.minecraft.block.BlockState; import net.minecraft.block.Blocks; import net.minecraft.block.WallTorchBlock; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.item.ItemEntity; import net.minecraft.entity.projectile.ArrowEntity; import net.minecraft.item.ItemStack; import net.minecraft.item.Items; import net.minecraft.potion.EffectInstance; import net.minecraft.potion.Effects; import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.BlockRayTraceResult; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; public class Ak47ArrowEntity extends ArrowEntity { public Ak47ArrowEntity(World worldIn, LivingEntity shooter) { super(worldIn, shooter); RegistryHandler.BULLET.get(); } @Override protected void arrowHit(LivingEntity living) { super.arrowHit(living); living.setFire(15); } }
    • Somonestolemyusername
      [1.15.2] How Would I make a custom bow?

      By Somonestolemyusername · Posted 13 minutes ago

      ok can u help write the code? i started learning to mod a few weeks ago all i know is items armors block recipes and other stuff. also I already have a projectile class named Ak47ArrowEntity
    • Thorius
      [1.15.2] How Would I make a custom bow?

      By Thorius · Posted 1 hour ago

      You have to create a new bullet entity class but you can use the snowball as a template. In kinematics there's not much difference between a snowball and a bullet. If it looks and hurts like a bullet then it's a bullet. But you have to register it as a new entity.
    • Ipsissimus418
      [1.16.4] WorldTickEvent Concurrent Access Exception

      By Ipsissimus418 · Posted 2 hours ago

      That is something I hadn't considered in terms of threads.   I have the WorldTickEvent handler do nothing on the client but run on the server. I may have some paths for the addEntry running on both the client and server. Something I need to look into and check if that is where the conflict is coming from.   Thanks.
  • Topics

    • DrakenXI
      2
      [1.16.4] setBlockState with out send update event.

      By DrakenXI
      Started 20 hours ago

    • Somonestolemyusername
      16
      [1.15.2] How Would I make a custom bow?

      By Somonestolemyusername
      Started Tuesday at 09:30 PM

    • Ipsissimus418
      2
      [1.16.4] WorldTickEvent Concurrent Access Exception

      By Ipsissimus418
      Started 3 hours ago

    • kiou.23
      14
      [1.16] Custom Sign won't render

      By kiou.23
      Started 12 hours ago

    • PedreHenrry
      5
      my minecraft crashed by "rendering overlay"

      By PedreHenrry
      Started Yesterday at 01:06 PM

  • Who's Online (See full list)

    • XenoPyax
    • DrakenXI
    • Mrcactus1
    • AntiRix
    • Qrani
    • Somonestolemyusername
    • lliinnkk10
    • kiou.23
    • starstorms21
    • visualysacha
    • Gabbyboy1233539
    • Lellian
    • MrBelieve
    • ozumman
    • KatjaREDMedic
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
  • Theme

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