Jump to content

MultiMote

Forge Modder
  • Posts

    257
  • Joined

  • Last visited

Everything posted by MultiMote

  1. Compare Y of bullet and (entity Y + entity eyeHeight) upon impact.
  2. What would happen when client will not send "stop firing" packet? For exaple, player starts firing and he is kicked from server / minecraft or computer is crashing. I think sending packets with specific rate when player holds item&button is better. How vanilla does.
  3. I think he means mouse pointer
  4. I know what I could open connection. But I created this topic because i have no clue how to achieve this.
  5. Hello everyone. I have a question. I need to transfer binary files from server to client. After studying the Minecraft code, I came to the conclusion that Minecraft downloads custom resourcepack from server via http, there is method ResourcePackRepository#func_148528_a: http://up42.ru/u/p/2015-01-10_10.55.43.png[/img] So, what can I do? How to send request to server? How to share required files on server? Thanks and sorry for my language mistakes.
  6. This mod brings snow flakes in any Minecraft GUI. It's rewrite of my very old project. Screenshots: Features: configurable snow flake count configurable GUI list snow flakes rotation snow flakes avoid mouse it's awesome Config stored in com.multimote.snowtime.Config, you MUST compile mod to change it. Releases: HERE Github repo: HERE I'm lazy and I want to download it now: [1.7.10] SnowTime-1.0.1
  7. Args of drawStringWithShadow are not width and height
  8. Maybe you want to create custom zombie and spawn it instead of vanilla zombie?
  9. @TheEpicTekkit Minecraft already have pathfinder.
  10. public static Vec3 getPointUsingAnglesRange(Vec3 start, float yaw, float pitch, float range){ double coordX = start.xCoord + (double) (-MathHelper.sin(yaw / 180.0F * (float) Math.PI) * MathHelper.cos(pitch / 180.0F * (float) Math.PI) * range); double coordY = start.yCoord + (double) (-MathHelper.sin(pitch / 180.0F * (float) Math.PI) * range); double coordZ = start.zCoord + (double) (MathHelper.cos(yaw / 180.0F * (float) Math.PI) * MathHelper.cos(pitch / 180.0F * (float) Math.PI) * range); return Vec3.createVectorHelper(coordX, coordY, coordZ); }
  11. I mean replace your posX = x; and other in entity constructor.
  12. http://www.minecraftforge.net/forum/index.php/topic,24314.msg123636.html#msg123636
  13. Your mod/something else uses wrong version of forge.
  14. GL11.glEnable(GL11.GL_BLEND); GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA); render GL11.glDisable(GL11.GL_BLEND);
  15. http://www.minecraftforge.net/forum/index.php/topic,23715.msg120412.html#msg120412 http://www.minecraftforge.net/forum/index.php/topic,24056.msg122226.html#msg122226
  16. Message received on the server. He has button in gui that opens entity inventory.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.