Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. # Web doc reference for event strategies:
  2. # http://dev.bukkit.org/server-mods/homespawnplus/pages/strategy-doc/
  3. #
  4. events:
  5. # strategies to use when player is joining the game
  6. onJoin:
  7. - spawnNewPlayer
  8. - spawnSpecificWorld:WorldHub:default
  9. - default
  10. # strategies to use when player is respawning after a death
  11. onDeath:
  12. - homeLocalWorld
  13. - spawnLocalWorld
  14.  
  15. # strategies to use when player types "/spawn"
  16. onSpawnCommand:
  17. - spawnLocalWorld
  18. - spawnDefaultWorld
  19.  
  20. # strategies to use when player types "/groupspawn"
  21. onGroupSpawnCommand:
  22. - spawnGroup
  23.  
  24. # strategies to use when player types "/home"
  25. onHomeCommand:
  26. - homeLocalWorld
  27.  
  28. # strategies to use when player types "/home name"
  29. onNamedHomeCommand:
  30. - homeNamedHome
  31.  
  32. # strategies to use when player types "/spawn name"
  33. onNamedSpawnCommand:
  34. - spawnNamedSpawn
  35.  
  36. # a crossWorld teleport that didn't involve Multiverse
  37. crossWorldTeleport:
  38. - spawnLastLocation
  39.  
  40. # a crossWorld teleport by Multiverse
  41. multiverseCrossWorldTeleport:
  42. - spawnLastLocation
  43.  
  44. # a non-crossWorld teleport by Multiverse
  45. multiverseTeleport:
  46. - default
  47.  
  48. worldhubCommand:
  49. - modeRememberLocation
  50. - spawnSpecificWorld:WorldHub:default
  51.  
  52. diamondheightsportal:
  53. multiverseCrossWorldTeleport:
  54. - modeMultiverseSourcePortal:DiamondHeights
  55. - spawnLastLocation
  56.  
  57. chocolateportal:
  58. multiverseCrossWorldTeleport:
  59. - modeMultiverseSourcePortal:chocoalte
  60. - spawnLastLocation
  61.  
  62.  
  63. # example of world-specific strategy
  64. # world:
  65. # myworld:
  66. # onDeath:
  67. # - homeLocalWorld
  68. # - spawnLocalWorld
  69. # onHomeCommand:
  70. # - homeLocalWorld
  71. #
  72. # example of permission-specific strategy
  73. # permission:
  74. # entry1:
  75. # permissions:
  76. # - my.special.permission
  77. # onJoin:
  78. # - homeSpecificWorld:specialworld
  79. # - spawnSpecificWorld:specialworld
  80. # onDeath:
  81. # - homeMultiWorld
  82. # - homeAnyWorld
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement