ScriptCraft Versions Save

Write Minecraft Plugins in JavaScript.

3.4.0

5 years ago

Fixes a major problem with setTimeout() and setTimer() on latest version of Bukkit. Also removing some CanaryMod-related documentation.

3.3.0

6 years ago

Bug Fixes. Updated from Spigot 1.11.2 to 1.12.2. Expanded documentation (sounds).

3.2.1

7 years ago

Bug fixes and update to spigot 1.11.2

3.2.0

8 years ago

Tested with Spigot 1.9 - new spigot events and entity types. Fixed issue #256 and issue #287

3.1.12

8 years ago

Added new modules

  • lightning

The entities module and lightning module are now documented.

To make lightning strikes when and where any arrow lands:

var lightning = require('lightning');
events.projectileHit( function( event ) {
  if ( entities.arrow( event.projectile ) ) {
    lightning( event.projectile );
  }
});

3.1.11

8 years ago

Added new modules: entities and spawn - see release notes.

3.1.10

8 years ago

Bug fix release - fixes sounds module for SpigotMC/Bukkit/Glowstone

3.1.9

8 years ago

Fixes bug #261

3.1.8

8 years ago

Bug fix release: fixes Drone module on Spigot 1.8.7 JDK 7

3.1.7

8 years ago

A minor bug fix release - fixes issue using recipes.create() on Mac OS X https://bugs.openjdk.java.net/browse/JDK-8072596