Need help with new DALEK-craft mod project.

Started by the sloth on

Topic category: Help with Minecraft modding (Java Edition)

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Need help with new DALEK-craft mod project.
Fri, 01/20/2017 - 08:39 (edited)

AFTER. The 1953 War of the Worlds mod is complete, my next mod project will be a dalek mod. I can't call it the "dalek mod" though because that name is already taken. Dalek craft features ONLY daleks. There is essentially just one mob, The dalek. However it has no casing yet so you must build a casing for it & programe the dalek to your will. A GUI will come up where you add items & computer parts into the dalek. But first you will need a dalek creature. They can be obtained by naturally finding them, converting animals to daleks, using the spawner or killing already developed daleks. After you have obtained a dalek you must then kill it. It will then drop itself as an item. You then put the item in the dalek casing along with the other required things. There will be two slots below that where you put the special dalek tools e.g Dalek gun & suction cup... Once activated it will behave acording to it's programing. There are multipule colours that the daleks can come in. Naturally spawning daleks will be most commonly found in wrecked space ship structures & can also be found terrorising villages. 

Edited by the sloth on Fri, 01/20/2017 - 08:39
Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Can someone please teach me
Tue, 02/07/2017 - 14:21

Can someone please teach me how to make structures for the mod?

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Can someone please teach me
Tue, 02/07/2017 - 14:21

Can someone please teach me how to make structures for the mod?

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Sorry I double posted again,
Tue, 02/07/2017 - 14:22

Sorry I double posted again, silly me.

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Estimated release date is
Tue, 02/07/2017 - 15:14

Estimated release date is about in a few days time.

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
How do you expand the radius
Tue, 02/07/2017 - 16:24

How do you expand the radius of the mob's awareness bubble?

Active 5 years ago
Joined Apr 2016
Points:
991

User statistics:

  • Modifications: 4
  • Forum topics: 22
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 273
RE:Oh, & what do you want your
Tue, 02/07/2017 - 23:40

@#73 

It's up to you. Come up with something creative that has to do with Daleks and Eonaut (which is a made up word meaning "dawn voyager" or "early sailor")

Or you could just call it a dalek-fied Eonaut

Active 5 years ago
Joined Apr 2016
Points:
991

User statistics:

  • Modifications: 4
  • Forum topics: 22
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 273
RE:Sorry I double posted again,
Tue, 02/07/2017 - 23:41

@#76 

Unfortunately I have no idea how to get structures to work. I've made schematics myself, but they just don't work. If you figure it out, let me know

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
For some reason the postes
Wed, 02/08/2017 - 05:34

For some reason the postes aren't coming up in order. 

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Can someone PLEASE tell me
Wed, 02/08/2017 - 06:10

Can someone PLEASE tell me how to make mobs with explosive projectiles.

Active 12 months ago
Joined Aug 2013
Points:
1162

User statistics:

  • Modifications: 4
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 737
First, your mob should
Wed, 02/08/2017 - 11:54

First, your mob should implement IRangedAttackMob. Then add EntityAIArrowAttack to the task list. (I have such inner feeling that maybe the recent versions of MCreator do that already).
Now all the magic happens in attackEntityWithRangedAttack() method.
There you practically just create an instance of your projectile (I use custom entity for it, but if you want, you can use vanilla EntityArrow, EntityFireball..... for it)
My looks like this(The highlighted parts are the important ones ):
    public void attackEntityWithRangedAttack(EntityLivingBase p_82196_1_, float p_82196_2_)
    {

            EntityShot entityarrow = new EntityShot(this.worldObj, this , 2);
               if(this.getHeldItem().getItem() instanceof mcreator_gunItem.ItemGun){
                entityarrow.setDamage(((mcreator_gunItem.ItemGun)this.getHeldItem().getItem()).getDamage() + 15);
                entityarrow.setKnockbackStrength(0);
                
                this.worldObj.playSoundAtEntity(this,((mcreator_gunItem.ItemGun)this.getHeldItem().getItem()).getShotSound(), 1.0F, 1.0F / (this.getRNG().nextFloat() * 0.4F + 0.8F));
               this.swingItem();
               this.worldObj.spawnEntityInWorld(entityarrow);}
            }

 

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Okay I'll try that, Thank you
Thu, 02/09/2017 - 07:02

Okay I'll try that, Thank you.

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
I'm confused. Is there a more
Sun, 02/12/2017 - 07:10

I'm confused. Is there a more simple way?

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
or not, there are a few
Tue, 02/14/2017 - 06:49

or not, there are a few delays, but that gives me more time to make more daleks, any suggestions?

Active 3 years ago
Joined Jul 2016
Points:
1077

User statistics:

  • Modifications: 9
  • Forum topics: 21
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 359
Is anyone still here anymore?
Wed, 02/15/2017 - 20:44

Is anyone still here anymore? Or are you just busy doing other things? I'm just curious to know. 

And here are all the daleks so far

[spoiler][/spoiler] Paradign daleks, 2005-2010 daleks, ironsides, movie daleks, old school daleks, 70s-80s daleks, renegades & suicides, imperials & special weapons daleks, the storm, Modder's custom daleks, council daleks, invasion daleks, exxilon daleks & that's all I can think of at the moment.