Jump to content

How can I modify an existing mob/entity


Brun0_MF

Recommended Posts

How can I modify an existing mob/entity, how to change the spawn, AI, life,...?

I've already created custom entities, but this time I wanted to modify existing entities. They have something to do with "@override".
I'm in Forge 1.18.1

 

Thanks!😄

Link to comment
Share on other sites

Events, mostly.

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

You can better explain how to do this using events...?

It's just that I haven't found much content on the internet and I really have no idea how to change something from vanilla.  😓

 

Suppose I want to change a zombie's attributes, how would I do that?  🤔

Link to comment
Share on other sites

        @SubscribeEvent
        public static void entityJoinWorld(EntityJoinWorldEvent event){
            event.getEntity() // ? 
              //Entity#getAttributes().addTransientAttributeModifiers              ?
              //event.getAttributes().addTransientAttributeModifiers               ?
              //event.getEntity.addTransientAttributeModifiers                     ?

        }

Is it something like that?
Does it work on 1.18.1? I'm putting it in a class that I named ForgeEvents.

It's just that I'm really lost on this topic. Where for sure I have to put this code, because it gives an error in any part I put.

 

🤔

If it's simpler to explain, it could teach me how to remove the spawn of a mob (remove it completely (ex: stop spawning zombies)), so I remove the entity and change it for a custom one.

Link to comment
Share on other sites

7 hours ago, Brun0_MF said:
        @SubscribeEvent
        public static void entityJoinWorld(EntityJoinWorldEvent event){
            event.getEntity() // ? 
              //Entity#getAttributes().addTransientAttributeModifiers              ?
              //event.getAttributes().addTransientAttributeModifiers               ?
              //event.getEntity.addTransientAttributeModifiers                     ?

        }

Is it something like that?
Does it work on 1.18.1? I'm putting it in a class that I named ForgeEvents.

It's just that I'm really lost on this topic. Where for sure I have to put this code, because it gives an error in any part I put.

 

🤔

If it's simpler to explain, it could teach me how to remove the spawn of a mob (remove it completely (ex: stop spawning zombies)), so I remove the entity and change it for a custom one.

like this:

 

                Entity entity = event.getEntity();
                if (entity.isAlive() && entity instanceof ZombieEntity) {
                    ZombieEntity zombie = (ZombieEntity) entity;
                    // TODO ...
                    event.setCanceled(true);
                }

Cancel zombie spawn

Edited by Spring
Link to comment
Share on other sites

diesieben07, the first thing in the comment was what you sent, it wasn't an attempt, it was just the basis for the attempts.
I have a java course, but I haven't studied what each forge class has yet, and as the forge documentation is not very complete, it's difficult to know how to work with it.

Spring, won't this code to remove entities slow down the game? Since it will check each entity that is generated and eliminate if it is a zombie... (Just out of curiosity, since your code works...)

With what you said and with the code that Spring sent I got something...

        @SubscribeEvent(priority = EventPriority.HIGHEST)
        public static void entityJoinWorld(EntityJoinWorldEvent event){

            Entity entity = event.getEntity();
            if (entity.isAlive() && entity instanceof Zombie) {
                Zombie zombie = (Zombie) entity;
                zombie.getAttributes().addTransientAttributeModifiers(); //not complete
                //event.setCanceled(true);
            }



        }

 

With this code how can I do to, for example, increase movement speed or maximum health?

Something like:

     .addTransientAttributeModifiers(new AttributeModifier(    ?       ?      ?     ))

 

 

How do I use the AttributeModifier?

 

Link to comment
Share on other sites

What are the names and types of the parameters?

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

OK, now that I have the attributemodifier created how should I put it in that method and how will I define in which attribute it should add those values.🤔

    public static final AttributeModifier AM = new AttributeModifier("attributemodifier",5d, AttributeModifier.Operation.ADDITION);

                zombie.getAttributes().addTransientAttributeModifiers();

simply do "addTransientAttributeModifiers(AM);" doesn't work because it requires a Multimap

 

<edit> I've been reading a bit about multimap but I'm still not sure how to create a multimap correctly if they can tell me how to create a mutimap. I appreciate it, :) 

Edited by Brun0_MF
Link to comment
Share on other sites

Okay, an update...
I managed to create the multimap, I don't know if it's 100% correct (if not, thanks for the corrections)...
The problem is that it gives an error when I put it in ".addTransientAttributeModifiers(EntityModify());"

    public static final AttributeModifier AM = new AttributeModifier("attributemodifier",5d, AttributeModifier.Operation.ADDITION);

    public static Multimap<String,AttributeModifier> EntityModify(){
        Multimap<String, AttributeModifier> map = HashMultimap.create();
        map.put(Attributes.MOVEMENT_SPEED.getDescriptionId(),AM);
        return map;
    }
        @SubscribeEvent(priority = EventPriority.HIGHEST)
        public void entityJoinWorld(EntityJoinWorldEvent event){

            Entity entity = event.getEntity();
            if (entity.isAlive() && entity instanceof Zombie) {
                Zombie zombie = (Zombie) entity;
                zombie.getAttributes().addTransientAttributeModifiers(EntityModify()); //Error here
                //event.setCanceled(true);
            }



        }

 

Link to comment
Share on other sites

28 minutes ago, diesieben07 said:

Não sei por que fez disso um método, mas... Ok. Não dói nada. Seria melhor usar ImmutableMultimap em um campo final estático.

Seu problema, porém, é que (como você pode esperar ver) adicionarTransientAttributeModifiers leva um Multimap<Attribute, AttributeModifier>. Você está dando outra coisa.

I've been looking at examples of how to use multimap and most used it like that, so I decided to do that too. I don't think it makes a difference.
Ah thank you!
I really hadn't noticed.

 

 

