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
  • Mod Developer Central
  • Modder Support
  • 1.12.2 broke
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
Mylystra

1.12.2 broke

By Mylystra, February 23 in Modder Support

  • Start new topic

Recommended Posts

Mylystra    0

Mylystra

Mylystra    0

  • Tree Puncher
  • Mylystra
  • Members
  • 0
  • 5 posts
Posted February 23

Hi, i am trying to make a MCYT RP but today for some reason 1.12.2 forge has decided to break? Its the only version breaking for me and I don't know how to fix it..

Oh! and i can't seem to be able to download it without it giving me the completely wrong date of download... it says '12 april 2020'

 

Can someone please help me??

 

From mylystra

Share this post


Link to post
Share on other sites

diesieben07    7697

diesieben07

diesieben07    7697

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7697
  • 56382 posts
Posted February 23

1.12 is no longer supported on this forum.

Please update to a modern version of Minecraft to receive support.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • ThisIsNotOriginal
      When I try to run my mod after I just added Deferred Registries it crashes

      By ThisIsNotOriginal · Posted 5 minutes ago

      when i run it the game gets terminated and doesnt give me a log except the one i provided  
    • ThisIsNotOriginal
      When I try to run my mod after I just added Deferred Registries it crashes

      By ThisIsNotOriginal · Posted 10 minutes ago

      idk where that is this si the only file it shows me  
    • samjviana
      When I try to run my mod after I just added Deferred Registries it crashes

      By samjviana · Posted 1 hour ago

      could you send the latest.log or the debug.log files?  
    • keepercreeper22
      I need help with getting a old world of mine back on a older version of forge(yes i know old forge is not supported, i dont care if admins try to help even if people that are experienced would be great

      By keepercreeper22 · Posted 1 hour ago

      my server file seems to get stuck on unloading dimension one, i can easily share if someone would reply with there disco bandicam 2021-03-03 18-49-20-637.mp4 rd i can figure it out quick, it might even be done by the time i get answer. 
    • Retsal
      [1.16.x] Custom block as a shop

      By Retsal · Posted 1 hour ago

      Finally it is working. Thank you so much for the hints and for pointing me to the right direction @Draco18s. I'm going to share a functional version. Although it is not finished, I think it can help someone who has the same issue. public class BlockShop extends Block { public BlockShop() { super(AbstractBlock.Properties .create(Material.BARRIER) .hardnessAndResistance(-1) ); } @Override public ActionResultType onBlockActivated( BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockRayTraceResult hit) { if (!world.isRemote) { // Server side BlockState signState = world.getBlockState(pos.down()); if (signState != null) { Block blockSign = signState.getBlock(); if (blockSign == Blocks.OAK_SIGN) { Item item = blockSign.getBlock().asItem(); TileEntity te = world.getTileEntity(pos.down()); SignTileEntity signTe = (SignTileEntity)te; CompoundNBT nbt = signTe.getUpdateTag(); String sellId = ""; int price = -1; int quantity = -1; try { sellId = ITextComponent.Serializer .getComponentFromJson(nbt.getString("Text2")) .getString(); price = Integer.parseInt(ITextComponent.Serializer .getComponentFromJson(nbt.getString("Text3")) .getString() ); quantity = Integer.parseInt(ITextComponent.Serializer .getComponentFromJson(nbt.getString("Text4")) .getString() ); } catch (NumberFormatException e) { e.printStackTrace(System.err); } buyItem(player, world, sellId, price, quantity); } } } return ActionResultType.CONSUME; } private void buyItem(PlayerEntity player, World world, String itemId, int price, int quantity) { PlayerInventory inv = player.inventory; ItemStack creditStack = InitItems.CREDIT_ITEM.get().getDefaultInstance(); ItemStack itemStack = ItemStack.EMPTY; if (itemId.contains("blueberry")) itemStack = InitItems.FRESISUIS_BLUEBERRY.get().getDefaultInstance(); else if (itemId.contains("lemon")) itemStack = InitItems.FRESISUIS_LEMON.get().getDefaultInstance(); else if (itemId.contains("lime")) itemStack = InitItems.FRESISUIS_LIME.get().getDefaultInstance(); else if (itemId.contains("orange")) itemStack = InitItems.FRESISUIS_ORANGE.get().getDefaultInstance(); else if (itemId.contains("strawberry")) itemStack = InitItems.FRESISUIS_STRAWBERRY.get().getDefaultInstance(); else if (itemId.contains("suppository")) itemStack = InitItems.GLOWING_SUPPOSITORY.get().getDefaultInstance(); // TODO: check if space is available before removing coins int initialCoins = inv.count(creditStack.getItem()); if (!itemStack.isEmpty() && initialCoins >= price) { int freeSlotIndex = inv.getFirstEmptyStack(); // TODO: replace by <append to firstItemStack> itemStack.setCount(quantity); int toPay = price; while (toPay > 0) { int coinSlotIndex = inv.findSlotMatchingUnusedItem(creditStack); ItemStack coinSlot = inv.getStackInSlot(coinSlotIndex); int amount = Math.min(coinSlot.getCount(), toPay); coinSlot.setCount(coinSlot.getCount() - amount); player.replaceItemInInventory(coinSlotIndex, coinSlot); toPay -= amount; } player.replaceItemInInventory(freeSlotIndex, itemStack); } } }  
  • Topics

    • ThisIsNotOriginal
      3
      When I try to run my mod after I just added Deferred Registries it crashes

      By ThisIsNotOriginal
      Started 2 hours ago

    • keepercreeper22
      0
      I need help with getting a old world of mine back on a older version of forge(yes i know old forge is not supported, i dont care if admins try to help even if people that are experienced would be great

      By keepercreeper22
      Started 1 hour ago

    • Retsal
      4
      [1.16.x] Custom block as a shop

      By Retsal
      Started 13 hours ago

    • BurntBeast
      3
      Minecraft with Forge crashes

      By BurntBeast
      Started 4 hours ago

    • williams_S
      0
      I need help

      By williams_S
      Started 2 hours ago

  • Who's Online (See full list)

    • ThisIsNotOriginal
    • NullDev
    • Avern
    • Gamerchad
    • Edge25
    • YongTai_
    • brok4d
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • 1.12.2 broke
  • Theme

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