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



×
×
  • Create New...

Important Information

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