Staff Pick: Torch Light
By
mcmonkeyCreated: 2015/01/02 20:20:48 UTC-08:00 (10 years and 22 days ago)
Edited: 2016/12/14 20:24:02 UTC-08:00 (8 years and 40 days ago)
Likes: 2
Staff pick as of: 2016/08/06 06:55:53 UTC-07:00 (8 years and 171 days ago)
Denizen Version: 0.9.8
Script Version: 1.2
Description:
# +----------------------
# | Torch Light
# |
# | Light from your torch without placing it!
# +----------------------
#
# @author mcmonkey
# @denizen-version 0.9.8
# @version 1.2
#
# Installation:
# Just drop it in your scripts folder :)
#
# Usage:
# Hold a torch and run around! Also works in your offhand!
#
# +----------------------
FORUM:
https://forum.mcmonkey.org/viewtopic.php?f=9&t=8
Download script |
View raw script# +----------------------
# | Torch Light
# |
# | Light from your torch without placing it!
# +----------------------
#
# @author mcmonkey
# @denizen-version 0.9.8
# @version 1.2
#
# Installation:
# Just drop it in your scripts folder :)
#
# Usage:
# Hold a torch and run around! Also works in your offhand!
#
# +----------------------
torch_light_world:
type: world
debug: false
events:
on player steps on block:
- if <player.has_flag[torch_light_prev]> {
- light <context.previous_location> reset
- flag player torch_light_prev:!
}
- if <player.item_in_hand.material.name||null> == torch || <player.item_in_offhand.material.name||null> == torch {
- light <context.location.add[0,1,0]> 14
- flag player torch_light_prev
}
on player quits:
- if <player.has_flag[torch_light_prev]> {
- light <player.location> reset
- flag player torch_light_prev:!
}
torch_light_version:
type: version
name: Torch Light
id: 13
description: Lights your way!
version: 1.2
View History