Jump to content

Best Way to create a bullet


poopoodice

Recommended Posts

It has troubled me for a long time, I already made a bullet that can fire correctly, but what I want is that it reduces damages and its range when hit a block/entity instead of just got removed. And currently it extends ThrowableEntity. What I tried to do was to check in onImpact() if the bullet was hitting a block, if true reduces range and damage, but the problem is if the bullet hit both of them at the same time (which can be pretty big since it moves really fast), it only returns the first thing got hit and then it moves to the next position and ignores the other(s) hits. I also try to find every single block between the start vec and destination vec (entity hit), but it will be really terrible if there are lots of bullets in the world doing that at the same time.. any ideas will be appreciated.

Link to comment
Share on other sites

        AxisAlignedBB axisalignedbb = this.getBoundingBox().expand(this.getMotion()).grow(1.0D);
        Vec3d from = this.getPositionVec();
        Vec3d to = this.getPositionVec().add(new Vec3d(this.getMotion().getX(), this.getMotion().getY(), this.getMotion().getZ()));
        EntityRayTraceResult entityResult = 
          ProjectileHelper.rayTraceEntities(world, this, from, to, axisalignedbb, (entity) entity ->  != getThrower());
        BlockRayTraceResult blockResult = 
          world.rayTraceBlocks(new RayTraceContext(from, to, RayTraceContext.BlockMode.COLLIDER, RayTraceContext.FluidMode.ANY, this));

as shown above, both entity/block ray trace only gets the first block/entity hit. does doing multiple raytracing such as splitting one raytracing into multiple like

	
BlockRayTraceResult blockResult
for (int i=0;i<10;i++)
{
        blockResult =                           //split into 10 sections, just an example
    world.rayTraceBlocks(new RayTraceContext(from, from + (to - from) / 10 * i, RayTraceContext.BlockMode.COLLIDER, RayTraceContext.FluidMode.ANY, this));
  	if (..........
      .....
}

sounds like a good idea, or it will cause bad performances?

Edited by poopoodice
Link to comment
Share on other sites

7 hours ago, poopoodice said:

(from, from + (to - from) / 10 * i,

This doesn't actually do what you're thinking of trying to make it do. Its firing 10 rays from the same origin out to a different max distance. If there's an entity/block within the first ray's path, then all ten rays will find the same entity.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

4 hours ago, Draco18s said:

This doesn't actually do what you're thinking of trying to make it do. Its firing 10 rays from the same origin out to a different max distance. If there's an entity/block within the first ray's path, then all ten rays will find the same entity.

Oops, I meant to type

BlockRayTraceResult blockResult
for (int i=0;i<10;i++)
{
        blockResult =                  //split into 10 sections, just an example
    world.rayTraceBlocks(new RayTraceContext(from.add((to.subtract(from)).mul(0.1D, 0.1D, 0.1D).mul(i, i, i))
                                             , to, RayTraceContext.BlockMode.COLLIDER, RayTraceContext.FluidMode.ANY, this));
  	if (..........
      .....
}

but it's just an example, don't think it will work properly without any disadvantages such as cause lags,, etc.

Edited by poopoodice
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi Everyone, I'm new to the sub but needed some help figuring out a lot of the server tick issues and errors I have been getting. I run a small 1-3 player 1.19.2 forge minecraft server with around 215 or so mods (mix of QoL, server sided, performance, and client/ui mods). I run a Ryzen 5600x, 48gb of ram, and an Asus tuf 1650s. Current jvm allocation is for 12gb (overkill I know, but thought it would require so for the amount of mods I have). Typically my server had ran <20ms avg. tick, but currently has been going up closer and closer to 50ms, with sky rockets to >100ms up to around even 700ms at times. I assume it has to do with an entity ticking loop or something of the sort butn my knowledge of servers ands mods is very inept. Here is my mod list: https://mclo.gs/Yh3uW9J Here is the link to my latest.log: https://mclo.gs/uXtekkO In addition here is my debug.log: https://mclo.gs/f4zMNQQ I see a lot of errors in both logs, but cannot figure out for the life of me what mod(s) are causing them. If there is anymore info that I can provide that can help me sort this out, I am more than willing to provide it. Just want my server to run nicely lol. edit: i know the current logs show missing content. those are mods that i have already deemed not needed/not working well/as intended so they have been removed. edit #2: i have already tried using spark profiler to find the mod that is using the most resources, but to no avail. here is the link to the latest profiler i ran: https://spark.lucko.me/dIAmpPkGdo Thank you in advance!
    • i recheck the kapenjoe tutorial from another stance and actually manage to make custom trades for the villagers and the trader    seems like the wanderer has 64 normal trades and 6 especial  ### addCustomWandererTrades( generic 64) ### addCustomWandererTrades( rare    6)   ################################################## the problem is that the 3 custome trades i add rarely gets loaded in the wanderer offered item list but are there  if i delete the list whit generic.clear() before adding mi things then only mi things get loaded an a ice cube i dont know where is coming              generic.add((trader, rand) -> new MerchantOffer(                 new ItemStack(Items.EMERALD, 6),                 new ItemStack(BlockInit.POTTED_BLUE_HERB.get().asItem(), 2),                 2, 10, 0.02F)         ); it dont seems to be a weight variable to increase the possibility of mi custom trades ######################### what i want is  to increase the chance of mi custome trades to be vissible  how can i do that....          
    • For Example, Simply swords is a mod that i think looks cool. I've noticed I can use it in a world but friends can't join. Error is "Registry remapping failed: null". Is there a way to fix this or is it not possible to use with friends?
    • You could try using spark (https://www.curseforge.com/minecraft/mc-mods/spark) to see if it gives you any other insight into what is making ticks take too long, perhaps it's a combination of mods. If it's simply the yuushya mod processing that is causing it to hang, the only solution would be removing that mod, or possibly updating/downgrading to a version that doesn't make ticks take too long.
    • Looking for help with reading this crashlog for my server. I can tell yuushya causes it. I want to try to figure out what else causes this crash. I need yuushya but any other mod could get deleted if needed. https://paste.ee/p/eUS38 is the crash log
  • Topics

×
×
  • Create New...

Important Information

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