List Basics
Values, Indices, and ::*
::*set {list::*} to "hey", "how", "are", "you" and 55
# the following is not code, it's just a representation of the list
list::1 -> "hey"
list::2 -> "how"
list::3 -> "are"
list::4 -> "you"
list::5 -> 55send {list::3} to player
# Player receives "are"on death of player:
set {last-death::%uuid of victim%} to event-location
# send the player their specific death location
command /last-death:
executable by: players
trigger:
send {last-death::%uuid of sender%} to senderLooping, Adding, Clearing, and Removing
Last updated