new script, phantom, turtle, fixed small chest 180
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 118 B |
|
@ -0,0 +1,79 @@
|
|||
#!/bin/bash
|
||||
|
||||
# depends on xdotool
|
||||
|
||||
|
||||
# focus on blender which is full screen on left screen
|
||||
xdotool mousemove 100 100 click 2
|
||||
|
||||
# wait 1 secon
|
||||
sleep 1
|
||||
|
||||
# deselect every block
|
||||
xdotool key a
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# select everything
|
||||
xdotool key a
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# put 3d cursor in the middle
|
||||
xdotool key shift+c
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# set origin
|
||||
xdotool key shift+ctrl+alt+c
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# origin to 3d cursor
|
||||
xdotool key 3
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# change to top view
|
||||
xdotool key KP_7
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press R to start rotating
|
||||
xdotool key r
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press 1
|
||||
xdotool key 1
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press 8
|
||||
xdotool key 8
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press 0
|
||||
xdotool key 0
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press enter
|
||||
xdotool key KP_Enter
|
||||
|
||||
# wait 1 second
|
||||
sleep 1
|
||||
|
||||
# press enter
|
||||
xdotool key ctrl+j
|
After Width: | Height: | Size: 212 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 13 KiB |
|
@ -10,6 +10,9 @@
|
|||
|
||||
/give @p minecraft:command_block_minecart
|
||||
|
||||
/summon phantom ~ ~ ~ {NoAI:1}
|
||||
|
||||
/summon turtle ~ ~ ~ {NoAI:1}
|
||||
|
||||
/summon bat ~ ~ ~ {NoAI:1}
|
||||
|
||||
|
|