Everything posted by MultiMote
-
Making my bullet headshot
Compare Y of bullet and (entity Y + entity eyeHeight) upon impact.
-
[1.7.10]Fire Rate on guns
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.
-
Changing cursor?
I think he means mouse pointer
-
[1.7.10] Transfer files to client
Thanks a lot
-
[1.7.10] Transfer files to client
I know what I could open connection. But I created this topic because i have no clue how to achieve this.
-
[1.7.10] Transfer files to client
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.
-
[1.7.10][v1.0] Calculus - Calculators in Minecraft!
Nice
-
[1.7.10][ClientSide][OpenSource] - Snow Time
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
-
Stuff not dropping (Sovled)
- Particles rendering from infinite range?
EntityFX@renderDistanceWeight- [solved] Rendering a larger String
Args of drawStringWithShadow are not width and height- [1.7.10]How to make zombies not burn in daylight
Maybe you want to create custom zombie and spawn it instead of vanilla zombie?- Rendering particles on item in hand.
entity.posX, entity.posY, entity.posZ?- Some things behind semi-transparent model render strangely [1.7] [UNSOLVED]
obj supports model parts. Use yourmodel.renderPart("some_part")- Controlling the player to pathfind?
@TheEpicTekkit Minecraft already have pathfinder.- [1.7.10] Spawn Entity Infront Of Player On Item Right-Click
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); }- Entity Not Showing In World
Entity is registered?- Entity Not Showing In World
I mean replace your posX = x; and other in entity constructor.- Entity Not Showing In World
http://www.minecraftforge.net/forum/index.php/topic,24314.msg123636.html#msg123636- [SOLVED] Getting Whether a Block is in a Village
Maybe you should add null-check for villageObj.- Make custom book enchantable
Override getItemEnchantability- [1.7.10] Won't read mods (Mods do not work!)
Your mod/something else uses wrong version of forge.- [1.7.10]Problem with render picture in game
GL11.glEnable(GL11.GL_BLEND); GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA); render GL11.glDisable(GL11.GL_BLEND);- [1.7.10]Crashing when opening custom Container Gui
http://www.minecraftforge.net/forum/index.php/topic,23715.msg120412.html#msg120412 http://www.minecraftforge.net/forum/index.php/topic,24056.msg122226.html#msg122226- [1.7.10] Mob with inventory, Simple Network Wrapper problem.
Message received on the server. He has button in gui that opens entity inventory. - Particles rendering from infinite range?
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.