Advertisement
Guest User

銃コマンド

a guest
Mar 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. #tagをつける
  2. scoreboard players tag @a add gun {SelectedItem:{id:"minecraft:carrot_on_a_stick",tag:{display:{LocName:"AK-47"}}}}
  3. #銃関係
  4. execute @a[score_gun_min=1,tag=gun] ~ ~ ~ summon armor_stand ~ ~ ~ {UUIDLeast:12L,UUIDMost:12L,Tags:["gun1"],NoGravity:1b,Marker:1b,Invisible:1}
  5. execute @a[score_gun_min=1,tag=gun] ~ ~ ~ tp @e[type=armor_stand,tag=gun1] @a[score_gun_min=1,tag=gun]
  6. execute @a[score_gun_min=1,tag=gun] ~ ~ ~ execute @e[type=armor_stand,tag=gun1] ~ ~ ~ summon Fireball ~ ~100 ~ {Tags:["gun2"],NoGravity:1b,ExplosionPower:0,direction:[0.0,0.0,0.0]}
  7. execute @a[score_gun_min=1,tag=gun] ~ ~ ~ execute @e[type=fireball,tag=gun2] ~ ~ ~ summon snowball ~ ~2.1 ~ {ownerName:00000000-0000-000c-0000-00000000000c}
  8. #scoreboard管理
  9. scoreboard players set @a[score_gun_min=1] gun 0
  10. scoreboard players tag @a[tag=gun] remove gun
  11. #銃管理
  12. execute @e[type=fireball,tag=gun2] ~ ~ ~ teleport @e[type=armor_stand,tag=gun1] ~ ~-100 ~
  13. execute @e[type=armor_stand,tag=gun1] ~ ~ ~ effect @e[r=2,c=1,type=!armor_stand,tag=Undead] 6 1 2 true
  14. execute @e[type=armor_stand,tag=GUN,score_GUN_min=2] ~ ~ ~ effect @e[r=2,c=1,type=!armor_stand,tag=!Undead,score_gun=0] 7 1 2 true
  15. #アンデット感知
  16. scoreboard players tag @e[type=skeleton] add Undead
  17. scoreboard players tag @e[type=stray] add Undead
  18. scoreboard players tag @e[type=wither_skeleton] add Undead
  19. scoreboard players tag @e[type=wither] add Undead
  20. scoreboard players tag @e[type=zombie] add Undead
  21. scoreboard players tag @e[type=husk] add Undead
  22. scoreboard players tag @e[type=zombie_pigman] add Undead
  23. scoreboard players tag @e[type=zombie_villager] add Undead
  24. #パーティクル
  25. execute @e[tag=gun1] ~ ~ ~ particle crit ~ ~1.5 ~ 0 0 0 0.01 1 force
  26. #ONにする場合:/scoreboard objectives add gun stat.useItem.minecraft.carrot_on_a_stick
  27. #OFFにする場合:/scoreboard objectives remove gun
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement