Advertisement
Skylinerw

@JonnyC616

Sep 16th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. "SpawnPotentials" holds a list of different entities that are capable of being summoned. "Weight" is the chance in comparison to one another. Since the weights are all equal, they all have an equal chance of spawning. The higher the value, the higher the chance for that entity compared to others.
  2.  
  3. "Delay" must be -1 to begin within "SpawnPotentials".
  4.  
  5.  
  6. Compact:
  7.  
  8.  
  9. /setblock -247 32 -22 minecraft:mob_spawner 0 replace {SpawnPotentials:[{Weight:1,Entity:{id:"Slime",Size:0,Pos:[-247.5,37.0,-22.5]}},{Weight:1,Entity:{id:"Slime",Size:1,Pos:[-247.5,37.0,-22.5]}},{Weight:1,Entity:{id:"Slime",Size:2,Pos:[-247.5,37.0,-22.5]}},{Weight:1,Entity:{id:"Slime",Size:3,Pos:[-247.5,37.0,-22.5]}}],SpawnCount:4,SpawnRange:100,RequiredPlayerRange:100,Delay:-1,MinSpawnDelay:100,MaxSpawnDelay:100,MaxNearbyEntities:8}
  10.  
  11.  
  12. Indented:
  13.  
  14.  
  15. /setblock -247 32 -22 minecraft:mob_spawner 0 replace {
  16. SpawnPotentials:[
  17. {
  18. Weight:1,
  19. Entity:{
  20. id:"Slime",
  21. Size:0,
  22. Pos:[-247.5,37.0,-22.5]
  23. }
  24. },
  25. {
  26. Weight:1,
  27. Entity:{
  28. id:"Slime",
  29. Size:1,
  30. Pos:[-247.5,37.0,-22.5]
  31. }
  32. },
  33. {
  34. Weight:1,
  35. Entity:{
  36. id:"Slime",
  37. Size:2,
  38. Pos:[-247.5,37.0,-22.5]
  39. }
  40. },
  41. {
  42. Weight:1,
  43. Entity:{
  44. id:"Slime",
  45. Size:3,
  46. Pos:[-247.5,37.0,-22.5]
  47. }
  48. }
  49. ],
  50. SpawnCount:4,
  51. SpawnRange:100,
  52. RequiredPlayerRange:100,
  53. Delay:5,
  54. MinSpawnDelay:100,
  55. MaxSpawnDelay:100,
  56. MaxNearbyEntities:8
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement