Minecraft Parchment mod 2026 download
logo
minecraft mod Parchment

Parchment

Game Version: CB 1.7.9-R0.2
Total Downloads: 2,327
Updated: Sep 30, 2014
Created: Mar 12, 2013
Download ParchmentDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
v0.2.1 beta 2.18 MB Sep 30, 2014 CB 1.7.9-R0.2 579 download Parchment v0.2.1 betaDownload
v0.2.0 beta 1.96 MB Feb 9, 2014 CB 1.7.2-R0.2 336 download Parchment v0.2.0 betaDownload
v0.1.7 beta 355.81 KB Aug 4, 2013 CB 1.6.2-R0.1 525 download Parchment v0.1.7 betaDownload
v0.1.5 beta 339.15 KB Jun 20, 2013 CB 1.5.2-R1.0 239 download Parchment v0.1.5 betaDownload
0.1.3 Snapshot beta 300.34 KB Apr 5, 2013 CB 1.5.1-R0.1 235 download Parchment 0.1.3 Snapshot betaDownload
0.1.2 Snapshot beta 299.71 KB Apr 2, 2013 1.5.1 208 download Parchment 0.1.2 Snapshot betaDownload
0.1.1 Snapshot beta 185.50 KB Mar 23, 2013 1.5.1 205 download Parchment 0.1.1 Snapshot betaDownload

Screenshots

Description

Share this:

Logo

Parchment allows rapid scripting of mine craft based on a TCL like scripting language.

Downloads | Source | Tutorial | Command Reference

If you are using Parchment, I would love to get your feedback! I can also help with your scripts, as the documentation isn't that great at the moment. Send me a PM, or look for to basicer on espernet.

Getting Started

  • Throw the JAR file in your plugins folder.
  • Create a Parchment folder in your plugins older.
  • Create a spells folder inside the Parchment folder.
  • Throw the below archer.tcl file in the spells folder
  • Be an op, type /cast archer
  • TCL scripts should be sourced as they are changed without reloading.
  • Ignore all the crazy debuging messages.

Quick Examples

Archer
# archer.tcl
# Turn the caster into the archer class.
# Type `/cast archer` to activate

bind cast onCast

proc onCast {} {
	set who $caster	
	player $who clear 
	
	set bow [item new]
	item $bow type bow
	item $bow enchant "Punch 2"
	item $bow name "Power Bow"
	item $bow lore "This great bow\nWill Rock your socks."
	item $bow forceInv $who 0
	item $bow bind powerbow
	

	set plate [item new]
	item $plate type diamond_chestplate
	item $plate equip $who
	

	set helmet [item new] 
	item $helmet type diamond_helmet
	item $helmet equip $who
	
        item new type arrow more give $caster
}
Jump
# jump.tcl
# Hold an item in your hand and type /cast item bind jump
# Point toward where you want to go and left click.

bind cast x

proc x {} {
	entity $caster still
	entity $caster teleport 250
	entity $caster still
}

Differences from TCL

  • If is missing elseif.
  • Index anything! (Arrays, Lists, Dicts)
  • Values are more strongly typed.
  • Not all language constructs are implemented yet. (String is noticeably missing).
  • Some variables are "prototype" like behavior ($caster, $target, $world, $server).
  • Written from scratch by me.
  • More bugs.

Required dev.bukkit.org Disclaimer

This plugin utilizes Hidendra's plugin metrics system, which means that the following information is collected and sent to mcstats.org:

  • Some unique identifier
  • Version information for Java, the server, Metrics, and Parchment
  • If your server is in offline mode or not.
  • The OS version, name and architecture
  • The core count for the CPU
  • The number of players online
  • The number of scripts loaded

Opting out of this service can be done by editing plugins/Plugin Metrics/config.yml and changing opt-out to true. Chances are you already knew that though.

Comments

Add a comment