Hello guys, I'm Mike. I need you guy help. I have a problem...
How do I make something that like a Iron Golem.
Iron golem have to make the head torso arm and leg but how do I make?
Example you place an Glass on the Middle and Wooden on the bottom and I use a stick hit it on the Glass and it will active like a Nether reactor.
How do I make my own?
Can you paste your script how does it work?
Thank alot. I NEED HELP
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
I need you help!
I need to work on my mod!!
Please!
Rollback Post to RevisionRollBack
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
function useItem(x,y,z,itemId,blockId,side)
{
buildnetherreactor(x,y,z);
}
function buildnetherreactor(x,y,z)
{
setTile(x,y,z,41);
//set other blocks...
}
function useItem(x,y,z,itemId,blockId,side)
{
buildnetherreactor(x,y,z);
}
function buildnetherreactor(x,y,z)
{
setTile(x,y,z,41);
//set other blocks...
}
Can I build my own?
Can you give me an Example?
Rollback Post to RevisionRollBack
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
You only must set the blocks,you would like,to insta-build alll what you want.
When you still need an example then write it.
I can't script this mod I need a help.
This is AN EXAMPLE:
Okay, To build a house in my instant build mod is
1.build a wooden planks on the bottom and build a glass in the middle
2.Use a clock and hit on the glass and it will turn into a house(Or anything you want to.)
Please help
I always want this script please post your script I need it and It will not work without help.
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
ok. pm mcpemodder! he made the dirt, and fire Boss. he is the best to contact
I already send message I hope he will respond mine.
Rollback Post to RevisionRollBack
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
This example is how I made my commander in my mod.Gre's the code:
function useItem(x,y,z,itemId,blockId,side)
{
//if item is a stick,block is wood and on top of it glass...
if (itemId == 292 && blockId == 5 && getTile(x,y + 1,z) == 20)
{
//Call the build-function
buildcommander(x,y,z);
}
}
//Build function :Commander-building
function buildcommander(x,y,z)
{
for (var i = 0;i < 7;i++)
{
for (var j = 0;j < 5;j++)
{
for (var k = 0;k < 7;k++)
{
setTile(x - 3 + i,y - 2 + j,z - 3 + k,0);
}
}
}
for (var i = 0;i < 7;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x - 3 + i,y - 2,z - 3 + j,155);
}
}
for (var i = 0;i < 7;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x - 3 + i,y + 2,z - 3 + j,155);
}
}
for (var i = 0;i < 3;i++)
{
for (var j = 0;j < 3;j++)
{
setTile(x - 1 + i,y - 2,z - 1 + j,89);
}
}
for (var i = 0;i < 3;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x - 3,y - 1 + i,z - 3 + j,155);
}
}
for (var i = 0;i < 3;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x + 3,y - 1 + i,z - 3 + j,155);
}
}
for (var i = 0;i < 3;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x - 3 + j,y - 1 + i,z - 3,155);
}
}
for (var i = 0;i < 3;i++)
{
for (var j = 0;j < 7;j++)
{
setTile(x - 3 + j,y - 1 + i,z + 3,155);
}
}
for (var i = 0;i < 2;i++)
{
for (var j = 0;j < 5;j++)
{
setTile(x - 3,y + i,z - 2 + j,20);
}
}
for (var i = 0;i < 2;i++)
{
for (var j = 0;j < 5;j++)
{
setTile(x + 3,y + i,z - 2 + j,20);
}
}
for (var i = 0;i < 2;i++)
{
for (var j = 0;j < 5;j++)
{
setTile(x - 2 + j,y + i,z - 3,20);
}
}
for (var i = 0;i < 2;i++)
{
for (var j = 0;j < 5;j++)
{
setTile(x - 2 + j,y + i,z + 3,20);
}
}
setTile(x - 2,y,z - 3,20);
setTile(x - 2,y + 1,z - 3,20);
setTile(x + 2,y,z - 3,20);
setTile(x + 2,y + 1,z - 3,20);
setTile(x,y - 1,z - 3,0);
setTile(x,y,z - 3,0);
setTile(x - 2,y - 1,z + 2,41);
setTile(x - 1,y - 1,z + 2,57);
setTile(x,y - 1,z + 2,42);
setTile(x + 1,y - 1,z + 2,42);
setTile(x + 2,y - 1,z + 2,42);
setTile(x + 2,y - 1,z + 1,42);
commanderx = x + 2;
commandery = y - 1;
commanderz = z + 2;
commander = 1;
}
It's relly easy,you just must set the blocks you want to the blocktyp you want.
I build my building every time in creative and then I look where the block are and use the coordinates in my code.
But therefore you must choose the middle and for example,when the block over the middle should be goldblock,then you must make it so:
What is love? Could I get one? Could I make one? Could I have one? Could I have it on my school?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
To post a comment, please login or register a new account.
How do I make something that like a Iron Golem.
Iron golem have to make the head torso arm and leg but how do I make?
Example you place an Glass on the Middle and Wooden on the bottom and I use a stick hit it on the Glass and it will active like a Nether reactor.
How do I make my own?
Can you paste your script how does it work?
Thank alot.
I NEED HELP
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
I can't make my mod anymore if I don't know about this script
All I need is help please...
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
I need to work on my mod!!
Please!
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
function useItem(x,y,z,itemId,blockId,side) { buildnetherreactor(x,y,z); } function buildnetherreactor(x,y,z) { setTile(x,y,z,41); //set other blocks... }Can I build my own?
Can you give me an Example?
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
You only must set the blocks,you would like,to insta-build alll what you want.
When you still need an example then write it.
I can't script this mod I need a help.
This is AN EXAMPLE:
Okay, To build a house in my instant build mod is
1.build a wooden planks on the bottom and build a glass in the middle
2.Use a clock and hit on the glass and it will turn into a house(Or anything you want to.)
Please help
I always want this script please post your script I need it and It will not work without help.
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
I already send message I hope he will respond mine.
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.
function useItem(x,y,z,itemId,blockId,side) { //if item is a stick,block is wood and on top of it glass... if (itemId == 292 && blockId == 5 && getTile(x,y + 1,z) == 20) { //Call the build-function buildcommander(x,y,z); } } //Build function :Commander-building function buildcommander(x,y,z) { for (var i = 0;i < 7;i++) { for (var j = 0;j < 5;j++) { for (var k = 0;k < 7;k++) { setTile(x - 3 + i,y - 2 + j,z - 3 + k,0); } } } for (var i = 0;i < 7;i++) { for (var j = 0;j < 7;j++) { setTile(x - 3 + i,y - 2,z - 3 + j,155); } } for (var i = 0;i < 7;i++) { for (var j = 0;j < 7;j++) { setTile(x - 3 + i,y + 2,z - 3 + j,155); } } for (var i = 0;i < 3;i++) { for (var j = 0;j < 3;j++) { setTile(x - 1 + i,y - 2,z - 1 + j,89); } } for (var i = 0;i < 3;i++) { for (var j = 0;j < 7;j++) { setTile(x - 3,y - 1 + i,z - 3 + j,155); } } for (var i = 0;i < 3;i++) { for (var j = 0;j < 7;j++) { setTile(x + 3,y - 1 + i,z - 3 + j,155); } } for (var i = 0;i < 3;i++) { for (var j = 0;j < 7;j++) { setTile(x - 3 + j,y - 1 + i,z - 3,155); } } for (var i = 0;i < 3;i++) { for (var j = 0;j < 7;j++) { setTile(x - 3 + j,y - 1 + i,z + 3,155); } } for (var i = 0;i < 2;i++) { for (var j = 0;j < 5;j++) { setTile(x - 3,y + i,z - 2 + j,20); } } for (var i = 0;i < 2;i++) { for (var j = 0;j < 5;j++) { setTile(x + 3,y + i,z - 2 + j,20); } } for (var i = 0;i < 2;i++) { for (var j = 0;j < 5;j++) { setTile(x - 2 + j,y + i,z - 3,20); } } for (var i = 0;i < 2;i++) { for (var j = 0;j < 5;j++) { setTile(x - 2 + j,y + i,z + 3,20); } } setTile(x - 2,y,z - 3,20); setTile(x - 2,y + 1,z - 3,20); setTile(x + 2,y,z - 3,20); setTile(x + 2,y + 1,z - 3,20); setTile(x,y - 1,z - 3,0); setTile(x,y,z - 3,0); setTile(x - 2,y - 1,z + 2,41); setTile(x - 1,y - 1,z + 2,57); setTile(x,y - 1,z + 2,42); setTile(x + 1,y - 1,z + 2,42); setTile(x + 2,y - 1,z + 2,42); setTile(x + 2,y - 1,z + 1,42); commanderx = x + 2; commandery = y - 1; commanderz = z + 2; commander = 1; }It's relly easy,you just must set the blocks you want to the blocktyp you want.
I build my building every time in creative and then I look where the block are and use the coordinates in my code.
But therefore you must choose the middle and for example,when the block over the middle should be goldblock,then you must make it so:
Does it hurt? Does it have a pain? Does it nice? Does it feel happy? Does it make you better?
Maybe I can have one. Maybe I will get one. Maybe I can fell it. Maybe I can touched it.
All of I do is scripting to work on my program. Never be more than this.