ScriptCraft: Building cool things using Javascript in Minecraft
walterhiggins.net
ScriptCraft: Building cool things using Javascript in Minecraft
1–10 of 34 posts
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#2Minecraft is aiming for some extensive modding re-write, which will make installing and using mods easier. I 'm not sure how much work the author will have to do to get scriptcraft running under the new system.
I'm also interested in how it compares to existing world building tools. Most of those are out-of-minecraft software. But things like world edit, etc.
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#3This is, potentially, amazing. Minecraft is aiming for some extensive modding re-write, which will make installing and using mods easier. I 'm not sure how much work the author will have to do to get scriptcraft running under the new system. I'm also interested in how it compares to existing world building tools. Most of those are out-of-minecraft software. But things like world edit, etc.
/js box('35:15',4,9,1)
...creates a 2001 Monolith at the current location. The real power of ScriptCraft though is its ability to load and execute javascript files containing functions, and the ability to easily extend the Drone class. E.g. // file monolith.js
Drone.extend('monolith',function(){
return this.box('35:15',4,9,1);
});
After loading monolith.js, players can do the following to create 3 monoliths... /js monolith().right(6).monolith().right(6).monolith()
I've provided a couple of example scripts but it will be interesting to see what players do with this.Re: ScriptCraft: Building cool things using Javascript in Minecraft
#4This is, potentially, amazing. Minecraft is aiming for some extensive modding re-write, which will make installing and using mods easier. I 'm not sure how much work the author will have to do to get scriptcraft running under the new system. I'm also interested in how it compares to existing world building tools. Most of those are out-of-minecraft software. But things like world edit, etc.
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#5Re: ScriptCraft: Building cool things using Javascript in Minecraft
#6This is, potentially, amazing. Minecraft is aiming for some extensive modding re-write, which will make installing and using mods easier. I 'm not sure how much work the author will have to do to get scriptcraft running under the new system. I'm also interested in how it compares to existing world building tools. Most of those are out-of-minecraft software. But things like world edit, etc.
I would love if the Minecraft guys provided Javascript scriptability without the need for a mod.
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#7Apart from these bots acting on their own, players could send commands to bots via private message or towny/faction chat. Oh, and speaking of towny and factions, or any sort of teams reallly: what if this sort of "Minecraft Robot Wars" competition was set up so there'd be a few human players, with each having their bots who know their owners, but otherwise nobody knowing who is a player or a bot, and who is on what side... ?!
So you could e.g. either all join up in one town/faction and give your alliance away for more efficiency/power, or split up and try to play all sorts of diplomatic games via chat and actions, and try to deceive bots/people long and short term. Minecraft online is so much about trust, I never played another game that came close; and while that can be very frustrating and petty with humans, it seems hilarious to try to code bots that act real or otherwise deceive ^^ Especially if everybody knows that it's the goal of the game.
Please, nobody make this happen, this would destroy my life. Even just thinking about the possibilities is addicting haha.
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#8Earlier quoted context omitted.
I would love if the Minecraft guys provided Javascript scriptability without the need for a mod.
That would ruin the game for most players. It has to be a server mod.
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#9Isn't this sort of what the Raspberry Pi version of minecraft does?
More info here: http://www.minecraftwiki.net/wiki/Pi_Edition
Re: ScriptCraft: Building cool things using Javascript in Minecraft
#10By using the Bukkit server mod, which provides a stable plugin API, it is relatively easy to add a wrapper around a scripting engine [0].
For example, a plugin providing Rhino support [2] and one providing python support [2].
I would recommend either porting your work to the Bukkit framework, or working with one of the existing plugins to include some of the cool stuff you have made.
I don't currently know what the most popular scripting plugin currently available is, but I'm sure you can find it with a bit more digging than I have done.
[0] http://dev.bukkit.org/search/?scope=projects&search=scri...