Link to comment
Share on other sites


    public static final AttributeModifier AM = new AttributeModifier("attributemodifier",2000d, AttributeModifier.Operation.ADDITION);

    public static Multimap<Attribute,AttributeModifier> EntityModify(){
        Multimap<Attribute, AttributeModifier> map = HashMultimap.create();
        map.put(Attributes.MOVEMENT_SPEED,AM);
        return map;
    }



        @SubscribeEvent(priority = EventPriority.HIGHEST)
        public void entityJoinWorld(EntityJoinWorldEvent event){

            Entity entity = event.getEntity();
            if (entity.isAlive() && entity instanceof Zombie) {
                Zombie zombie = (Zombie) entity;
                zombie.getAttributes().addTransientAttributeModifiers(EntityModify());
                //event.setCanceled(true);
            }



        }



    

This is the code...
It turns out that something must be missing, because it's not affecting the entity.

event.setCanceled(true) works, but the rest doesn't.

I think it's because we haven't sent data for the event yet.
We create an instance of a zombie based on the event, but we don't send the data back to it.

Could you tell me how to make it work?

Link to comment
Share on other sites

4 hours ago, Brun0_MF said:

I've been looking at examples of how to use multimap and most used it like that, so I decided to do that too. I don't think it makes a difference.

It's a technique called Generics. Just as a List<string> and List<integer> take strings and integers respectively, a HashMap (or Dictionary) maps a key to a value. For example if you wanted to create a table of products and their prices, you might use a HashMap<string,float> mapping the string-name of the product to the float-value of the product.
(A multimap is mostly just syntactic sugar for HashMap<K,List<V>> and the fact that it maps one key to multiple values is all you need to know)

So yes, the Type of the key value is important.

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

I went to do some tests and found that the error is here:

        @SubscribeEvent(priority = EventPriority.HIGHEST)
        public void entityJoinWorld(EntityJoinWorldEvent event){

            Entity entity = event.getEntity();
            if (entity.isAlive() && entity instanceof Zombie) {
                Zombie zombie = (Zombie) entity;
                zombie.getAttributes().addTransientAttributeModifiers(EntityModify());
                //event.setCanceled(true);
            }



        }

Error: Entity is not modified.

An instance of the Zombie class is created based on the event, but we don't modify the event, so nothing happens.
The event had to be exchanged for the modified entity "zombie", but I can't find a way to do that...😓

 

 

Another question, how to completely disable the natural generation of an entity, without waiting for it to spawn and then despawn.🤔

Link to comment
Share on other sites

But when I wanted to disable an event I used "event.setCanceled (true);", when I modified the entity I didn't use the event anymore but the "zombie.getAttributes(). AddTransientAttributeModifiers (EntityModify());" (I used "zombie" and not event). Don't we have to pass the zombie class to the event?

Link to comment
Share on other sites

Or you could just have used git the way git is meant to be used.

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

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

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

    • I'm using Modrinth as a launcher for a forge modpack on 1.20.1, and can't diagnose the issue on the crash log myself. Have tried repairing the Minecraft instillation as well as removing a few mods that have been problematic for me in the past to no avail. Crash log is below, if any further information is necessary let me know. Thank you! https://paste.ee/p/k6xnS
    • Hey folks. I am working on a custom "Mecha" entity (extended from LivingEntity) that the player builds up from blocks that should get modular stats depending on the used blocks. e.g. depending on what will be used for the legs, the entity will have a different jump strength. However, something unexpected is happening when trying to override a few of LivingEntity's functions and using my new own "Mecha" specific fields: instead of their actual instance-specific value, the default value is used (0f for a float, null for an object...) This is especially strange as when executing with the same entity from a point in the code specific to the mecha entity, the correct value is used. Here are some code snippets to better illustrate what I mean: /* The main Mecha class, cut down for brevity */ public class Mecha extends LivingEntity { protected float jumpMultiplier; //somewhere later during the code when spawning the entity, jumpMultiplier is set to something like 1.5f //changing the access to public didn't help @Override //Overridden from LivingEntity, this function is only used in the jumpFromGround() function, used in the aiStep() function, used in the LivingEntity tick() function protected float getJumpPower() { //something is wrong with this function //for some reason I can't correctly access the fields and methods from the instanciated entity when I am in one of those overridden protected functions. this is very annoying LogUtils.getLogger().info(String.valueOf(this.jumpMultiplier))) //will print 0f return this.jumpMultiplier * super.getJumpPower(); } //The code above does not operate properly. Written as is, the entity will not jump, and adding debug logs shows that when executing the code, the value of this.jumpMultiplier is 0f //in contrast, it will be the correct value when done here: @Override public void tick() { super.tick(); //inherited LivingEntity logic //Custom logic LogUtils.getLogger().info(String.valueOf(this.jumpMultiplier))) //will print 1.5f } } My actual code is slightly different, as the jumpMuliplier is stored in another object (so I am calling "this.legModule.getJumpPower()" instead of the float), but even using a simple float exactly like in the code above didn't help. When running my usual code, the object I try to use is found to be null instead, leading to a crash from a nullPointerException. Here is the stacktrace of said crash: The full code can be viewed here. I have found a workaround in the case of jump strength, but have already found the same problem for another parameter I want to do, and I do not understand why the code is behaving as such, and I would very much like to be able to override those methods as intended - they seemed to work just fine like that for vanilla mobs... Any clues as to what may be happening here?
    • Please delete post. Had not noticed the newest edition for 1.20.6 which resolves the issue.
    • https://paste.ee/p/GTgAV Here's my debug log, I'm on 1.18.2 with forge 40.2.4 and I just want to get it to work!! I cant find any mod names in the error part and I would like some help from the pros!! I have 203 mods at the moment.
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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