Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| scriptcraft.jar release | 164.53 KB | Oct 13, 2017 | 1.12 | 1,674 | Download |
| 2.1.1 release | 118.53 KB | Aug 23, 2014 | CB 1.7.9-R0.2 | 2,137 | Download |
| 2.1.0 release | 121.91 KB | Jun 14, 2014 | CB 1.7.9-R0.1 | 365 | Download |
| v2.0.7 release | 114.08 KB | Apr 14, 2014 | CB 1.7.2-R0.3 | 619 | Download |
| v2.0.6 release | 112.65 KB | Mar 18, 2014 | CB 1.7.2-R0.3 | 239 | Download |
| ScriptCraft 2.0.5 release | 109.61 KB | Feb 19, 2014 | CB 1.7.2-R0.3 | 339 | Download |
| ScriptCraft 2.0.4 release | 108.10 KB | Feb 11, 2014 | CB 1.7.2-R0.2 | 212 | Download |
| ScriptCraft 2.0.1 release | 181.71 KB | Dec 29, 2013 | CB 1.7.2-R0.2 | 255 | Download |
| ScriptCraft Version 2.0 (Modules release) release | 170.71 KB | Dec 25, 2013 | CB 1.7.2-R0.2 | 180 | Download |
| ScriptCraft Version 1.7.2 (Mac Update) release | 158.14 KB | Dec 8, 2013 | 1.7.2 | 332 | Download |
| ScriptCraft Version 1.6.2 release | 157.00 KB | Oct 9, 2013 | CB 1.6.2-R1.0 | 471 | Download |
| ScriptCraft 1.5.2 - 2013-08-08 release | 65.04 KB | Aug 8, 2013 | CB 1.5.2-R1.0 | 677 | Download |
| ScriptCraft 1.5.2 - 2013-07-23 release | 64.17 KB | Jul 23, 2013 | CB 1.5.2-R1.0 | 603 | Download |
| ScriptCraft 1.5.2 - 2013-05-27 release | 61.71 KB | May 27, 2013 | CB 1.5.2-R0.1 | 815 | Download |
| ScriptCraft 1.5.1-20130331 release | 59.80 KB | Mar 31, 2013 | 1.5.1 | 694 | Download |
| ScriptCraft 1.4.7-20130309 release | 57.14 KB | Mar 9, 2013 | CB 1.4.7-R1.0 | 467 | Download |
| ScriptCraft 1.4.7-20130222 release | 55.39 KB | Feb 22, 2013 | CB 1.4.7-R1.0 | 256 | Download |
| ScriptCraft 1.4.7-20130219 release | 55.42 KB | Feb 19, 2013 | CB 1.4.7-R1.0 | 224 | Download |
| ScriptCraft 1.4.7-20130131 release | 41.76 KB | Feb 1, 2013 | CB 1.4.7-R0.1 | 308 | Download |
| ScriptCraft 1.4.6-20130125 release | 36.44 KB | Jan 25, 2013 | CB 1.4.7-R0.1 | 204 | Download |
| ScriptCraft 1.4.7-20130121 release | 35.21 KB | Jan 21, 2013 | CB 1.4.7-R0.1 | 210 | Download |
| ScriptCraft 1.4.6-20130120 release | 36.03 KB | Jan 20, 2013 | CB 1.4.6-R0.3 | 231 | Download |
| ScriptCraft 1.4.6-20130115b release | 23.17 KB | Jan 15, 2013 | CB 1.4.6-R0.3 | 177 | Download |
| ScriptCraft 1.4.6-20130115 release | 22.27 KB | Jan 15, 2013 | CB 1.4.6-R0.3 | 160 | Download |
| ScriptCraft 1.4.6-20130113 release | 22.00 KB | Jan 13, 2013 | CB 1.4.6-R0.3 | 155 | Download |
| ScriptCraft v1.0.1 release | 20.69 KB | Jan 12, 2013 | CB 1.4.6-R0.3 | 178 | Download |
| ScriptCraft v1.0 release | 18.12 KB | Jan 10, 2013 | CB 1.4.6-R0.3 | 173 | Download |
| ScriptCraft 2.0.2 beta | 102.71 KB | Jan 14, 2014 | CB 1.7.2-R0.2 | 287 | Download |
| ScriptCraft 2.0.1 (mac fixes) beta | 99.11 KB | Jan 5, 2014 | CB 1.7.2-R0.2 | 182 | Download |
Screenshots
Description
ScriptCraft lets you create your own mods using Javascript. ScriptCraft uses the CommonJS module system (the same module loading system used by Node.js) so managing your code will be easier. You can also run Javascript code on the in-game command prompt or extend the game by writing plugins that use the Bukkit API in javascript.
Examples:
At the command prompt type:
/js 1 + 1
> 2
… Any javascript code can be evaluated at the in-game command prompt.
/js alert( 'Hello ' + self.name )
> Hello walterh
… Special bukkit variables are available via javascript , for example the server object is the instance of org.bukkit.Server . Writing event handlers in ScriptCraft is relatively easy…
events.blockBreak( function( event ) {
echo(event.player, 'You broke a block!' );
});
events.playerJoin( function( event ) {
echo( event.player, 'Welcome to the server!' );
});
… Any bukkit event can be handled. The above code prints the name of any player who breaks a block in the game. ScriptCraft comes with some built-in functions to make building easier…
/js box( blocks.wool.black, 4, 9 , 1)
… creates a 2001 Monolith 4 blocks wide by 9 blocks high by 1 block long.
The full bukkit API can be used via javascript to write new mods. Yes – you can write bukkit plugins in javascript! See ScriptCraft on GitHub for more information. Full documentation is available on the github docs page.
A Youtube Video demonstrating Exploding Arrows in ScriptCraft
A Youtube video demonstrating a mini-game (SnowBall Fight)
There's more information about ScriptCraft on my blog
Get 0.05 TON 💎
Download



Add a comment