SimCraft for Minecraft

!!

Welcome Guest

Dear visitor, welcome to MC Port Central. If this is your first visit here,  you should consider registering to show your support.   By registering you will give us an idea and clear indication of how in demand our work really are and will motivate our porting team to continue there work. We port vanilla mods to Bukkit and you will also find a lot of other related Minecraft material on our Forum.

Author Topic: Creeper movement speed  (Read 202 times)

Breci

  • Newbie
  • *
  • Posts: 3
Creeper movement speed
« on: July 22, 2012, 04:01:37 PM »
Hello,

I've edited my creeper to make him faster.
I did it on SSP and SMP by adding :

Code: [Select]
    public float getAIMoveSpeed()
    {
        return 0.70F;
    }

So i've try to add it on bukkit.

I found that the function name is now thx to EntityLiving :
func_48332_ar

so i added :
Code: [Select]
    public float func_48332_ar()
    {
        return 0.7F;
    }


I must add this because the new AI is enable

But the Creeper still at his normal movementspeed.
I've tried to change the value but this is the same thing.

Breci
« Last Edit: July 22, 2012, 04:05:22 PM by Breci »