Jump to content
  • Home
  • Files
  • Docs
  • Merch
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • DavidM

DavidM

Members
 View Profile  See their activity
  • Content Count

    1141
  • Joined

    January 19
  • Last visited

    13 hours ago
  • Days Won

    8

DavidM last won the day on October 6

DavidM had the most liked content!

Community Reputation

104 Excellent

6 Followers

  • SorenCabral
  • Taskkill
  • NayTheee
  • tigres810
  • SSWarrior
  • perigrine3

About DavidM

  • Rank
    World Shaper

Converted

  • Gender
    Male
  • Location
    Kalimdor, Azeroth

Recent Profile Visitors

5589 profile views
  • DragonITA

    DragonITA

    Tuesday at 10:13 AM

  • sjk210

    sjk210

    Tuesday at 06:42 AM

  • AntonBespoiasov

    AntonBespoiasov

    Monday at 07:16 AM

  • Cerandior

    Cerandior

    Saturday at 10:10 PM

  • Benjitkt57

    Benjitkt57

    November 24

  1. DavidM

    [1.12.2] plugin with id 'net.minecraftforge.gradle.forge' not found

    DavidM replied to vMystic's topic in Modder Support

    The console output literally points to build.gradle...
    • 13 hours ago
    • 9 replies
  2. DavidM

    My minecraft crashed while I was using mods and won't load now.

    DavidM replied to friggin_gamer's topic in Support & Bug Reports

    That is not the complete log. Please read the EAQ and provide the specified log in an appropiate manner.
    • 15 hours ago
    • 3 replies
  3. DavidM

    Game crashing when the block is activated

    DavidM replied to jun2040's topic in Modder Support

    You never assigned a value to the tileEntity field.
    • 15 hours ago
    • 8 replies
  4. DavidM

    Adding burn time to a block

    DavidM replied to Ronaldi2001's topic in Modder Support

    It is the same as Item, but you need to apply it to the BlockItem form of the block.
    • 15 hours ago
    • 1 reply
  5. DavidM

    Forge server kicking players randomly, sometimes unable to join

    DavidM replied to Kull's topic in Support & Bug Reports

    Please post the server log of when someone got kicked.
    • 20 hours ago
    • 1 reply
  6. DavidM

    pointing to MCP folder instead of MDK ???

    DavidM replied to JMAS's topic in Support & Bug Reports

    No need to mess with MCP. Simply download the 1.14 mdk and copy the src from 1.12 to 1.14. Then fix all the mapping changes and other changes with your IDE.
    • 20 hours ago
    • 8 replies
  7. DavidM

    (1.14.4) I have a question involving BlockPos...

    DavidM replied to MattNL's topic in Modder Support

    It's basically the same in Java as in C++; just invoke the constructor of BlockPos. BlockPos pos = new BlockPos(x, y, z); Note that everything in Java apart from primitive values is a pointer. However, you should learn Java before making a mod, as the Forge API can be a bit confusing for new modders, and not knowing Java will greatly increase the difficulty of learning to mod. if(Minecraft.getInstance().gameSettings.keyBindSprint.isKeyDown()) { worldIn.setBlockState(pos, Blocks.NOTE_BLOCK.getDefaultState().with(NOTE, _new)); } else { worldIn.setBlockState(pos, ModBlocks.noteblock_low.getDefaultState().with(NOTE, _new)); } You are reaching across logical sides. This will crash on a dedicated server, as the Minecraft class only exists on the client, while all World interactions should be done on the server. You should send a packet to the server about the pressing of the key bind and set the BlockState on the server side.
    • Wednesday at 01:22 AM
    • 5 replies
      • 1
      • Thanks
  8. DavidM

    Screen flicker when I land on a planet (Galacticraft & GalaxySpace)

    DavidM replied to Lithium941's topic in Support & Bug Reports

    Report to the mod author.
    • Wednesday at 12:08 AM
    • 1 reply
  9. DavidM

    [1.14.4] How to get Minecraft Horse model/texture to make a custom unicorn?

    DavidM replied to DragonITA's topic in Modder Support

    • Tuesday at 09:42 AM
    • 35 replies
      • 1
      • Confused
  10. DavidM

    forge 1.14.4 isnt working

    DavidM replied to rooksidashia's topic in Support & Bug Reports

    This thread is not relevant to your problem. Please make your own thread.
    • Tuesday at 05:53 AM
    • 6 replies
  11. DavidM

    Distinguish singleplayer vs. multiplayer

    DavidM replied to solitone's topic in Modder Support

    You can try building the mod and running a Forge server with it. This would cause a crash once the class referencing client-only components are loaded. I am not sure why servers started with runServer do not remove client-specific classes, but those classes will be removed on server side outside of development, thus causing a crash.
    • Tuesday at 05:51 AM
    • 22 replies
  12. DavidM

    Minecraft Core Issue/Forge Issue???

    DavidM replied to Aaronade's topic in Support & Bug Reports

    Electroblob Wizardry is crashing. Remove it and report to its author. You can download mods at curseforge.com
    • Monday at 10:33 AM
    • 3 replies
  13. DavidM

    attackEntityFrom() doesn't work. 1.12.2

    DavidM replied to AntonBespoiasov's topic in Modder Support

    No. You are still reaching across logical sides. Use packets.
    • Monday at 12:20 AM
    • 5 replies
  14. DavidM

    attackEntityFrom() doesn't work. 1.12.2

    DavidM replied to AntonBespoiasov's topic in Modder Support

    Damaging the Entity (and all Entity related operations in general) must be done on the server side, yet your code is executing on the client (indicated by the usage of Minecraft class). You would need to send a packet to the server to inform it about the action, then damage the Entity on the server.
    • Sunday at 01:41 PM
    • 5 replies
  15. DavidM

    my mods aren't appearing only forge does

    DavidM replied to Mylystra's topic in Support & Bug Reports

    You clicked on an advertisement instead of the download link. After clicking on the download link on Forge site, you will be redirected to AdFoc. Wait a few seconds and click on the “Skip Ad” button on the top right corner.
    • Sunday at 12:17 PM
    • 5 replies
  • All Activity
  • Home
  • DavidM
  • Theme
  • Contact Us
  • Discord

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