Guest User

Untitled

a guest
Dec 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. # The name for this shape
  2. Name=MinimalSignDialRedstone
  3. # Version 2 of shape files allows for many new things.
  4. # 3D gates, new format for blocks, woosh and light order etc
  5. Version=2
  6.  
  7. # GateShape now needs "Layer" lines
  8. # Each Layer requires a #number= and then a newline.
  9. # Blocks can only be placed into layers.
  10. # a 2D gate would have only 1 layer.
  11. # Acceptable blocks are:
  12. # [I] = Ignored
  13. # [S] = Stargate Material
  14. # [P] = Air blocks that will turn into the portal material when activated.
  15.  
  16. # Extra parameters:
  17. # --- These parameters are 1 of each per gate ---
  18. # :N = Block where the name sign will be created. This is optional.
  19. # :EP = Block where players teleport in at. The players feet will be on this block.
  20. # :EM = Block where minecarts teleport in at. The minecart wheels will be on this block.
  21. # :A = Block where the activation switch is attached to. 1 per gate!
  22. # The only restriction is that the block that faces it must be "I" (so nothing is in the way)
  23. # The switch will face in the positive layer direction.
  24. # In this example the switch will face towards where layer 3 would be (if there was a 3rd layer)
  25. # :D = Block the sign dialer hangs from. Only 1 per gate!
  26. # The only restriction is that the block that faces it must be "I" (so nothing is in the way)
  27. # This block is not required, so shapes with this block can be either type. (sign or dial)
  28. # Without this block a gateshape can only be /dial gate.
  29. # :IA = Iris Activation Switch - Not required unless you want to be able to place an Iris on the gate.
  30. #
  31. # IA, D, N, and A cannot be the same block, and none of those can contain W
  32. #
  33. # --- There can be many of these per gate -- (Currently no restriction)
  34. # :L = Blocks that will light when gate is activated
  35. # Optionally you may add a #number after L to indicate the order it lights.
  36. # Defaults to 1 if there is no #
  37. # :W = Blocks that will woosh when gate is activated
  38. # Optionally you may add a #number after W to indicate the order it wooshes in.
  39. # Defaults to 1 if there is no # and the wait between numbers is configurable below.
  40. # After all #s are active it removes them in reverse order but
  41. # if a block is [P:W] the block will stay as portal material until gate is shutdown.
  42. #
  43. # Redstone Blocks:
  44. # --- There can only be 1 of each of these per gate, and they can-not occupy the same block as anything else ---
  45. # [RD] = Redstone activation block. A redstone charge next to this block will activate the gate.
  46. # This block requires a :D block for targetting. This block should be on top of a [S] block.
  47. # [RS] = Redstone sign dialer cycle block. A redstone charge next to this block will cycle sign targets.
  48. # This block requires a :D block for targetting. This block should be on top of a [S] block.
  49. # [RA] = Redstone gate Activated block. This block will provide redstone charge when the gate is activated.
  50. # This block should be on top of a [S] block.
  51.  
  52. GateShape=
  53.  
  54. Layer#1=
  55. [I][I:W#3][I]
  56. [I][P:W#2][I]
  57. [I][P:W#1][I]
  58. [I][S:L#1:EP][I]
  59. [I][RA][I]
  60. [I][S][I]
  61.  
  62. Layer#2=
  63. [I][I][I]
  64. [S:A][I][S:D]
  65. [S][I][S]
  66. [RD][S:EM][RS]
  67. [S][I][S]
  68. [I][I][I]
Add Comment
Please, Sign In to add comment